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