X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Fdemo%2FMakefile.am;h=6e4a603b7aa78541154b92f7dd1fbc2398285b48;hb=e81a53afbf8fc88951cace52adc45bb02994fe55;hp=7ed5ce1e02ed8bd290bd3599fabd46ea1e31b6a8;hpb=ffadf98017cfeeade97b02da3eabe3a0c466fbe2;p=lttng-ust.git diff --git a/tests/demo/Makefile.am b/tests/demo/Makefile.am index 7ed5ce1e..6e4a603b 100644 --- a/tests/demo/Makefile.am +++ b/tests/demo/Makefile.am @@ -1,5 +1,30 @@ -AM_CPPFLAGS = -I$(top_srcdir)/include +# -Wsystem-headers is needed to print warnings in the tracepoint +# description file. +AM_CPPFLAGS = -I$(top_srcdir)/include -Wsystem-headers + +# We install the plugins into the /tmp/lttng-ust-divert directory to +# please libtool, which absolutely needs a target install location. We +# don't want to pollute the system with test program plugins. +# We use the .so in .libs/ for the tests. +noinst_plugins_libdir = "/tmp/lttng-ust-divert" + +noinst_plugins_lib_LTLIBRARIES = liblttng-ust-provider-ust-tests-demo.la \ + liblttng-ust-provider-ust-tests-demo3.la + +#contains ust_tests_demo.h and ust_tests_demo2.h provider probes +liblttng_ust_provider_ust_tests_demo_la_SOURCES = \ + tp.c ust_tests_demo.h \ + tp2.c ust_tests_demo2.h +liblttng_ust_provider_ust_tests_demo_la_LIBADD = \ + $(top_builddir)/liblttng-ust/liblttng-ust.la + +#contains ust_tests_demo3.h provider probes +liblttng_ust_provider_ust_tests_demo3_la_SOURCES = \ + tp3.c ust_tests_demo3.h +liblttng_ust_provider_ust_tests_demo3_la_LIBADD = \ + $(top_builddir)/liblttng-ust/liblttng-ust.la noinst_PROGRAMS = demo -demo_SOURCES = demo.c tp.c ust_tests_demo.h -demo_LDADD = $(top_builddir)/liblttng-ust/liblttng-ust.la +demo_SOURCES = demo.c ust_tests_demo.h +# The demo program only depends on libdl. +demo_LIBS = -ldl