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. | |
12 | test_seek_LDFLAGS = -Wl,--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 | |
6b31ae9c | 19 | noinst_PROGRAMS = test_seek test_bitfield |
aa968dde | 20 | |
6b31ae9c CB |
21 | test_seek_SOURCES = test_seek.c |
22 | test_bitfield_SOURCES = test_bitfield.c | |
aa968dde | 23 | |
15553d19 MD |
24 | SCRIPT_LIST = test_seek_big_trace test_seek_empty_packet |
25 | ||
26 | dist_noinst_SCRIPTS = $(SCRIPT_LIST) | |
27 | ||
28 | all-local: | |
29 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
30 | for script in $(SCRIPT_LIST); do \ | |
31 | cp -f $(srcdir)/$$script $(builddir); \ | |
32 | done; \ | |
33 | fi | |
34 | ||
35 | clean-local: | |
36 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
37 | for script in $(SCRIPT_LIST); do \ | |
38 | rm -f $(builddir)/$$script; \ | |
39 | done; \ | |
40 | fi |