Commit | Line | Data |
---|---|---|
1833a3d1 | 1 | AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/tests/utils |
aa968dde YB |
2 | |
3 | noinst_LIBRARIES = libtestcommon.a | |
4 | ||
1833a3d1 | 5 | LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la |
aa968dde | 6 | |
1833a3d1 CB |
7 | libtestcommon_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. | |
203d6b31 | 12 | test_seek_LDFLAGS = $(LD_NO_AS_NEEDED) |
6b31ae9c | 13 | test_seek_LDADD = $(LIBTAP) libtestcommon.a \ |
aa968dde YB |
14 | $(top_builddir)/lib/libbabeltrace.la \ |
15 | $(top_builddir)/formats/ctf/libbabeltrace-ctf.la | |
16 | ||
1833a3d1 | 17 | test_bitfield_LDADD = $(LIBTAP) libtestcommon.a |
9e8e57d0 | 18 | |
39d74371 JG |
19 | test_ctf_writer_LDADD = $(LIBTAP) \ |
20 | $(top_builddir)/lib/libbabeltrace.la \ | |
21 | $(top_builddir)/formats/ctf/libbabeltrace-ctf.la | |
22 | ||
23 | noinst_PROGRAMS = test_seek test_bitfield test_ctf_writer | |
aa968dde | 24 | |
6b31ae9c CB |
25 | test_seek_SOURCES = test_seek.c |
26 | test_bitfield_SOURCES = test_bitfield.c | |
39d74371 | 27 | test_ctf_writer_SOURCES = test_ctf_writer.c |
aa968dde | 28 | |
ea24dd7b MD |
29 | SCRIPT_LIST = test_seek_big_trace \ |
30 | test_seek_empty_packet \ | |
31 | test_ctf_writer_complete | |
15553d19 | 32 | |
c3a1997e AB |
33 | if ENABLE_DEBUGINFO |
34 | test_dwarf_LDFLAGS = -static | |
35 | test_dwarf_LDADD = $(LIBTAP) \ | |
36 | $(top_builddir)/lib/libbabeltrace.la \ | |
37 | $(top_builddir)/lib/libdebuginfo.la | |
38 | test_dwarf_SOURCES = test_dwarf.c | |
39 | ||
394fd13b AB |
40 | test_so_info_LDFLAGS = -static |
41 | test_so_info_LDADD = $(LIBTAP) \ | |
42 | $(top_builddir)/lib/libbabeltrace.la \ | |
43 | $(top_builddir)/lib/libdebuginfo.la | |
44 | test_so_info_SOURCES = test_so_info.c | |
45 | ||
46 | noinst_PROGRAMS += test_dwarf test_so_info | |
47 | SCRIPT_LIST += test_dwarf_complete test_so_info_complete | |
c3a1997e AB |
48 | endif |
49 | ||
15553d19 MD |
50 | dist_noinst_SCRIPTS = $(SCRIPT_LIST) |
51 | ||
52 | all-local: | |
53 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
54 | for script in $(SCRIPT_LIST); do \ | |
55 | cp -f $(srcdir)/$$script $(builddir); \ | |
56 | done; \ | |
57 | fi | |
58 | ||
59 | clean-local: | |
60 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
61 | for script in $(SCRIPT_LIST); do \ | |
62 | rm -f $(builddir)/$$script; \ | |
63 | done; \ | |
64 | fi |