Add configure amd64 support (for FreeBSD)
[lttng-ust.git] / tests / demo / Makefile.am
CommitLineData
ff412fb5
MD
1# -Wsystem-headers is needed to print warnings in the tracepoint
2# description file.
3AM_CPPFLAGS = -I$(top_srcdir)/include -Wsystem-headers
580d134b 4
a8566918
MD
5# Set LIBS to nothing so the application does not link on useless
6# libraries.
7LIBS =
8
9036849a
YB
9# Force the shared flag on the noinst libraries since they are
10# only build static by default
11FORCE_SHARED_LIB_OPTIONS = -module -shared -avoid-version \
12 -rpath $(abs_builddir)
4937e69d 13
a8566918
MD
14PROBE_LIBS = -lurcu-bp -lurcu-bp -luuid -lpthread -ldl
15
9036849a 16noinst_LTLIBRARIES = liblttng-ust-provider-ust-tests-demo.la \
deb6e540
MD
17 liblttng-ust-provider-ust-tests-demo3.la
18
19#contains ust_tests_demo.h and ust_tests_demo2.h provider probes
20liblttng_ust_provider_ust_tests_demo_la_SOURCES = \
21 tp.c ust_tests_demo.h \
22 tp2.c ust_tests_demo2.h
23liblttng_ust_provider_ust_tests_demo_la_LIBADD = \
24 $(top_builddir)/liblttng-ust/liblttng-ust.la
a8566918
MD
25liblttng_ust_provider_ust_tests_demo_la_LDFLAGS = \
26 $(FORCE_SHARED_LIB_OPTIONS) \
27 $(PROBE_LIBS)
deb6e540
MD
28
29#contains ust_tests_demo3.h provider probes
30liblttng_ust_provider_ust_tests_demo3_la_SOURCES = \
31 tp3.c ust_tests_demo3.h
32liblttng_ust_provider_ust_tests_demo3_la_LIBADD = \
33 $(top_builddir)/liblttng-ust/liblttng-ust.la
a8566918
MD
34liblttng_ust_provider_ust_tests_demo3_la_LDFLAGS = \
35 $(FORCE_SHARED_LIB_OPTIONS) \
36 $(PROBE_LIBS)
deb6e540 37
580d134b 38noinst_PROGRAMS = demo
deb6e540 39demo_SOURCES = demo.c ust_tests_demo.h
90cefaa3
MD
40# The demo program only depends on libdl/libc for dlopen().
41if LTTNG_UST_BUILD_WITH_LIBDL
42demo_LDADD = -ldl
43endif
44if LTTNG_UST_BUILD_WITH_LIBC_DL
45demo_LDADD = -lc
46endif
47
This page took 0.027376 seconds and 4 git commands to generate.