1 2 3 4 5 6 7 8 9 10 11 12
include ../Makefile.inc all: echo "nothing to make" install: mkdir -p $(DESTDIR)/$(PYTHONLIBDIR)/textw cp -a *.py $(DESTDIR)/$(PYTHONLIBDIR)/textw ../py-compile --basedir $(DESTDIR)/$(PYTHONLIBDIR)/textw $(DESTDIR)/$(PYTHONLIBDIR)/textw/*.py clean: rm -f *.o *.so *.pyc