chiark / gitweb /
debian: Fix package sections.
[getdate-python] / Makefile
CommitLineData
d911b255 1## Makefile
2
3PYTHON = python
4prefix = /usr/local
5
6all: setup.py
7 $(PYTHON) setup.py build
8
9clean: setup.py
10 $(PYTHON) setup.py clean
11 rm -rf build
12
13dist: setup.py
14 $(PYTHON) setup.py sdist
15
16install: setup.py
17 $(PYTHON) setup.py install --prefix $(prefix)
18
19.PHONY: all clean dist install