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