Fix: support VPATH build for tests
[lttng-tools.git] / tests / regression / ust / high-throughput / Makefile.am
CommitLineData
74130cb7 1AM_CFLAGS = -I$(srcdir) -O2
e72d66a6
DG
2AM_LDFLAGS = -llttng-ust
3
4if LTTNG_TOOLS_BUILD_WITH_LIBDL
5AM_LDFLAGS += -ldl
6endif
7if LTTNG_TOOLS_BUILD_WITH_LIBC_DL
8AM_LDFLAGS += -lc
9endif
10
11noinst_PROGRAMS = gen-events
12gen_events_SOURCES = main.c tp.c tp.h
13gen_events_LDADD = -llttng-ust
14
e5be53a0
CB
15noinst_SCRIPTS = test_high_throughput
16EXTRA_DIST = test_high_throughput
c83e7ca0
DG
17
18all-local:
19 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
20 for script in $(EXTRA_DIST); do \
21 cp -f $(srcdir)/$$script $(builddir); \
22 done; \
23 fi
24
25clean-local:
26 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
27 for script in $(EXTRA_DIST); do \
28 rm -f $(builddir)/$$script; \
29 done; \
30 fi
This page took 0.031678 seconds and 5 git commands to generate.