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