Fix: force the use of our _FORTIFY_SOURCE definition
[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 \
f62a3871 7 test_syscall validate_select_poll_epoll.py \
5f0d4e78 8 test_ns_contexts test_ns_contexts_change
a0b1f42c
JD
9
10noinst_PROGRAMS = select_poll_epoll
11select_poll_epoll_SOURCES = select_poll_epoll.c
4f985cf8 12select_poll_epoll_LDADD = $(POPT_LIBS)
016f0450 13select_poll_epoll_CFLAGS = $(POPT_CFLAGS) -fno-stack-protector -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0 $(AM_CFLAGS)
c83e7ca0
DG
14
15all-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
22clean-local:
23 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
24 for script in $(EXTRA_DIST); do \
25 rm -f $(builddir)/$$script; \
26 done; \
27 fi
This page took 0.051653 seconds and 5 git commands to generate.