Fix: out-of-tree build: missing xsd file for save-load test execution
[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
9efb622e 5libconfig_la_SOURCES = ini.c ini.h config.c config.h config-session-abi.h config-internal.h
63658610 6libconfig_la_CPPFLAGS = $(XML_CPPFLAGS) $(AM_CPPFLAGS)
36f2332b 7libconfig_la_LIBADD = $(XML_LIBS)
dcf266c0
JG
8
9xmldir = $(datadir)/xml/lttng
dcf266c0 10dist_xml_DATA = session.xsd
90da811b 11EXTRA_DIST = session.xsd
c133fac8
JR
12
13all-local:
14 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
15 for script in $(EXTRA_DIST); do \
16 cp -f $(srcdir)/$$script $(builddir); \
17 done; \
18 fi
19
20clean-local:
21 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
22 for script in $(EXTRA_DIST); do \
23 rm -f $(builddir)/$$script; \
24 done; \
25 fi
This page took 0.029763 seconds and 5 git commands to generate.