blob: c890b8ed0a786b0be48661c7b9837d1eb6d0ebdb [file] [log] [blame]
PREFIX ?= $(HOME)
DESTDIR ?= /
PYTHON ?= python
all:
$(PYTHON) setup.py build
install:
$(PYTHON) setup.py install --prefix=$(PREFIX) --root=$(DESTDIR) --force
doc:
cd Documentation && $(MAKE) all
test:
cd t && $(MAKE) all
clean:
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