Print compiler warning/runtime warning and truncate too long tracepoint names
[lttng-ust.git] / tests / demo / Makefile.am
... / ...
CommitLineData
1# -Wsystem-headers is needed to print warnings in the tracepoint
2# description file.
3AM_CPPFLAGS = -I$(top_srcdir)/include -Wsystem-headers
4
5# We install the plugins into the /tmp/lttng-ust-divert directory to
6# please libtool, which absolutely needs a target install location. We
7# don't want to pollute the system with test program plugins.
8# We use the .so in .libs/ for the tests.
9noinst_plugins_libdir = "/tmp/lttng-ust-divert"
10
11noinst_plugins_lib_LTLIBRARIES = liblttng-ust-provider-ust-tests-demo.la \
12 liblttng-ust-provider-ust-tests-demo3.la
13
14#contains ust_tests_demo.h and ust_tests_demo2.h provider probes
15liblttng_ust_provider_ust_tests_demo_la_SOURCES = \
16 tp.c ust_tests_demo.h \
17 tp2.c ust_tests_demo2.h
18liblttng_ust_provider_ust_tests_demo_la_LIBADD = \
19 $(top_builddir)/liblttng-ust/liblttng-ust.la
20
21#contains ust_tests_demo3.h provider probes
22liblttng_ust_provider_ust_tests_demo3_la_SOURCES = \
23 tp3.c ust_tests_demo3.h
24liblttng_ust_provider_ust_tests_demo3_la_LIBADD = \
25 $(top_builddir)/liblttng-ust/liblttng-ust.la
26
27noinst_PROGRAMS = demo
28demo_SOURCES = demo.c ust_tests_demo.h
29# The demo program only depends on libdl.
30demo_LIBS = -ldl
This page took 0.0224 seconds and 4 git commands to generate.