Port: Link with no-undefined on Windows
[babeltrace.git] / tests / utils / tap / Makefile.am
1 noinst_LTLIBRARIES = libtap.la
2 libtap_la_SOURCES = tap.c tap.h
3 libtap_la_LDFLAGS = $(LT_NO_UNDEFINED)
4
5 SCRIPT_LIST = tap.sh
6
7 dist_noinst_SCRIPTS = $(SCRIPT_LIST)
8
9 all-local:
10 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
11 for script in $(SCRIPT_LIST); do \
12 cp -f $(srcdir)/$$script $(builddir); \
13 done; \
14 fi
15
16 clean-local:
17 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
18 for script in $(SCRIPT_LIST); do \
19 rm -f $(builddir)/$$script; \
20 done; \
21 fi
This page took 0.030869 seconds and 4 git commands to generate.