Commit | Line | Data |
---|---|---|
580d134b | 1 | AM_CPPFLAGS = -I$(top_srcdir)/include |
abe03423 MD |
2 | # The demo program only depends on libdl. |
3 | LIBS = -ldl | |
580d134b | 4 | |
deb6e540 MD |
5 | lib_LTLIBRARIES = liblttng-ust-provider-ust-tests-demo.la \ |
6 | liblttng-ust-provider-ust-tests-demo3.la | |
7 | ||
8 | #contains ust_tests_demo.h and ust_tests_demo2.h provider probes | |
9 | liblttng_ust_provider_ust_tests_demo_la_SOURCES = \ | |
10 | tp.c ust_tests_demo.h \ | |
11 | tp2.c ust_tests_demo2.h | |
12 | liblttng_ust_provider_ust_tests_demo_la_LIBADD = \ | |
13 | $(top_builddir)/liblttng-ust/liblttng-ust.la | |
14 | ||
15 | #contains ust_tests_demo3.h provider probes | |
16 | liblttng_ust_provider_ust_tests_demo3_la_SOURCES = \ | |
17 | tp3.c ust_tests_demo3.h | |
18 | liblttng_ust_provider_ust_tests_demo3_la_LIBADD = \ | |
19 | $(top_builddir)/liblttng-ust/liblttng-ust.la | |
20 | ||
580d134b | 21 | noinst_PROGRAMS = demo |
deb6e540 | 22 | demo_SOURCES = demo.c ust_tests_demo.h |