Fix: added missing test_channel and removed double defined test_syscall
[lttng-tools.git] / tests / regression / kernel / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 EXTRA_DIST = test_event_basic test_all_events test_syscall \
4 test_clock_override test_rotation_destroy_flush \
5 test_select_poll_epoll test_lttng_logger \
6 test_userspace_probe test_callstack \
7 test_channel \
8 validate_select_poll_epoll.py \
9 test_ns_contexts test_ns_contexts_change
10
11 noinst_PROGRAMS = select_poll_epoll
12 select_poll_epoll_SOURCES = select_poll_epoll.c
13 select_poll_epoll_LDADD = $(POPT_LIBS)
14 select_poll_epoll_CFLAGS = $(POPT_CFLAGS) -fno-stack-protector -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0 $(AM_CFLAGS)
15
16 all-local:
17 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
18 for script in $(EXTRA_DIST); do \
19 cp -f $(srcdir)/$$script $(builddir); \
20 done; \
21 fi
22
23 clean-local:
24 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
25 for script in $(EXTRA_DIST); do \
26 rm -f $(builddir)/$$script; \
27 done; \
28 fi
This page took 0.03045 seconds and 5 git commands to generate.