Fix: Don't override user variables within the build system
[urcu.git] / tests / utils / Makefile.am
... / ...
CommitLineData
1AM_CFLAGS += -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_srcdir)/src
2
3noinst_LIBRARIES = libtap.a
4libtap_a_SOURCES = tap.c tap.h
5
6SCRIPT_LIST = tap.sh
7
8dist_noinst_SCRIPTS = $(SCRIPT_LIST)
9
10all-local:
11 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
12 for script in $(SCRIPT_LIST); do \
13 cp -f $(srcdir)/$$script $(builddir); \
14 done; \
15 fi
16
17clean-local:
18 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
19 for script in $(SCRIPT_LIST); do \
20 rm -f $(builddir)/$$script; \
21 done; \
22 fi
This page took 0.021404 seconds and 4 git commands to generate.