From 7d95cd612c1b340add692038c835e7cd8d8ad18b Mon Sep 17 00:00:00 2001 From: Karl MacMillan Date: Tue, 31 Jul 2007 12:09:38 -0400 Subject: Final reorginzation to reflect packaging. --- ipa-python/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ipa-python/Makefile (limited to 'ipa-python/Makefile') diff --git a/ipa-python/Makefile b/ipa-python/Makefile new file mode 100644 index 000000000..bc6554be4 --- /dev/null +++ b/ipa-python/Makefile @@ -0,0 +1,11 @@ +PYTHONLIBDIR ?= $(shell python -c "from distutils.sysconfig import *; print get_python_lib(1)") +PACKAGEDIR ?= $(DESTDIR)/$(PYTHONLIBDIR)/ipa + +all: ; + +install: + -mkdir -p $(PACKAGEDIR) + install -m 644 *.py $(PACKAGEDIR) + +clean: + rm -f *~ *.pyc \ No newline at end of file -- cgit