Add basic object system tests
[babeltrace.git] / tests / lib / Makefile.am
1 AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/tests/utils
2
3 noinst_LIBRARIES = libtestcommon.a
4
5 LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
6
7 libtestcommon_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.
12 test_seek_LDFLAGS = -Wl,--no-as-needed
13 test_seek_LDADD = $(LIBTAP) libtestcommon.a \
14 $(top_builddir)/lib/libbabeltrace.la \
15 $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
16
17 test_bitfield_LDADD = $(LIBTAP) libtestcommon.a
18
19 test_ctf_writer_LDADD = $(LIBTAP) \
20 $(top_builddir)/lib/libbabeltrace.la \
21 $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
22
23 test_bt_objects_LDADD = $(LIBTAP) \
24 $(top_builddir)/lib/libbabeltrace.la
25
26 noinst_PROGRAMS = test_seek test_bitfield test_ctf_writer test_bt_objects
27
28 test_seek_SOURCES = test_seek.c
29 test_bitfield_SOURCES = test_bitfield.c
30 test_ctf_writer_SOURCES = test_ctf_writer.c
31 test_bt_objects_SOURCES = test_bt_objects.c
32
33 SCRIPT_LIST = test_seek_big_trace \
34 test_seek_empty_packet \
35 test_ctf_writer_complete \
36 test_bt_objects
37
38 dist_noinst_SCRIPTS = $(SCRIPT_LIST)
39
40 all-local:
41 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
42 for script in $(SCRIPT_LIST); do \
43 cp -f $(srcdir)/$$script $(builddir); \
44 done; \
45 fi
46
47 clean-local:
48 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
49 for script in $(SCRIPT_LIST); do \
50 rm -f $(builddir)/$$script; \
51 done; \
52 fi
This page took 0.031246 seconds and 5 git commands to generate.