summaryrefslogtreecommitdiffstats
path: root/ipa-python/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ipa-python/Makefile')
-rw-r--r--ipa-python/Makefile11
1 files changed, 11 insertions, 0 deletions
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