Tests: lttng-ust-getcpu-override-test cache and error-check sysconf()
[lttng-tools.git] / tests / regression / ust / low-throughput / Makefile.am
... / ...
CommitLineData
1AM_CFLAGS = -I$(srcdir) -O2
2AM_LDFLAGS = -llttng-ust
3
4if LTTNG_TOOLS_BUILD_WITH_LIBDL
5LIBS += -ldl
6endif
7if LTTNG_TOOLS_BUILD_WITH_LIBC_DL
8LIBS += -lc
9endif
10
11noinst_PROGRAMS = gen-events
12gen_events_SOURCES = main.c tp.c tp.h
13gen_events_LDADD = -llttng-ust -lurcu
14
15noinst_SCRIPTS = test_low_throughput
16EXTRA_DIST = test_low_throughput
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.021841 seconds and 4 git commands to generate.