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