[Zope-CVS] CVS: PythonNet - makefile:1.3

Brian Lloyd brian@zope.com
Mon, 14 Jul 2003 16:00:30 -0400


Update of /cvs-repository/PythonNet
In directory cvs.zope.org:/tmp/cvs-serv4259

Modified Files:
	makefile 
Log Message:
refactor repository

=== PythonNet/makefile 1.2 => 1.3 ===
--- PythonNet/makefile:1.2	Mon Jul 14 14:34:00 2003
+++ PythonNet/makefile	Mon Jul 14 15:59:25 2003
@@ -6,10 +6,11 @@
 
 
 python.exe: Python.Runtime.dll
-	cd console; make; cd ..;
+	cd src; console; make; cd ..; cd ..;
+
 
 Python.Runtime.dll: CallConvUtil.exe
-	cd src; make; cd ..;
+	cd src; cd runtime; make; cd ..; cd ..;
 	ildasm /nobar Python.Runtime.dll /out=Python.Runtime.il;
 	./CallConvUtil.exe;
 	ilasm /nologo /quiet /key=Python.Runtime.key /dll \
@@ -19,40 +20,41 @@
 	rm -f Python.Runtime.il2;
 	rm -f Python.Runtime.res;
 
+
+Python.Test.dll: Python.Runtime.dll
+	cd src; cd testing; make; cd ..; cd ..;
+
+
 CallConvUtil.exe:
-	cd utils; make; cd ..;
+	cd src; cd tools; make; cd ..; cd ..;
+
 
 clean:
-	cd src; make clean; cd ..;
-	cd tests; cd csharp; make clean; cd ..; cd ..;
+	cd src; cd runtime; make clean; cd ..; cd ..;
 	cd tests; cd test; make clean; cd ..; cd ..;
 	cd console; make clean; cd ..;
 	cd utils; make clean; cd ..;
 
 
-Python.Test.dll: Python.Runtime.dll
-	cd tests; cd test; make; cd ..; cd ..;
-
-pytest:
+test:
 	rm -f ./tests/python/*.pyc
 	./python.exe ./tests/python/runtests.py
 
 
-# Disabled until embedding API is refactored sanely
-#RuntimeTests.dll: Python.Runtime.dll
-#	cd tests; cd csharp; make; cd ..; cd ..;
-
-#cstest: RuntimeTests.dll
-#	./nunit/NUnitConsole.exe \
-#	Python.Runtime.Tests.AllTests,RuntimeTests.dll
-
-test: pytest
-
-
 dis:
 	ildasm Python.Runtime.dll /out=Python.Runtime.il
 
+
 asm:
 	ilasm /dll /quiet  \
 	/resource=Python.Runtime.res /output=Python.Runtime.dll \
 	Python.Runtime.il
+
+
+# Disabled until embedding API is refactored sanely
+#RuntimeTests.dll: Python.Runtime.dll
+#	cd tests; cd csharp; make; cd ..; cd ..;
+
+#cstest: RuntimeTests.dll
+#	./nunit/NUnitConsole.exe \
+#	Python.Runtime.Tests.AllTests,RuntimeTests.dll