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