Fix: Don't override user variables within the build system
[lttng-tools.git] / tests / regression / ust / low-throughput / Makefile.am
1 AM_CPPFLAGS += -I$(srcdir)
2
3 if LTTNG_TOOLS_BUILD_WITH_LIBDL
4 LIBS += -ldl
5 endif
6 if LTTNG_TOOLS_BUILD_WITH_LIBC_DL
7 LIBS += -lc
8 endif
9
10 noinst_PROGRAMS = gen-events
11 gen_events_SOURCES = main.c tp.c tp.h
12 gen_events_LDADD = -llttng-ust -lurcu
13
14 noinst_SCRIPTS = test_low_throughput
15 EXTRA_DIST = test_low_throughput
16
17 all-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
24 clean-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.030596 seconds and 5 git commands to generate.