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