lib: add integer range and integer range set API
[babeltrace.git] / src / bindings / python / bt2 / Makefile.am
CommitLineData
09ef660c 1# Since the shared object used by the python bindings is not built with
40392cf1 2# libtool, we need to add the directory containing libbabeltrace2 to the
09ef660c 3# linker path.
57952005 4AM_LDFLAGS=-L$(top_builddir)/src/lib/.libs
81447b5b 5
09ef660c 6INSTALLED_FILES=$(builddir)/installed_files.txt
81447b5b 7
46b3638c
SM
8SWIG_INTERFACE_FILES = \
9 bt2/native_bt.i \
6fa6bfa1
SM
10 bt2/native_bt_clock_class.i \
11 bt2/native_bt_clock_snapshot.i \
12 bt2/native_bt_component_class.i \
13 bt2/native_bt_component.i \
14 bt2/native_bt_connection.i \
15 bt2/native_bt_event_class.i \
16 bt2/native_bt_event.i \
17 bt2/native_bt_field_class.i \
18 bt2/native_bt_field_path.i \
19 bt2/native_bt_field.i \
20 bt2/native_bt_graph.i \
6fa6bfa1
SM
21 bt2/native_bt_logging.i \
22 bt2/native_bt_message.i \
11673185 23 bt2/native_bt_message_iterator.i \
6fa6bfa1
SM
24 bt2/native_bt_packet.i \
25 bt2/native_bt_plugin.i \
26 bt2/native_bt_port.i \
27 bt2/native_bt_query_exec.i \
28 bt2/native_bt_stream_class.i \
29 bt2/native_bt_stream.i \
30 bt2/native_bt_trace_class.i \
31 bt2/native_bt_trace.i \
32 bt2/native_bt_value.i \
46b3638c
SM
33 bt2/native_bt_version.i
34
e3a3e94f
SM
35# Non-generated files built into the native library.
36STATIC_NATIVE_LIB_SRCS = \
46b3638c 37 bt2/logging.c \
e3a3e94f
SM
38 bt2/logging.h
39
40STATIC_BINDINGS_DEPS = \
d34e69cf 41 bt2/clock_class.py \
f192fc47 42 bt2/clock_snapshot.py \
d34e69cf
PP
43 bt2/component.py \
44 bt2/connection.py \
d34e69cf
PP
45 bt2/event_class.py \
46 bt2/event.py \
ae0bfae8 47 bt2/field.py \
32656995 48 bt2/field_class.py \
c8820b76 49 bt2/field_path.py \
d34e69cf
PP
50 bt2/graph.py \
51 bt2/logging.py \
fa4c33e3
SM
52 bt2/message_iterator.py \
53 bt2/message.py \
d34e69cf
PP
54 bt2/object.py \
55 bt2/packet.py \
56 bt2/plugin.py \
57 bt2/port.py \
58 bt2/py_plugin.py \
59 bt2/query_executor.py \
60 bt2/stream_class.py \
61 bt2/stream.py \
62 bt2/trace.py \
0bee8ea9 63 bt2/trace_class.py \
fa4c33e3 64 bt2/trace_collection_message_iterator.py \
d34e69cf 65 bt2/utils.py \
ae0bfae8 66 bt2/value.py
81447b5b 67
d34e69cf
PP
68GENERATED_BINDINGS_DEPS = \
69 bt2/__init__.py \
46b3638c 70 bt2/native_bt.c \
09ef660c 71 setup.py
81447b5b 72
09ef660c
MJ
73BUILD_FLAGS=CC="$(CC)" \
74 CFLAGS="$(GLIB_CFLAGS) $(AM_CFLAGS) $(CFLAGS)" \
e3a3e94f 75 CPPFLAGS="$(AM_CPPFLAGS) $(CPPFLAGS) -I$(srcdir)/bt2" \
09ef660c 76 LDFLAGS="$(AM_LDFLAGS) $(LDFLAGS) $(GLIB_LIBS) $(LIBS)"
81447b5b 77
09ef660c 78all-local: build-python-bindings.stamp
81447b5b 79
c28a5d89 80copy-static-deps.stamp: $(addprefix $(srcdir)/, $(STATIC_BINDINGS_DEPS))
5f114259
MJ
81 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
82 for file in $(STATIC_BINDINGS_DEPS); do \
83 cp -f $(srcdir)/$$file $(builddir)/$$file; \
84 done; \
85 fi
86 touch $@
87
e3a3e94f 88build-python-bindings.stamp: copy-static-deps.stamp $(GENERATED_BINDINGS_DEPS) $(STATIC_NATIVE_LIB_SRCS)
5bbedc4b 89 $(BUILD_FLAGS) $(PYTHON) $(builddir)/setup.py build --force
09ef660c 90 touch $@
81447b5b 91
46b3638c
SM
92swig_verbose = $(swig_verbose_@AM_V@)
93swig_verbose_ = $(swig_verbose_@AM_DEFAULT_V@)
94swig_verbose_0 = @echo " SWIG " $@;
95
96$(builddir)/bt2/native_bt.c: $(SWIG_INTERFACE_FILES)
97 $(swig_verbose)$(SWIG) -python -I"$(top_srcdir)/include" -o "$@" "$<"
98
09ef660c
MJ
99install-exec-local: build-python-bindings.stamp
100 @opts="--prefix=$(prefix) --record $(INSTALLED_FILES) --verbose --no-compile $(DISTSETUPOPTS)"; \
101 if [ "$(DESTDIR)" != "" ]; then \
102 opts="$$opts --root=$(DESTDIR)"; \
103 fi; \
104 $(PYTHON) $(builddir)/setup.py install $$opts;
81447b5b 105
81447b5b 106clean-local:
09ef660c 107 rm -rf $(builddir)/build
5f114259
MJ
108 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
109 for file in $(STATIC_BINDINGS_DEPS); do \
110 rm -f $(builddir)/$$file; \
111 done; \
112 fi
09ef660c
MJ
113
114# Distutils' setup.py does not include an uninstall target, we thus need to do
115# it manually. We save the path of the files that were installed during the install target
116# and delete them during the uninstallation.
117uninstall-local:
118 if [ "$(DESTDIR)" != "" ]; then \
119 $(SED) -i "s|^|$(DESTDIR)/|g" $(INSTALLED_FILES); \
81447b5b 120 fi
09ef660c
MJ
121 cat $(INSTALLED_FILES) | xargs rm -rf || true
122 $(GREP) "__init__.py" $(INSTALLED_FILES) | xargs dirname | xargs rm -rf || true
123 rm -f $(INSTALLED_FILES)
81447b5b
PP
124
125# distribute: extra Python modules and SWIG interface files
e3a3e94f 126EXTRA_DIST = $(STATIC_BINDINGS_DEPS) $(SWIG_INTERFACE_FILES) $(STATIC_NATIVE_LIB_SRCS)
81447b5b
PP
127
128# clean: generated C and Python files (by SWIG)
46b3638c 129CLEANFILES = bt2/native_bt.py bt2/native_bt.c build-python-bindings.stamp copy-static-deps.stamp
This page took 0.053924 seconds and 4 git commands to generate.