X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/a7c71daf8b1e32d0a84705e84b31b3ea0a470801..82863c3c5b26c743d1c0c288d354dd78557a914c:/Makefile diff --git a/Makefile b/Makefile index d6c0b56..c890b8e 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ -PREFIX = $(HOME) -DESTDIR = / -PYTHON = python +PREFIX ?= $(HOME) +DESTDIR ?= / +PYTHON ?= python all: $(PYTHON) setup.py build install: - $(PYTHON) setup.py install --prefix=$(PREFIX) --root=$(DESTDIR) + $(PYTHON) setup.py install --prefix=$(PREFIX) --root=$(DESTDIR) --force doc: cd Documentation && $(MAKE) all