chiark / gitweb /
Teach bash to complete branch names in some places.
[stgit] / Makefile
CommitLineData
c8a4777f
PR
1PREFIX = $(HOME)
2DESTDIR = /
3PYTHON = python
4
5all:
6 $(PYTHON) setup.py build
7
8install:
9 $(PYTHON) setup.py install --prefix=$(PREFIX) --root=$(DESTDIR)
10
11doc:
368a44c3 12 cd Documentation && $(MAKE) all
c8a4777f
PR
13
14test:
15 cd t && $(MAKE) all
16
17clean:
368a44c3 18 for dir in Documentation t; do \
c8a4777f
PR
19 (cd $$dir && $(MAKE) clean); \
20 done
21 rm -rf build
22 rm -f stgit/*.pyc
23 rm -f stgit/commands/*.pyc
368a44c3
YD
24
25.PHONY: all install doc test clean