Tests: Add CTF-IR reference counting test
[babeltrace.git] / tests / lib / Makefile.am
CommitLineData
1833a3d1 1AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/tests/utils
aa968dde
YB
2
3noinst_LIBRARIES = libtestcommon.a
4
1833a3d1 5LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
aa968dde 6
1833a3d1
CB
7libtestcommon_a_SOURCES = common.c common.h
8
c0903f87
MD
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.
f0d8d709 12test_seek_LDFLAGS = $(LD_NO_AS_NEEDED)
6b31ae9c 13test_seek_LDADD = $(LIBTAP) libtestcommon.a \
aa968dde
YB
14 $(top_builddir)/lib/libbabeltrace.la \
15 $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
16
1833a3d1 17test_bitfield_LDADD = $(LIBTAP) libtestcommon.a
9e8e57d0 18
39d74371
JG
19test_ctf_writer_LDADD = $(LIBTAP) \
20 $(top_builddir)/lib/libbabeltrace.la \
21 $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
22
dac5c838 23test_bt_values_LDADD = $(LIBTAP) \
4f29b187
PP
24 $(top_builddir)/lib/libbabeltrace.la
25
c9b3f44b
JG
26test_ctf_ir_ref_LDADD = $(LIBTAP) \
27 $(top_builddir)/lib/libbabeltrace.la \
28 $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
29
30noinst_PROGRAMS = test_seek test_bitfield test_ctf_writer test_bt_values \
31 test_ctf_ir_ref
aa968dde 32
6b31ae9c
CB
33test_seek_SOURCES = test_seek.c
34test_bitfield_SOURCES = test_bitfield.c
39d74371 35test_ctf_writer_SOURCES = test_ctf_writer.c
dac5c838 36test_bt_values_SOURCES = test_bt_values.c
c9b3f44b 37test_ctf_ir_ref_SOURCES = test_ctf_ir_ref.c
aa968dde 38
ea24dd7b
MD
39SCRIPT_LIST = test_seek_big_trace \
40 test_seek_empty_packet \
d3f6fcac 41 test_ctf_writer_complete
15553d19
MD
42
43dist_noinst_SCRIPTS = $(SCRIPT_LIST)
44
45all-local:
46 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
47 for script in $(SCRIPT_LIST); do \
48 cp -f $(srcdir)/$$script $(builddir); \
49 done; \
50 fi
51
52clean-local:
53 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
54 for script in $(SCRIPT_LIST); do \
55 rm -f $(builddir)/$$script; \
56 done; \
57 fi
This page took 0.030508 seconds and 4 git commands to generate.