Move to kernel style SPDX license identifiers
[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 = ini.c ini.h session-config.c session-config.h \
6 config-session-abi.h config-internal.h
7 libconfig_la_CPPFLAGS = $(libxml2_CFLAGS) $(AM_CPPFLAGS)
8 libconfig_la_LIBADD = ${libxml2_LIBS}
9
10 xmldir = $(datadir)/xml/lttng
11 dist_xml_DATA = session.xsd
12 EXTRA_DIST = session.xsd
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.029389 seconds and 4 git commands to generate.