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