[Python-checkins] r55523 - sandbox/trunk/cpy_merge sandbox/trunk/cpy_merge/Makefile

alexandre.vassalotti python-checkins at python.org
Wed May 23 04:18:38 CEST 2007


Author: alexandre.vassalotti
Date: Wed May 23 04:18:37 2007
New Revision: 55523

Added:
   sandbox/trunk/cpy_merge/Makefile   (contents, props changed)
Modified:
   sandbox/trunk/cpy_merge/   (props changed)
Log:
* Added a simple makefile.
* Set svn:ignore on TAGS


Added: sandbox/trunk/cpy_merge/Makefile
==============================================================================
--- (empty file)
+++ sandbox/trunk/cpy_merge/Makefile	Wed May 23 04:18:37 2007
@@ -0,0 +1,18 @@
+PYTHONPATH=./build/
+
+all: build test
+
+build: clean
+	python3.0 setup.py build --build-lib build/
+
+clean:
+	python3.0 setup.py clean --build-lib build/
+	rm -rf build/
+
+test:
+	python3.0 -tt ./Lib/test/regrtest.py -l
+
+# Create a tags file for GNU Emacs
+TAGS:
+	etags Include/*.h
+	etags -a Modules/*.[ch]


More information about the Python-checkins mailing list