Fix: syscall event rule: emission sites not compared in is_equal
[lttng-tools.git] / extras / bindings / swig / python / Makefile.am
CommitLineData
ab5be9fa
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
36907cb5 3lttng.i: lttng.i.in
18ecc6ae 4 $(SED) "s/LTTNG_VERSION_STR/LTTng $(PACKAGE_VERSION)/g" < $(srcdir)/lttng.i.in >lttng.i
36907cb5 5
2d44f8b3
FD
6# Some versions of SWIG (like 3.0.12) generate code where a parameter called
7# `swig_this` shadows a global of the same name. Later versions (like 4.0.1)
8# have renamed this global to `Swig_This_global`.
9#
011e18de
JG
10# Disable some warning flags for that file.
11AM_CFLAGS += \
12 -Wno-cast-function-type \
13 -Wno-missing-field-initializers \
8903c4c7 14 -Wno-null-dereference \
011e18de
JG
15 -Wno-redundant-decls \
16 -Wno-shadow \
17 -Wno-unused-parameter
18
19# Swig regularily changes and generates code that results warnings which break
20# Werror builds. Disable that option for this sub-project.
21AM_CFLAGS += -Wno-error
67ce7563 22
343af227 23AM_CPPFLAGS += $(PYTHON_INCLUDE)
36907cb5 24
ffadb7d3
JG
25EXTRA_DIST = lttng.i.in
26nodist_python_PYTHON = lttng.py
36907cb5
DS
27pyexec_LTLIBRARIES = _lttng.la
28
29MAINTAINERCLEANFILES = lttng_wrap.c lttng.py
30
ffadb7d3 31nodist__lttng_la_SOURCES = lttng_wrap.c
36907cb5 32_lttng_la_LDFLAGS = -module
e2ad251c 33_lttng_la_LIBADD = $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
4ae04234 34 $(top_builddir)/src/common/libsessiond-comm.la \
6a5596ac 35 $(top_builddir)/src/common/libcommon-gpl.la
36907cb5 36
f2b390e9
KS
37# Use this fake source file to force the link mode of the library
38# from gcc to g++. The library contains only C code, but depends on
39# libstdc++.
40nodist_EXTRA__lttng_la_SOURCES = dummy.cpp
41
36907cb5
DS
42lttng_wrap.c: lttng.i
43 $(SWIG) -python -I. -I$(top_srcdir)/src/common/sessiond-comm lttng.i
36907cb5 44
b8a74969 45CLEANFILES = lttng.i lttng.py lttng_wrap.c lttng.pyc
This page took 0.058169 seconds and 5 git commands to generate.