Fix: added missing test_channel and removed double defined test_syscall
[lttng-tools.git] / tests / regression / kernel / Makefile.am
CommitLineData
9d16b343
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
eae79fb9 3EXTRA_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 \
75dbaf70
AW
7 test_channel \
8 validate_select_poll_epoll.py \
5f0d4e78 9 test_ns_contexts test_ns_contexts_change
a0b1f42c
JD
10
11noinst_PROGRAMS = select_poll_epoll
12select_poll_epoll_SOURCES = select_poll_epoll.c
4f985cf8 13select_poll_epoll_LDADD = $(POPT_LIBS)
4cb1ed0d 14select_poll_epoll_CFLAGS = $(POPT_CFLAGS) -fno-stack-protector -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0 $(AM_CFLAGS)
c83e7ca0
DG
15
16all-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
23clean-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.057484 seconds and 5 git commands to generate.