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