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