98956f76ae40847882685f494f1d413d80d3ac14
[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
14 all-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
21 clean-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.030312 seconds and 4 git commands to generate.