Fix: out-of-tree build: missing xsd file for save-load test execution
[lttng-tools.git] / src / common / config / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src
2
3 noinst_LTLIBRARIES = libconfig.la
4
5 libconfig_la_SOURCES = ini.c ini.h config.c config.h config-session-abi.h config-internal.h
6 libconfig_la_CPPFLAGS = $(XML_CPPFLAGS) $(AM_CPPFLAGS)
7 libconfig_la_LIBADD = $(XML_LIBS)
8
9 xmldir = $(datadir)/xml/lttng
10 dist_xml_DATA = session.xsd
11 EXTRA_DIST = session.xsd
12
13 all-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
20 clean-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.030262 seconds and 5 git commands to generate.