Fix: Don't override user variables within the build system
[lttng-tools.git] / tests / regression / ust / multi-session / Makefile.am
... / ...
CommitLineData
1AM_CFLAGS += -I$(srcdir)
2
3if LTTNG_TOOLS_BUILD_WITH_LIBDL
4LIBS += -ldl
5endif
6if LTTNG_TOOLS_BUILD_WITH_LIBC_DL
7LIBS += -lc
8endif
9
10noinst_PROGRAMS = gen-nevents
11gen_nevents_SOURCES = gen-nevents.c tp.c ust_gen_nevents.h
12gen_nevents_LDADD = -llttng-ust -lurcu-bp
13
14noinst_SCRIPTS = test_multi_session
15EXTRA_DIST = test_multi_session
16
17all-local:
18 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
19 for script in $(EXTRA_DIST); do \
20 cp -f $(srcdir)/$$script $(builddir); \
21 done; \
22 fi
23
24clean-local:
25 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
26 for script in $(EXTRA_DIST); do \
27 rm -f $(builddir)/$$script; \
28 done; \
29 fi
This page took 0.022771 seconds and 4 git commands to generate.