common: split ini-config in its own convenience library
[lttng-tools.git] / tests / unit / ini_config / Makefile.am
CommitLineData
9d16b343
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
343af227 3AM_CPPFLAGS += -I$(top_srcdir)/tests/utils/
1501a7f3
JG
4
5LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
1501a7f3
JG
6LIBCOMMON=$(top_builddir)/src/common/libcommon.la
7LIBHASHTABLE=$(top_builddir)/src/common/hashtable/libhashtable.la
8
9noinst_PROGRAMS = ini_config
90da811b 10EXTRA_DIST = test_ini_config sample.ini
1501a7f3 11
740da7d5 12ini_config_SOURCES = ini_config.cpp
3299fd31 13ini_config_LDADD = $(LIBTAP) $(LIBCOMMON) $(LIBHASHTABLE)
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.03761 seconds and 4 git commands to generate.