Copy bindings sources to build directory
[babeltrace.git] / bindings / python / babeltrace / Makefile.am
CommitLineData
45dc11d3
JG
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
6
7all-local: $(INIT_PY)
8
9$(INIT_PY): $(INIT_PY_IN)
10 sed "s/BABELTRACE_VERSION_STR/$(PACKAGE_VERSION)/g" < $< > $@
11
12AM_CFLAGS = $(PYTHON_INCLUDE) -I$(top_srcdir)/include/ -I$(srcdir)
13
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
6027e07b 16SCRIPT_LIST = common.py reader.py writer.py
45dc11d3
JG
17nativebtlib_LTLIBRARIES = _nativebt.la
18
19btpackagedir = $(pythondir)/babeltrace
20nativebtlibdir = $(btpackagedir)
21
22MAINTAINERCLEANFILES = $(NATIVEBT_PY) $(NATIVEBT_WRAP_C)
23
24nodist__nativebt_la_SOURCES = $(NATIVEBT_WRAP_C)
25_nativebt_la_SOURCES = python-complements.h python-complements.c
26_nativebt_la_LDFLAGS = -module
27_nativebt_la_CFLAGS = $(GLIB_CFLAGS) $(AM_CFLAGS)
28_nativebt_la_LIBS = $(GLIB_LIBS)
29_nativebt_la_LIBADD = $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
30
31# SWIG 'warning md variable unused' fixed after SWIG build:
32$(NATIVEBT_WRAP_C): $(NATIVEBT_I)
33 $(SWIG) -python -Wall -I$(srcdir) -I$(top_srcdir)/include -outcurrentdir $<
34
35CLEANFILES = $(NATIVEBT_PY) $(NATIVEBT_WRAP_C) $(INIT_PY)
6027e07b
JG
36
37all-local:
38 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
39 for script in $(SCRIPT_LIST); do \
40 cp -f $(srcdir)/$$script $(builddir); \
41 done; \
42 fi
43
44clean-local:
45 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
46 for script in $(SCRIPT_LIST); do \
47 rm -f $(builddir)/$$script; \
48 done; \
49 fi
This page took 0.024194 seconds and 4 git commands to generate.