Fix: leftover python inline type hint
[lttng-tools.git] / extras / bindings / swig / python / Makefile.am
... / ...
CommitLineData
1# SPDX-License-Identifier: GPL-2.0-only
2
3lttng.i: lttng.i.in
4 $(SED) "s/LTTNG_VERSION_STR/LTTng $(PACKAGE_VERSION)/g" < $(srcdir)/lttng.i.in >lttng.i
5
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#
10# Disable some warning flags for that file.
11AM_CFLAGS += \
12 -Wno-cast-function-type \
13 -Wno-missing-field-initializers \
14 -Wno-redundant-decls \
15 -Wno-shadow \
16 -Wno-unused-parameter
17
18# Swig regularily changes and generates code that results warnings which break
19# Werror builds. Disable that option for this sub-project.
20AM_CFLAGS += -Wno-error
21
22AM_CPPFLAGS += $(PYTHON_INCLUDE)
23
24EXTRA_DIST = lttng.i.in
25nodist_python_PYTHON = lttng.py
26pyexec_LTLIBRARIES = _lttng.la
27
28MAINTAINERCLEANFILES = lttng_wrap.c lttng.py
29
30nodist__lttng_la_SOURCES = lttng_wrap.c
31_lttng_la_LDFLAGS = -module
32_lttng_la_LIBADD = $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
33 $(top_builddir)/src/common/libsessiond-comm.la \
34 $(top_builddir)/src/common/libcommon-gpl.la
35
36lttng_wrap.c: lttng.i
37 $(SWIG) -python -I. -I$(top_srcdir)/src/common/sessiond-comm lttng.i
38
39CLEANFILES = lttng.i lttng.py lttng_wrap.c lttng.pyc
This page took 0.022832 seconds and 4 git commands to generate.