chiark / gitweb /
Debianization.
[checkpath-python] / Makefile
index e414f7b3ea52ee970ba193e9c2cde17f93316988..f1add741558504e845703213a2f9dcab0f498be3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,21 +4,17 @@ PYTHON = python
 PYREXC = pyrexc
 prefix = /usr/local
 
-all: setup.py checkpath.c
+all: setup.py
        $(PYTHON) setup.py build
 
 clean: setup.py
        $(PYTHON) setup.py clean
        rm -rf build checkpath.c
 
-checkpath.c: checkpath.pyx
-       pyrexc -o $@.new checkpath.pyx
-       mv $@.new $@
-
-dist: setup.py checkpath.c
+dist: setup.py
        $(PYTHON) setup.py sdist
 
-install: setup.py checkpath.c
+install: setup.py
        $(PYTHON) setup.py install --prefix $(prefix)
 
 .PHONY: all clean dist install