.gitignore: ignore local vscode workspace settings file
[lttng-tools.git] / tests / utils / xml-utils / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 EXTRA_DIST = common.hpp
4
5 noinst_PROGRAMS = validate_xml extract_xml pretty_xml
6 validate_xml_SOURCES = validate_xml.cpp
7 validate_xml_CPPFLAGS = $(libxml2_CFLAGS) $(AM_CPPFLAGS)
8 validate_xml_LDADD = $(libxml2_LIBS)
9
10 extract_xml_SOURCES = extract_xml.cpp
11 extract_xml_CPPFLAGS = $(libxml2_CFLAGS) $(AM_CPPFLAGS)
12 extract_xml_LDADD = $(libxml2_LIBS)
13
14 pretty_xml_SOURCES = pretty_xml.cpp
15 pretty_xml_CPPFLAGS = $(libxml2_CFLAGS) $(AM_CPPFLAGS)
16 pretty_xml_LDADD = $(libxml2_LIBS)
17
18 all-local:
19 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
20 for script in $(EXTRA_DIST); do \
21 cp -f $(srcdir)/$$script $(builddir); \
22 done; \
23 fi
24
25 clean-local:
26 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
27 for script in $(EXTRA_DIST); do \
28 rm -f $(builddir)/$$script; \
29 done; \
30 fi
This page took 0.03072 seconds and 4 git commands to generate.