X-Git-Url: https://git.distorted.org.uk/~mdw/getdate-python/blobdiff_plain/d96b6e521b65b94863c232971987242d727fee9a..d911b255dbf66e730a1409bd70002a4e2fead4f7:/Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b0564e4 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +## Makefile + +PYTHON = python +prefix = /usr/local + +all: setup.py + $(PYTHON) setup.py build + +clean: setup.py + $(PYTHON) setup.py clean + rm -rf build + +dist: setup.py + $(PYTHON) setup.py sdist + +install: setup.py + $(PYTHON) setup.py install --prefix $(prefix) + +.PHONY: all clean dist install