Fix: Don't override user variables within the build system
[lttng-tools.git] / tests / regression / tools / wildcard / Makefile.am
CommitLineData
343af227 1AM_CPPFLAGS += -I$(top_srcdir)/tests -I$(srcdir)
075ffe1f
MD
2
3if LTTNG_TOOLS_BUILD_WITH_LIBDL
4LIBS += -ldl
5endif
6if LTTNG_TOOLS_BUILD_WITH_LIBC_DL
7LIBS += -lc
8endif
9
10noinst_SCRIPTS = test_event_wildcard
11EXTRA_DIST = test_event_wildcard
12
13all-local:
14 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
15 for script in $(EXTRA_DIST); do \
16 cp -f $(srcdir)/$$script $(builddir); \
17 done; \
18 fi
19
20clean-local:
21 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
22 for script in $(EXTRA_DIST); do \
23 rm -f $(builddir)/$$script; \
24 done; \
25 fi
This page took 0.030622 seconds and 5 git commands to generate.