X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/a7c71daf8b1e32d0a84705e84b31b3ea0a470801..896afcc92d6dc5772b090e0e299d82e2c80a577d:/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