Add simple test for "stg branch --delete"
[stgit] / Makefile
index df77d97..c890b8e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,23 +1,29 @@
-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 doc && $(MAKE) all
+       cd Documentation && $(MAKE) all
 
 test:
        cd t && $(MAKE) all
 
 clean:
-       for dir in doc t; do \
+       for dir in Documentation t; do \
                (cd $$dir && $(MAKE) clean); \
        done
        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