be4978be32fd7186dbbc59a67d4268f391cda035
[lttng-tools.git] / tests / regression / ust / type-declarations / Makefile.am
1 AM_CPPFLAGS = -I$(srcdir)
2
3 noinst_PROGRAMS = type-declarations
4 type_declarations_SOURCES = type-declarations.c ust_tests_td.h
5 type_declarations_LDADD = -llttng-ust
6
7 if LTTNG_TOOLS_BUILD_WITH_LIBDL
8 type_declarations_LDADD += -ldl
9 endif
10 if LTTNG_TOOLS_BUILD_WITH_LIBC_DL
11 type_declarations_LDADD += -lc
12 endif
13
14 noinst_SCRIPTS = test_type_declarations test_type_declarations.py
15 EXTRA_DIST = test_type_declarations test_type_declarations.py
16
17 all-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
24 clean-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.029493 seconds and 3 git commands to generate.