PYFILES = $(wildcard *.py) PACKAGE = $(shell basename `pwd`) PKGDIR = $(shell $(PYTHON) ../../devtools/get_site_packages.py )/$(PACKAGE) _default: @echo "nothing to make. try make install" clean: rm -f *.o *.so *.pyc *~ rm -rf __pycache__ install: @if [ "$(DESTDIR)" = "" ]; then \ echo " "; \ echo "ERROR: A destdir is required"; \ exit 1; \ fi mkdir -p $(DESTDIR)/$(PKGDIR) for p in $(PYFILES) ; do \ install -p -m 644 $$p $(DESTDIR)/$(PKGDIR)/$$p; \ done $(PYTHON) -c "import compileall; compileall.compile_dir('$(DESTDIR)/$(PKGDIR)', 1, '$(PYDIR)', 1)"