30 lines
839 B
Makefile
30 lines
839 B
Makefile
PYTHON=python
|
|
PACKAGE = $(shell basename `pwd`)
|
|
PYFILES = $(wildcard *.py)
|
|
PYVER := $(shell $(PYTHON) -c 'import sys; print "%.3s" %(sys.version)')
|
|
PYSYSDIR := $(shell $(PYTHON) -c 'import sys; print sys.prefix')
|
|
PYLIBDIR = $(PYSYSDIR)/lib/python$(PYVER)
|
|
PKGDIR = $(PYLIBDIR)/site-packages/$(PACKAGE)
|
|
|
|
SERVERDIR = /kojiweb
|
|
FILES = $(wildcard *.py *.chtml)
|
|
|
|
_default:
|
|
@echo "nothing to make. try make install"
|
|
|
|
clean:
|
|
rm -f *.o *.so *.pyc *~
|
|
for d in $(SUBDIRS); do make -s -C $$d clean; done
|
|
|
|
install:
|
|
@if [ "$(DESTDIR)" = "" ]; then \
|
|
echo " "; \
|
|
echo "ERROR: A destdir is required"; \
|
|
exit 1; \
|
|
fi
|
|
|
|
mkdir -p $(DESTDIR)/$(SERVERDIR)
|
|
for p in $(PYFILES) ; do \
|
|
install -p -m 644 $$p $(DESTDIR)/$(SERVERDIR)/$$p; \
|
|
done
|
|
$(PYTHON) -c "import compileall; compileall.compile_dir('$(DESTDIR)/$(SERVERDIR)', 1, '$(PYDIR)', 1)"
|