Commit | Line | Data |
---|---|---|
343af227 | 1 | AM_CPPFLAGS += -I$(srcdir) |
e72d66a6 | 2 | |
e72d66a6 DG |
3 | noinst_PROGRAMS = gen-events |
4 | gen_events_SOURCES = main.c tp.c tp.h | |
b1c46f87 | 5 | gen_events_LDADD = -llttng-ust $(DL_LIBS) |
e72d66a6 | 6 | |
e5be53a0 CB |
7 | noinst_SCRIPTS = test_high_throughput |
8 | EXTRA_DIST = test_high_throughput | |
c83e7ca0 DG |
9 | |
10 | all-local: | |
11 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
12 | for script in $(EXTRA_DIST); do \ | |
13 | cp -f $(srcdir)/$$script $(builddir); \ | |
14 | done; \ | |
15 | fi | |
16 | ||
17 | clean-local: | |
18 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
19 | for script in $(EXTRA_DIST); do \ | |
20 | rm -f $(builddir)/$$script; \ | |
21 | done; \ | |
22 | fi |