sapling/Makefile
Augie Fackler 9a73b2d621 Makefile: add make deb rule for convenience
This matches what Mercurial has, so I figure we may as well be
consistent.
2015-09-10 11:31:42 -04:00

26 lines
599 B
Makefile

PYTHON=python
.PHONY: tests
help:
@echo 'Commonly used make targets:'
@echo ' local - build for inplace use'
@echo ' install - install program'
@echo ' clean - remove files created by other targets'
@echo ' (except installed files or dist source tarball)'
local:
$(PYTHON) setup.py \
build_py -c -d . \
build_ext -i
install:
$(PYTHON) setup.py $(PURE) install --force
clean:
-$(PYTHON) setup.py clean --all # ignore errors from this command
find . \( -name '*.py[cdo]' -o -name '*.so' \) -exec rm -f '{}' ';'
deb:
contrib/builddeb