Fix: include stdlib.h in compat/string.h
[lttng-tools.git] / tests / utils / Makefile.am
1 SUBDIRS = . tap testapp
2
3 EXTRA_DIST = utils.sh test_utils.py babelstats.pl warn_processes.sh \
4 parse-callstack.py
5 dist_noinst_SCRIPTS = utils.sh test_utils.py babelstats.pl
6 noinst_LTLIBRARIES = libtestutils.la
7
8 libtestutils_la_SOURCES = utils.c utils.h
9
10 all-local:
11 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
12 for script in $(EXTRA_DIST); do \
13 cp -f $(srcdir)/$$script $(builddir); \
14 done; \
15 fi
16
17 clean-local:
18 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
19 for script in $(EXTRA_DIST); do \
20 rm -f $(builddir)/$$script; \
21 done; \
22 fi
This page took 0.030498 seconds and 5 git commands to generate.