Fix: Don't override user variables within the build system
[urcu.git] / tests / utils / Makefile.am
1 AM_CFLAGS += -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_srcdir)/src
2
3 noinst_LIBRARIES = libtap.a
4 libtap_a_SOURCES = tap.c tap.h
5
6 SCRIPT_LIST = tap.sh
7
8 dist_noinst_SCRIPTS = $(SCRIPT_LIST)
9
10 all-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
17 clean-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.029311 seconds and 4 git commands to generate.