Fix: Don't override user variables within the build system
[lttng-tools.git] / tests / regression / tools / filtering / Makefile.am
CommitLineData
343af227 1AM_CPPFLAGS += -I$(top_srcdir)/tests -I$(srcdir)
9fec62f7
CB
2
3if LTTNG_TOOLS_BUILD_WITH_LIBDL
d7c54334 4LIBS += -ldl
9fec62f7
CB
5endif
6if LTTNG_TOOLS_BUILD_WITH_LIBC_DL
d7c54334 7LIBS += -lc
9fec62f7
CB
8endif
9
10if HAVE_LIBLTTNG_UST_CTL
11noinst_PROGRAMS = gen-ust-events
12gen_ust_events_SOURCES = gen-ust-events.c tp.c tp.h
32f754b3 13gen_ust_events_LDADD = -llttng-ust -lurcu-bp
9fec62f7
CB
14endif
15
9d806fbf
CB
16noinst_SCRIPTS = test_unsupported_op test_invalid_filter test_valid_filter
17EXTRA_DIST = test_unsupported_op test_invalid_filter test_valid_filter
c83e7ca0
DG
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.045859 seconds and 5 git commands to generate.