From 423367e8cda46f9d0f69932f617054cc15702aeb Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 5 Feb 2003 10:39:14 +0000 Subject: move the otk wrapper stuff into its own dir --- otk/wrap/Makefile.am | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 otk/wrap/Makefile.am (limited to 'otk/wrap/Makefile.am') diff --git a/otk/wrap/Makefile.am b/otk/wrap/Makefile.am new file mode 100644 index 00000000..4c2de002 --- /dev/null +++ b/otk/wrap/Makefile.am @@ -0,0 +1,32 @@ +# XXX - INSTALL THIS GLOBALLY!#&@(!!! +pythondir = $(libdir)/openbox/python + +CXXFLAGS = $(XFT_CFLAGS) $(filter-out -W -Wall,@CXXFLAGS@) + +INCLUDES = -I.. -I../.. + +python_LTLIBRARIES = otkpy.la + +otkpy_la_CXXFLAGS = $(PYTHON_CFLAGS) +otkpy_la_LDFLAGS = -module +otkpy_la_SOURCES = wrap_otk.cc +otkpy_la_LIBADD = ../libotk.la + +CLEANFILES = wrap_* otk.py +MAINTAINERCLEANFILES = Makefile.in + +python_PYTHON = otk.py + +install-exec-hook: + $(mkinstalldirs) "$(DESTDIR)$(pythondir)" + cd "$(DESTDIR)$(pythondir)" && \ + $(RM) -f _otk.so && $(LN_S) otkpy.so _otk.so + +uninstall-local: + rm -f "$(DESTDIR)$(pythondir)/_otk.so" + +%.py: wrap_%.cc + +wrap_%.cc: %.i $(wildcard ../*.hh) + swig $(INCLUDES) $(filter -I%,$(CXXFLAGS)) -python -shadow -c++ -nodefault -o $@ $< + -- cgit v1.2.3