Fix: Don't override user variables within the build system
[lttng-tools.git] / tests / regression / ust / type-declarations / Makefile.am
CommitLineData
343af227 1AM_CPPFLAGS += -I$(srcdir)
10b56aef
MD
2
3noinst_PROGRAMS = type-declarations
4type_declarations_SOURCES = type-declarations.c ust_tests_td.h
5type_declarations_LDADD = -llttng-ust
6
7if LTTNG_TOOLS_BUILD_WITH_LIBDL
8type_declarations_LDADD += -ldl
9endif
10if LTTNG_TOOLS_BUILD_WITH_LIBC_DL
11type_declarations_LDADD += -lc
12endif
13
14noinst_SCRIPTS = test_type_declarations test_type_declarations.py
15EXTRA_DIST = test_type_declarations test_type_declarations.py
16
17all-local:
18 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
19 for script in $(EXTRA_DIST); do \
20 cp -f $(srcdir)/$$script $(builddir); \
21 done; \
22 fi
23
24clean-local:
25 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
26 for script in $(EXTRA_DIST); do \
27 rm -f $(builddir)/$$script; \
28 done; \
29 fi
This page took 0.025739 seconds and 4 git commands to generate.