changeset 2235:457e4247315d

New make targets: local: build extensions inplace (the former "all" target") all: "local" (for people who expect this) and build everything else install: install pre-built things (so root doesn't have to write to $HOME) install-home: use setup.py's --home option instead of --prefix
author Thomas Arendsen Hein <thomas@intevation.de>
date Tue, 09 May 2006 18:03:15 +0200
parents 9ea93ff67a73
children d7f866789d7e
files Makefile
diffstat 1 files changed, 17 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Tue May 09 17:21:53 2006 +0200
+++ b/Makefile	Tue May 09 18:03:15 2006 +0200
@@ -2,18 +2,30 @@
 export PREFIX
 PYTHON=python
 
-all:
+all: local build doc
+
+local:
 	$(PYTHON) setup.py build_ext -i
 
-install: all
-	$(PYTHON) setup.py install --home="$(PREFIX)"
-	cd doc && $(MAKE) $(MFLAGS) install
+build:
+	$(PYTHON) setup.py build
+
+doc:
+	$(MAKE) -C doc
 
 clean:
 	-$(PYTHON) setup.py clean --all # ignore errors of this command
 	find . -name '*.py[co]' -exec rm -f '{}' ';'
 	$(MAKE) -C doc clean
 
+install: all
+	$(PYTHON) setup.py install --prefix="$(PREFIX)" --force
+	cd doc && $(MAKE) $(MFLAGS) install
+
+install-home: all
+	$(PYTHON) setup.py install --home="$(HOME)" --force
+	cd doc && $(MAKE) $(MFLAGS) PREFIX="$(HOME)" install
+
 dist:	tests dist-notests
 
 dist-notests:	doc
@@ -25,9 +37,6 @@
 test-%:
 	cd tests && $(PYTHON) run-tests.py $@
 
-doc:
-	$(MAKE) -C doc
 
+.PHONY: all local build doc clean install install-home dist dist-notests tests
 
-.PHONY: all clean dist dist-notests tests doc
-