From 262ff2d731b1bfc4acd91153088b8fcde7ae92b8 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 5 Feb 2009 15:03:08 -0500 Subject: Rename ipa-python directory to ipapython so it is a real python library We used to install it as ipa, now installing it as ipapython. The rpm is still ipa-python. --- ipapython/Makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 ipapython/Makefile (limited to 'ipapython/Makefile') diff --git a/ipapython/Makefile b/ipapython/Makefile new file mode 100644 index 000000000..4ac027e14 --- /dev/null +++ b/ipapython/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 $< -- cgit