tests: Move to kernel style SPDX license identifiers
[lttng-tools.git] / tests / regression / ust / exit-fast / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 AM_CPPFLAGS += -I$(srcdir)
4
5 noinst_PROGRAMS = exit-fast
6 exit_fast_SOURCES = exit-fast.c ust_tests_exitfast.h
7 exit_fast_LDADD = $(UST_LIBS) $(DL_LIBS)
8
9 noinst_SCRIPTS = test_exit-fast test_exit-fast.py
10 EXTRA_DIST = test_exit-fast test_exit-fast.py
11
12 all-local:
13 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
14 for script in $(EXTRA_DIST); do \
15 cp -f $(srcdir)/$$script $(builddir); \
16 done; \
17 fi
18
19 clean-local:
20 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
21 for script in $(EXTRA_DIST); do \
22 rm -f $(builddir)/$$script; \
23 done; \
24 fi
This page took 0.031024 seconds and 5 git commands to generate.