tests: Move to kernel style SPDX license identifiers
[lttng-tools.git] / tests / regression / ust / low-throughput / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 AM_CPPFLAGS += -I$(srcdir)
4
5 noinst_PROGRAMS = gen-events
6 gen_events_SOURCES = main.c tp.c tp.h
7 gen_events_LDADD = $(UST_LIBS) $(DL_LIBS)
8
9 noinst_SCRIPTS = test_low_throughput
10 EXTRA_DIST = test_low_throughput
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.029888 seconds and 5 git commands to generate.