Fix: remove debugging print() call from Python agent
[lttng-ust.git] / liblttng-ust-python-agent / Makefile.am
CommitLineData
de4dee04
PP
1# tracepoint provider
2AM_CPPFLAGS = $(PYTHON_INCLUDE) -I$(top_srcdir)/include/ \
3 -I$(top_builddir)/include/
4AM_CFLAGS = -fno-strict-aliasing
5lib_LTLIBRARIES = liblttng-ust-python-agent.la
c3e14096
DG
6liblttng_ust_python_agent_la_SOURCES = lttng_ust_python.c lttng_ust_python.h
7liblttng_ust_python_agent_la_LIBADD = -lc -llttng-ust \
de4dee04 8 -L$(top_builddir)/liblttng-ust/.libs
c3e14096 9
bf261856
JR
10# Use setup.py for the installation instead of Autoconf.
11# This ease the installation process and assure a *pythonic*
12# installation.
13agent_path=lttngust
14all-local:
15 $(PYTHON) setup.py build --verbose
16
17install-exec-local:
dce1cbec
JR
18 @opts="--prefix=$(prefix) --verbose --no-compile $(DISTSETUPOPTS)"; \
19 if [ "$(DESTDIR)" != "" ]; then \
20 opts="$$opts --root=$(DESTDIR)"; \
21 fi; \
22 $(PYTHON) setup.py install $$opts;
23
bf261856
JR
24clean-local:
25 rm -rf build
26
27uninstall-local:
bf261856
JR
28 rm -rf $(DESTDIR)$(pkgpythondir)
29
30EXTRA_DIST=$(agent_path)
31
32# Remove automake generated file before dist
33dist-hook:
34 rm -rf $(distdir)/$(agent_path)/__init__.py
This page took 0.026376 seconds and 4 git commands to generate.