freeipa/ipa-python/Makefile

25 lines
440 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
.PHONY: test
test: $(subst .py,.tst,$(TESTS))
%.tst: %.py
python $<