Fix: Conditionally disable tests requiring shared libs support
[lttng-ust.git] / tests / demo / Makefile.am
1 # -Wsystem-headers is needed to print warnings in the tracepoint
2 # description file.
3 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include -Wsystem-headers
4
5 # Set LIBS to nothing so the application does not link on useless
6 # libraries.
7 LIBS =
8
9 if NO_SHARED
10 # Do not build this test if shared libraries support was
11 # explicitly disabled.
12 else
13 # Force the shared flag on the noinst libraries since they are
14 # only built static by default
15 FORCE_SHARED_LIB_OPTIONS = -module -shared -avoid-version \
16 -rpath $(abs_builddir)
17
18 noinst_LTLIBRARIES = liblttng-ust-provider-ust-tests-demo.la \
19 liblttng-ust-provider-ust-tests-demo3.la
20
21 #contains ust_tests_demo.h and ust_tests_demo2.h provider probes
22 liblttng_ust_provider_ust_tests_demo_la_SOURCES = \
23 tp.c ust_tests_demo.h \
24 tp2.c ust_tests_demo2.h
25 liblttng_ust_provider_ust_tests_demo_la_LIBADD = \
26 $(top_builddir)/liblttng-ust/liblttng-ust.la
27 liblttng_ust_provider_ust_tests_demo_la_LDFLAGS = \
28 $(FORCE_SHARED_LIB_OPTIONS)
29
30 #contains ust_tests_demo3.h provider probes
31 liblttng_ust_provider_ust_tests_demo3_la_SOURCES = \
32 tp3.c ust_tests_demo3.h
33 liblttng_ust_provider_ust_tests_demo3_la_LIBADD = \
34 $(top_builddir)/liblttng-ust/liblttng-ust.la
35 liblttng_ust_provider_ust_tests_demo3_la_LDFLAGS = \
36 $(FORCE_SHARED_LIB_OPTIONS)
37
38 noinst_PROGRAMS = demo
39 demo_SOURCES = demo.c ust_tests_demo.h
40 # The demo program only depends on libdl.
41 demo_LDFLAGS = -ldl
42 endif
This page took 0.034759 seconds and 4 git commands to generate.