Port: Add compat for platforms with no MSG_NOSIGNAL or SO_NOSIGPIPE
[babeltrace.git] / tests / lib / Makefile.am
... / ...
CommitLineData
1AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/tests/utils
2
3noinst_LIBRARIES = libtestcommon.a
4
5LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
6
7libtestcommon_a_SOURCES = common.c common.h
8
9# -Wl,--no-as-needed is needed for recent gold linker who seems to think
10# it knows better and considers libraries with constructors having
11# side-effects as dead code.
12test_seek_LDFLAGS = -Wl,--no-as-needed
13test_seek_LDADD = $(LIBTAP) libtestcommon.a \
14 $(top_builddir)/lib/libbabeltrace.la \
15 $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
16
17test_bitfield_LDADD = $(LIBTAP) libtestcommon.a
18
19test_ctf_writer_LDADD = $(LIBTAP) \
20 $(top_builddir)/lib/libbabeltrace.la \
21 $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
22
23noinst_PROGRAMS = test_seek test_bitfield test_ctf_writer
24
25test_seek_SOURCES = test_seek.c
26test_bitfield_SOURCES = test_bitfield.c
27test_ctf_writer_SOURCES = test_ctf_writer.c
28
29SCRIPT_LIST = test_seek_big_trace \
30 test_seek_empty_packet \
31 test_ctf_writer_complete
32
33dist_noinst_SCRIPTS = $(SCRIPT_LIST)
34
35all-local:
36 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
37 for script in $(SCRIPT_LIST); do \
38 cp -f $(srcdir)/$$script $(builddir); \
39 done; \
40 fi
41
42clean-local:
43 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
44 for script in $(SCRIPT_LIST); do \
45 rm -f $(builddir)/$$script; \
46 done; \
47 fi
This page took 0.027139 seconds and 4 git commands to generate.