This commit was manufactured by cvs2svn to create branch
[util-vserver.git] / python / Makefile
diff --git a/python/Makefile b/python/Makefile
new file mode 100644 (file)
index 0000000..7ae69d7
--- /dev/null
@@ -0,0 +1,53 @@
+#
+# GNUMakefile for util-vserver Python bindings
+#
+# It's too hard to integrate distutils into the autoconf/libtool
+# framework, so run this Makefile separately from and after the normal
+# util-vserver build.
+#
+# Steve Muir <smuir@cs.princeton.edu>
+# Mark Huang <mlhuang@cs.princeton.edu>
+# Copyright (C) 2005 The Trustees of Princeton University
+#
+# $Id: Makefile,v 1.7 2005/08/26 04:00:44 mlhuang Exp $
+#
+
+ALL := vserverimpl.so vduimpl.so util_vserver_vars.py
+
+# need command substitution
+SHELL := /bin/bash
+
+pythonlibdir := @libdir@/python@PYTHON_VERSION@/site-packages
+
+all: $(ALL)
+
+%.o: %.c
+        # builds object and incompletely linked library
+       python setup.py build_ext
+        # copy to current directory
+       cp -a build/temp.*/*.o .
+
+vserverimpl.so vduimpl.so: %.so: %.o
+        # relink the object against libvserver with libtool
+       ../libtool --tag=CC --mode=link $(CC) -shared -o $@ $< ../lib/libvserver.la
+
+util_vserver_vars.py: ../scripts/util-vserver-vars
+        # python does not export variables beginning with underscore
+       (. $< ; \
+       while read var ; do eval echo $$var=\$${$$var} ; done < \
+       <(sed -ne "s/\([^=]*\)=.*/\1/p" $<) \
+       | sed -e "s/^_*//" -e "s/\([^=]*\)=\(.*\)/\1='\2'/") > $@
+
+install: $(ALL)
+        # install relinked libraries and byte-compiled scripts
+       python setup.py install --root="$(DESTDIR)"
+        # reinstall libraries with libtool so that the final path
+        # to libvserver is resolved
+       for so in $(filter %.so, $(ALL)) ; do \
+         ../libtool --tag=CC --mode=install install "$$so" `find "$(DESTDIR)" -name "$$so"` ; \
+       done
+
+clean:
+       rm -rf $(ALL) *.o build
+
+.PHONY: all install clean