build: Use mdwsetup.py from new CFD. Announce 1.0.2.
[catacomb-python] / Makefile
index 96c081f..7a24b27 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,16 @@
 ## Makefile
 
-PYTHON = python2.2
-prefix=/usr/local
+PYTHON = python
+prefix = /usr/local
+
+GEN = algorithms.h
 
 all: setup.py
        $(PYTHON) setup.py build
 
 clean: setup.py
        $(PYTHON) setup.py clean
-       rm -rf build
+       rm -rf build $(GEN)
 
 dist: setup.py
        $(PYTHON) setup.py sdist
@@ -16,4 +18,4 @@ dist: setup.py
 install: setup.py
        $(PYTHON) setup.py install --prefix $(prefix)
 
-.PHONY: all clean dist
+.PHONY: all clean dist install