Build: Replace use of deprecated AM_PATH_XML2
[lttng-tools.git] / src / common / config / Makefile.am
CommitLineData
1501a7f3
JG
1AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src
2
bac6245e
JG
3noinst_LTLIBRARIES = libconfig.la
4
f40ef1d5
MJ
5libconfig_la_SOURCES = ini.c ini.h session-config.c session-config.h \
6 config-session-abi.h config-internal.h
34707125
JG
7libconfig_la_CPPFLAGS = $(libxml2_CFLAGS) $(AM_CPPFLAGS)
8libconfig_la_LIBADD = ${libxml2_LIBS}
dcf266c0
JG
9
10xmldir = $(datadir)/xml/lttng
dcf266c0 11dist_xml_DATA = session.xsd
90da811b 12EXTRA_DIST = session.xsd
c133fac8
JR
13
14all-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
21clean-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.038612 seconds and 5 git commands to generate.