Fix: Don't override user variables within the build system
[lttng-tools.git] / tests / regression / ust / linking / Makefile.am
CommitLineData
91c75285
JG
1# -Wsystem-headers is needed to print warnings in the tracepoint
2# description file.
343af227 3AM_CPPFLAGS += -I$(srcdir) -Wsystem-headers
91c75285
JG
4
5# Set LIBS to nothing so the application does not link on useless
6# libraries.
7LIBS =
8
9# Build a version of the test app with built-in tracepoints
10demo_builtin_SOURCES = demo.c tp.c tp2.c tp3.c ust_tests_demo.h \
11 ust_tests_demo2.h ust_tests_demo3.h
12demo_builtin_LDADD = -llttng-ust
343af227 13demo_builtin_CFLAGS = -Werror=old-style-definition $(AM_CFLAGS)
91c75285
JG
14
15# Build a version statically linked to the providers
16# contains ust_tests_demo.h and ust_tests_demo2.h provider probes
17noinst_LTLIBRARIES = liblttng-ust-provider-ust-tests-demo-static.la \
18 liblttng-ust-provider-ust-tests-demo3-static.la
19
20liblttng_ust_provider_ust_tests_demo_static_la_SOURCES = \
21 tp.c ust_tests_demo.h \
22 tp2.c ust_tests_demo2.h
23liblttng_ust_provider_ust_tests_demo_static_la_LIBADD = \
24 -llttng-ust
25
26# contains ust_tests_demo3.h provider probes
27liblttng_ust_provider_ust_tests_demo3_static_la_SOURCES = \
28 tp3.c ust_tests_demo3.h
29liblttng_ust_provider_ust_tests_demo3_static_la_LIBADD = \
30 -llttng-ust
31
32demo_static_SOURCES = demo.c
33demo_static_LDADD = liblttng-ust-provider-ust-tests-demo-static.la \
34 liblttng-ust-provider-ust-tests-demo3-static.la
35
36if LTTNG_TOOLS_BUILD_WITH_LIBDL
37demo_builtin_LDADD += -ldl
38demo_static_LDADD += -ldl
39endif
40if LTTNG_TOOLS_BUILD_WITH_LIBC_DL
41demo_builtin_LDADD += -lc
42demo_static_LDADD += -lc
43endif
44
45noinst_PROGRAMS = demo_builtin demo_static
46
cdbfb1b9
MD
47COPYSCRIPTS = test_linking test_linking.py demo_preload
48noinst_SCRIPTS = $(COPYSCRIPTS)
49
50if NO_SHARED
51
52EXTRA_DIST = tp.c ust_tests_demo.h tp2.c ust_tests_demo2.h \
53 tp3.c ust_tests_demo3.h demo.c ust_tests_demo.h \
54 $(COPYSCRIPTS)
55
56else
91c75285
JG
57# Force the shared flag on the noinst libraries since they are
58# only built static by default
59FORCE_SHARED_LIB_OPTIONS = -module -shared -avoid-version \
60 -rpath $(abs_builddir)
61
62noinst_LTLIBRARIES += liblttng-ust-provider-ust-tests-demo.la \
63 liblttng-ust-provider-ust-tests-demo3.la
64
65#contains ust_tests_demo.h and ust_tests_demo2.h provider probes
66liblttng_ust_provider_ust_tests_demo_la_SOURCES = \
67 tp.c ust_tests_demo.h \
68 tp2.c ust_tests_demo2.h
69liblttng_ust_provider_ust_tests_demo_la_LIBADD = -llttng-ust
70liblttng_ust_provider_ust_tests_demo_la_LDFLAGS = \
71 $(FORCE_SHARED_LIB_OPTIONS)
72
73#contains ust_tests_demo3.h provider probes
74liblttng_ust_provider_ust_tests_demo3_la_SOURCES = \
75 tp3.c ust_tests_demo3.h
76liblttng_ust_provider_ust_tests_demo3_la_LIBADD = -llttng-ust
77liblttng_ust_provider_ust_tests_demo3_la_LDFLAGS = \
78 $(FORCE_SHARED_LIB_OPTIONS)
79
80noinst_PROGRAMS += demo
81demo_SOURCES = demo.c ust_tests_demo.h
343af227 82demo_CFLAGS = -DTEST_DYNAMIC_LINKAGE $(AM_CFLAGS)
91c75285
JG
83
84if LTTNG_TOOLS_BUILD_WITH_LIBDL
85demo_LDADD = -ldl
86endif
87if LTTNG_TOOLS_BUILD_WITH_LIBC_DL
88demo_LDADD = -lc
89endif
90
cdbfb1b9 91EXTRA_DIST = $(COPYSCRIPTS)
91c75285 92
cdbfb1b9 93endif
c83e7ca0
DG
94
95all-local:
96 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
cdbfb1b9 97 for script in $(COPYSCRIPTS); do \
c83e7ca0
DG
98 cp -f $(srcdir)/$$script $(builddir); \
99 done; \
100 fi
101
102clean-local:
103 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
cdbfb1b9 104 for script in $(COPYSCRIPTS); do \
c83e7ca0
DG
105 rm -f $(builddir)/$$script; \
106 done; \
107 fi
This page took 0.046115 seconds and 5 git commands to generate.