Commit | Line | Data |
---|---|---|
eae79fb9 | 1 | EXTRA_DIST = test_event_basic test_all_events test_syscall \ |
a0b1f42c | 2 | test_clock_override test_rotation_destroy_flush \ |
bb40a65e JG |
3 | test_select_poll_epoll test_lttng_logger \ |
4 | test_userspace_probe test_callstack \ | |
5 | test_syscall validate_select_poll_epoll.py | |
a0b1f42c JD |
6 | |
7 | noinst_PROGRAMS = select_poll_epoll | |
8 | select_poll_epoll_SOURCES = select_poll_epoll.c | |
4f985cf8 | 9 | select_poll_epoll_LDADD = $(POPT_LIBS) |
f541e771 | 10 | select_poll_epoll_CFLAGS = $(POPT_CFLAGS) -fno-stack-protector -D_FORTIFY_SOURCE=0 $(AM_CFLAGS) |
c83e7ca0 DG |
11 | |
12 | all-local: | |
13 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
14 | for script in $(EXTRA_DIST); do \ | |
15 | cp -f $(srcdir)/$$script $(builddir); \ | |
16 | done; \ | |
17 | fi | |
18 | ||
19 | clean-local: | |
20 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
21 | for script in $(EXTRA_DIST); do \ | |
22 | rm -f $(builddir)/$$script; \ | |
23 | done; \ | |
24 | fi |