common: split ini-config in its own convenience library
[lttng-tools.git] / src / common / config / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 noinst_LTLIBRARIES = libconfig.la
4
5 libconfig_la_SOURCES = \
6 config-internal.h \
7 config-session-abi.h \
8 session-config.cpp \
9 session-config.h
10 libconfig_la_CPPFLAGS = $(libxml2_CFLAGS) $(AM_CPPFLAGS)
11 libconfig_la_LIBADD = ${libxml2_LIBS}
12
13 xmldir = $(datadir)/xml/lttng
14 dist_xml_DATA = session.xsd
15 EXTRA_DIST = session.xsd
16
17 all-local:
18 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
19 for script in $(EXTRA_DIST); do \
20 cp -f $(srcdir)/$$script $(builddir); \
21 done; \
22 fi
23
24 clean-local:
25 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
26 for script in $(EXTRA_DIST); do \
27 rm -f $(builddir)/$$script; \
28 done; \
29 fi
This page took 0.02938 seconds and 4 git commands to generate.