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