tests: Move to kernel style SPDX license identifiers
[lttng-tools.git] / tests / regression / ust / overlap / demo / Makefile.am
... / ...
CommitLineData
1# SPDX-License-Identifier: GPL-2.0-only
2
3if NO_SHARED
4# Do not build this test if shared libraries support was
5# explicitly disabled.
6
7CLEANFILES = demo
8
9EXTRA_DIST = demo-trace demo.c ust_tests_demo.h \
10 tp3.c ust_tests_demo3.h tp2.c ust_tests_demo2.h \
11 tp.c ust_tests_demo.h
12
13else
14
15AM_CPPFLAGS += -I$(srcdir)
16
17# Force the shared flag on the noinst libraries since they are
18# only built static by default
19FORCE_SHARED_LIB_OPTIONS = -module -shared -avoid-version \
20 -rpath $(abs_builddir)
21
22#contains ust_tests_demo.h and ust_tests_demo2.h provider probes
23liblttng_ust_provider_ust_tests_demo_la_SOURCES = \
24 tp.c ust_tests_demo.h \
25 tp2.c ust_tests_demo2.h
26liblttng_ust_provider_ust_tests_demo_la_LIBADD = $(UST_LIBS)
27liblttng_ust_provider_ust_tests_demo_la_LDFLAGS = $(FORCE_SHARED_LIB_OPTIONS)
28
29#contains ust_tests_demo3.h provider probes
30liblttng_ust_provider_ust_tests_demo3_la_SOURCES = tp3.c ust_tests_demo3.h
31liblttng_ust_provider_ust_tests_demo3_la_LIBADD = $(UST_LIBS)
32liblttng_ust_provider_ust_tests_demo3_la_LDFLAGS = $(FORCE_SHARED_LIB_OPTIONS)
33
34noinst_LTLIBRARIES = liblttng-ust-provider-ust-tests-demo.la \
35 liblttng-ust-provider-ust-tests-demo3.la
36
37noinst_PROGRAMS = demo
38demo_SOURCES = demo.c ust_tests_demo.h
39# The demo program only depends on libdl/libc for dlopen().
40demo_LDADD = $(DL_LIBS)
41
42noinst_SCRIPTS = demo-trace
43EXTRA_DIST = demo-trace
44
45all-local:
46 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
47 for script in $(EXTRA_DIST); do \
48 cp -f $(srcdir)/$$script $(builddir); \
49 done; \
50 fi
51
52clean-local:
53 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
54 for script in $(EXTRA_DIST); do \
55 rm -f $(builddir)/$$script; \
56 done; \
57 fi
58
59endif
This page took 0.024647 seconds and 5 git commands to generate.