Commit | Line | Data |
---|---|---|
aa968dde YB |
1 | AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include |
2 | ||
3 | noinst_LIBRARIES = libtestcommon.a | |
4 | ||
beb875e1 | 5 | libtestcommon_a_SOURCES = tap.c tap.h common.c common.h |
aa968dde YB |
6 | |
7 | test_seeks_LDADD = libtestcommon.a \ | |
8 | $(top_builddir)/lib/libbabeltrace.la \ | |
9 | $(top_builddir)/formats/ctf/libbabeltrace-ctf.la | |
10 | ||
9e8e57d0 JG |
11 | test_bitfield_LDADD = libtestcommon.a |
12 | ||
ffb12bdc | 13 | noinst_PROGRAMS = test-seeks test-bitfield |
aa968dde YB |
14 | |
15 | test_seeks_SOURCES = test-seeks.c | |
ffb12bdc | 16 | test_bitfield_SOURCES = test-bitfield.c |
aa968dde | 17 | |
0cf14365 | 18 | EXTRA_DIST = README.tap runall.sh |
beb875e1 | 19 | |
aa968dde YB |
20 | check-am: |
21 | ./runall.sh |