Fix out-of-tree build for Python bindings + doc
[babeltrace.git] / bindings / python / Makefile.am
CommitLineData
17137804
PP
1NATIVEBT_PY = nativebt.py
2NATIVEBT_WRAP_C = nativebt_wrap.c
3INIT_PY = __init__.py
4INIT_PY_IN = $(srcdir)/$(INIT_PY).in
5NATIVEBT_I = $(srcdir)/nativebt.i
6fd49698 6
17137804
PP
7all-local: $(INIT_PY)
8
9$(INIT_PY): $(INIT_PY_IN)
6fd49698 10 sed "s/BABELTRACE_VERSION_STR/$(PACKAGE_VERSION)/g" < $< > $@
24a3136a 11
dab8128f 12AM_CFLAGS = $(PYTHON_INCLUDE) -I$(top_srcdir)/include/
24a3136a 13
17137804
PP
14EXTRA_DIST = common.py reader.py writer.py $(INIT_PY_IN) $(NATIVEBT_I)
15nodist_btpackage_PYTHON = $(INIT_PY) $(NATIVEBT_PY) common.py reader.py writer.py
6fd49698
PP
16nativebtlib_LTLIBRARIES = _nativebt.la
17
18btpackagedir = $(pythondir)/babeltrace
19nativebtlibdir = $(btpackagedir)
24a3136a 20
17137804 21MAINTAINERCLEANFILES = $(NATIVEBT_PY) $(NATIVEBT_WRAP_C)
24a3136a 22
17137804 23nodist__nativebt_la_SOURCES = $(NATIVEBT_WRAP_C)
6fd49698
PP
24_nativebt_la_SOURCES = python-complements.h python-complements.c
25_nativebt_la_LDFLAGS = -module
6fd49698 26_nativebt_la_CFLAGS = $(GLIB_CFLAGS) $(AM_CFLAGS)
6fd49698 27_nativebt_la_LIBS = $(GLIB_LIBS)
6fd49698 28_nativebt_la_LIBADD = $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
24a3136a
DS
29
30# SWIG 'warning md variable unused' fixed after SWIG build:
17137804
PP
31$(NATIVEBT_WRAP_C): $(NATIVEBT_I)
32 $(SWIG) -python -Wall -I$(srcdir) -I$(top_srcdir)/include -outcurrentdir $<
a6b5ad60 33
17137804 34CLEANFILES = $(NATIVEBT_PY) $(NATIVEBT_WRAP_C) $(INIT_PY)
This page took 0.026417 seconds and 4 git commands to generate.