diff options
Diffstat (limited to 'ipa-python/Makefile')
-rw-r--r-- | ipa-python/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/ipa-python/Makefile b/ipa-python/Makefile new file mode 100644 index 00000000..4ac027e1 --- /dev/null +++ b/ipa-python/Makefile @@ -0,0 +1,28 @@ +PYTHONLIBDIR ?= $(shell python -c "from distutils.sysconfig import *; print get_python_lib()") +PACKAGEDIR ?= $(DESTDIR)/$(PYTHONLIBDIR)/ipa +CONFIGDIR ?= $(DESTDIR)/etc/ipa +TESTS = $(wildcard test/*.py) + +all: ; + +install: + if [ "$(DESTDIR)" = "" ]; then \ + python setup.py install; \ + else \ + python setup.py install --root $(DESTDIR); \ + fi + +clean: + rm -f *~ *.pyc + +distclean: clean + rm -f setup.py ipa-python.spec version.py + +maintainer-clean: distclean + rm -rf build + +.PHONY: test +test: $(subst .py,.tst,$(TESTS)) + +%.tst: %.py + python $< |