Add libconfig implementation and tests
[lttng-tools.git] / tests / unit / ini_config / Makefile.am
CommitLineData
1501a7f3
JG
1AM_CFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src -I$(top_srcdir)/tests/utils/
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
9EXTRA_DIST = test_ini_config
10
11ini_config_SOURCES = ini_config.c
12ini_config_LDADD = $(LIBTAP) $(LIBCONFIG) $(LIBCOMMON) $(LIBHASHTABLE)
13
14all-local:
15 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
16 for script in $(EXTRA_DIST); do \
17 cp -f $(srcdir)/$$script $(builddir); \
18 done; \
19 fi
20
21clean-local:
22 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
23 for script in $(EXTRA_DIST); do \
24 rm -f $(builddir)/$$script; \
25 done; \
26 fi
This page took 0.023855 seconds and 4 git commands to generate.