freeipa/ipapython/Makefile

29 lines
542 B
Makefile
Raw Normal View History

0000-12-31 18:09:24 -05:50
PYTHONLIBDIR ?= $(shell python -c "from distutils.sysconfig import *; print get_python_lib()")
0000-12-31 18:09:24 -05:50
PACKAGEDIR ?= $(DESTDIR)/$(PYTHONLIBDIR)/ipa
CONFIGDIR ?= $(DESTDIR)/etc/ipa
TESTS = $(wildcard test/*.py)
0000-12-31 18:09:24 -05:50
all: ;
install:
if [ "$(DESTDIR)" = "" ]; then \
python setup.py install; \
else \
python setup.py install --root $(DESTDIR); \
fi
0000-12-31 18:09:24 -05:50
clean:
rm -f *~ *.pyc
2007-10-19 08:53:27 -05:00
distclean: clean
rm -f setup.py ipa-python.spec version.py
2007-10-19 08:53:27 -05:00
maintainer-clean: distclean
rm -rf build
.PHONY: test
test: $(subst .py,.tst,$(TESTS))
%.tst: %.py
python $<