f7bf287708f822a918ab8b67bbc3684d1bb2cffb
[lttng-tools.git] / tests / unit / ini_config / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 AM_CPPFLAGS += -I$(top_srcdir)/tests/utils/
4
5 LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
6 LIBCOMMON=$(top_builddir)/src/common/libcommon.la
7 LIBHASHTABLE=$(top_builddir)/src/common/hashtable/libhashtable.la
8
9 noinst_PROGRAMS = ini_config
10 EXTRA_DIST = test_ini_config sample.ini
11
12 ini_config_SOURCES = ini_config.cpp
13 ini_config_LDADD = $(LIBTAP) $(LIBCOMMON) $(LIBHASHTABLE)
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.028999 seconds and 3 git commands to generate.