X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/f26b503649c4e249201c9ae09b0705e8ed24a949..69db97142c4c1cd7b574a4d0e53203182955cb37:/Makefile diff --git a/Makefile b/Makefile index e5c002a..53c5694 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -PREFIX ?= $(HOME) +prefix ?= $(HOME) DESTDIR ?= / PYTHON ?= python @@ -8,12 +8,19 @@ all: $(PYTHON) setup.py build install: - $(PYTHON) setup.py install --prefix=$(PREFIX) --root=$(DESTDIR) --force + $(PYTHON) setup.py install --prefix=$(prefix) --root=$(DESTDIR) --force doc: cd Documentation && $(MAKE) all +install-doc: + $(MAKE) -C Documentation install + +install-html: + $(MAKE) -C Documentation install-html + test: + $(PYTHON) setup.py build cd t && $(MAKE) all test_patches: @@ -29,8 +36,13 @@ clean: rm -f stgit/*.pyc rm -f stgit/commands/*.pyc rm -f TAGS + rm -f stgit/commands/cmdlist.py tags: + ctags -R stgit/* + +TAGS: ctags -e -R stgit/* -.PHONY: all install doc test test_patches clean +.PHONY: all install doc install-doc install-html test test_patches \ + clean tags TAGS