Fix: Don't override user variables within the build system
[lttng-tools.git] / tests / unit / ini_config / Makefile.am
CommitLineData
343af227 1AM_CPPFLAGS += -I$(top_srcdir)/tests/utils/
1501a7f3
JG
2
3LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
4LIBCONFIG=$(top_builddir)/src/common/config/libconfig.la
5LIBCOMMON=$(top_builddir)/src/common/libcommon.la
6LIBHASHTABLE=$(top_builddir)/src/common/hashtable/libhashtable.la
7
8noinst_PROGRAMS = ini_config
90da811b 9EXTRA_DIST = test_ini_config sample.ini
1501a7f3
JG
10
11ini_config_SOURCES = ini_config.c
dcf266c0
JG
12ini_config_LDADD = $(LIBTAP) $(LIBCONFIG) $(LIBCOMMON) $(LIBHASHTABLE) \
13 $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la
1501a7f3
JG
14
15all-local:
16 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
17 for script in $(EXTRA_DIST); do \
18 cp -f $(srcdir)/$$script $(builddir); \
19 done; \
20 fi
21
22clean-local:
23 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
24 for script in $(EXTRA_DIST); do \
25 rm -f $(builddir)/$$script; \
26 done; \
27 fi
This page took 0.039848 seconds and 5 git commands to generate.