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