Add session configuration load capability to libconfig
[lttng-tools.git] / tests / unit / ini_config / Makefile.am
1 AM_CFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src -I$(top_srcdir)/tests/utils/
2
3 LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
4 LIBCONFIG=$(top_builddir)/src/common/config/libconfig.la
5 LIBCOMMON=$(top_builddir)/src/common/libcommon.la
6 LIBHASHTABLE=$(top_builddir)/src/common/hashtable/libhashtable.la
7
8 noinst_PROGRAMS = ini_config
9 EXTRA_DIST = test_ini_config
10
11 ini_config_SOURCES = ini_config.c
12 ini_config_LDADD = $(LIBTAP) $(LIBCONFIG) $(LIBCOMMON) $(LIBHASHTABLE) \
13 $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la
14
15 all-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
22 clean-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.030208 seconds and 5 git commands to generate.