X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/f26b503649c4e249201c9ae09b0705e8ed24a949..e27cf297f92b3714e89b51f60335dabe4a661f8e:/Makefile diff --git a/Makefile b/Makefile index e5c002a..0fa5c6a 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,38 @@ -PREFIX ?= $(HOME) +prefix ?= $(HOME) DESTDIR ?= / PYTHON ?= python TEST_PATCHES ?= .. -all: +all: build $(PYTHON) setup.py build -install: - $(PYTHON) setup.py install --prefix=$(PREFIX) --root=$(DESTDIR) --force +build: stgit/commands/cmdlist.py stgit-completion.bash + +ALL_PY = $(shell find stgit -name '*.py') + +stgit/commands/cmdlist.py: $(ALL_PY) + $(PYTHON) stg-build --py-cmd-list > $@ + +stgit-completion.bash: $(ALL_PY) + $(PYTHON) stg-build --bash-completion > $@ + +install: build + $(PYTHON) setup.py install --prefix=$(prefix) --root=$(DESTDIR) --force doc: cd Documentation && $(MAKE) all -test: +install-doc: + $(MAKE) -C Documentation install + +install-html: + $(MAKE) -C Documentation install-html + +test: build cd t && $(MAKE) all -test_patches: +test_patches: build for patch in $$(stg series --noprefix $(TEST_PATCHES)); do \ stg goto $$patch && $(MAKE) test || break; \ done @@ -29,8 +45,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 build install doc install-doc install-html test test_patches \ + clean tags TAGS