summaryrefslogtreecommitdiffstats
path: root/ipa-python/Makefile
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2009-02-05 15:03:08 -0500
committerRob Crittenden <rcritten@redhat.com>2009-02-09 14:35:15 -0500
commit262ff2d731b1bfc4acd91153088b8fcde7ae92b8 (patch)
treebaf8894d4b357b610113b87d4bfee84de24f08bd /ipa-python/Makefile
parent58ae191a5afbf29d78afd3969f8d106415897958 (diff)
downloadfreeipa-262ff2d731b1bfc4acd91153088b8fcde7ae92b8.tar.gz
freeipa-262ff2d731b1bfc4acd91153088b8fcde7ae92b8.tar.xz
freeipa-262ff2d731b1bfc4acd91153088b8fcde7ae92b8.zip
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.
Diffstat (limited to 'ipa-python/Makefile')
-rw-r--r--ipa-python/Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/ipa-python/Makefile b/ipa-python/Makefile
deleted file mode 100644
index 4ac027e14..000000000
--- a/ipa-python/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-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 $<