[svn]
r6355: nemerle/trunk/ncc/testsuite/completion-playground/Makefile
nazgul
svnadmin at nemerle.org
Wed May 31 20:19:39 CEST 2006
Log:
Add Makefile for testing completion engine
Author: nazgul
Date: Wed May 31 20:19:27 2006
New Revision: 6355
Added:
nemerle/trunk/ncc/testsuite/completion-playground/Makefile
Added: nemerle/trunk/ncc/testsuite/completion-playground/Makefile
==============================================================================
--- (empty file)
+++ nemerle/trunk/ncc/testsuite/completion-playground/Makefile Wed May 31 20:19:27 2006
@@ -0,0 +1,28 @@
+#
+
+TOP = ../../..
+include $(TOP)/config.mak
+
+all: compiler compl2.exe test
+
+compiler: Nemerle.dll Nemerle.Compiler.dll
+ rm -fr Nemerle.Macros.dll
+
+Nemerle.dll: ../../out.stage3/$@
+ cp -f ../../out.stage3/$@ .
+
+Nemerle.Compiler.dll: ../../out.stage3/$@
+ cp -f ../../out.stage3/$@ .
+
+Nemerle.Macros.dll: ../../out.stage3/$@
+ cp -f ../../out.stage3/$@ .
+
+compl2.exe: compl2.n
+ $(ENGINE) ../../out.stage3/ncc.exe compl2.n -r Nemerle.Compiler -o compl2.exe
+
+test: compl-s.n compl-s2.n Nemerle.Macros.dll
+ $(ENGINE) ./compl2.exe compl-s.n
+ $(ENGINE) ./compl2.exe compl-s2.n
+
+clean:
+ rm -fr *exe *dll
\ No newline at end of file
More information about the svn
mailing list