debian: Just build for the default version.
[checkpath-python] / Makefile
1 ## Makefile
2
3 PYTHON = python
4 PYREXC = pyrexc
5 prefix = /usr/local
6
7 all: setup.py
8 $(PYTHON) setup.py build
9
10 clean: setup.py
11 $(PYTHON) setup.py clean
12 rm -rf build checkpath.c
13
14 dist: setup.py
15 $(PYTHON) setup.py sdist
16
17 install: setup.py
18 $(PYTHON) setup.py install --prefix $(prefix)
19
20 .PHONY: all clean dist install