Fix: Don't override user variables within the build system
[lttng-tools.git] / tests / regression / ust / high-throughput / Makefile.am
CommitLineData
343af227 1AM_CPPFLAGS += -I$(srcdir)
e72d66a6
DG
2
3if LTTNG_TOOLS_BUILD_WITH_LIBDL
d7c54334 4LIBS += -ldl
e72d66a6
DG
5endif
6if LTTNG_TOOLS_BUILD_WITH_LIBC_DL
d7c54334 7LIBS += -lc
e72d66a6
DG
8endif
9
10noinst_PROGRAMS = gen-events
11gen_events_SOURCES = main.c tp.c tp.h
12gen_events_LDADD = -llttng-ust
13
e5be53a0
CB
14noinst_SCRIPTS = test_high_throughput
15EXTRA_DIST = test_high_throughput
c83e7ca0
DG
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.048252 seconds and 5 git commands to generate.