X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/368a44c3761d46b5a085215a9ed6878da4e84fa6..refs/tags/v0.13:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index 8cd5813..8671209 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ -PREFIX = $(HOME) -DESTDIR = / -PYTHON = python +PREFIX ?= $(HOME) +DESTDIR ?= / +PYTHON ?= python all: $(PYTHON) setup.py build @@ -21,5 +21,9 @@ clean: rm -rf build rm -f stgit/*.pyc rm -f stgit/commands/*.pyc + rm -f TAGS + +tags: + ctags -e -R stgit/* .PHONY: all install doc test clean