summaryrefslogtreecommitdiff
path: root/mk/python.mk
blob: 999e8197766d5b81ae7a8045ad30086d4ed83e11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# all: pybuild
install: $(PYMODULES:%=%.install)
clean: pyclean

.py.install:
	echo PYTHON install $* $(PYPREFIX)
	DESTDIR=$(DESTDIR); \
	$(DEBUG) $(PYTHON) $< install -c --root=$${DESTDIR:-/} --install-layout=deb $(PYPREFIX)
pyclean:
	echo CLEAN build/
	rm -rf build

.PHONY: pybuild pyclean