common: split ini-config in its own convenience library
[lttng-tools.git] / src / common / config / Makefile.am
CommitLineData
ab5be9fa
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
bac6245e
JG
3noinst_LTLIBRARIES = libconfig.la
4
3afa94ae
SM
5libconfig_la_SOURCES = \
6 config-internal.h \
7 config-session-abi.h \
3afa94ae
SM
8 session-config.cpp \
9 session-config.h
34707125
JG
10libconfig_la_CPPFLAGS = $(libxml2_CFLAGS) $(AM_CPPFLAGS)
11libconfig_la_LIBADD = ${libxml2_LIBS}
dcf266c0
JG
12
13xmldir = $(datadir)/xml/lttng
dcf266c0 14dist_xml_DATA = session.xsd
90da811b 15EXTRA_DIST = session.xsd
c133fac8
JR
16
17all-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
24clean-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.047608 seconds and 4 git commands to generate.