58c31c63fb8fdbf1d3759da72856b3a8c22fcbf3
[jansson.git] / test / suites / api / Makefile.am
1 EXTRA_DIST = run
2
3 check_PROGRAMS = \
4         test_array \
5         test_copy \
6         test_dump \
7         test_equal \
8         test_load \
9         test_loadb \
10         test_memory_funcs \
11         test_number \
12         test_object \
13         test_pack \
14         test_simple \
15         test_unpack
16
17 test_array_SOURCES = test_array.c util.h
18 test_copy_SOURCES = test_copy.c util.h
19 test_dump_SOURCES = test_dump.c util.h
20 test_load_SOURCES = test_load.c util.h
21 test_loadb_SOURCES = test_loadb.c util.h
22 test_memory_funcs_SOURCES = test_memory_funcs.c util.h
23 test_number_SOURCES = test_number.c util.h
24 test_object_SOURCES = test_object.c util.h
25 test_pack_SOURCES = test_pack.c util.h
26 test_simple_SOURCES = test_simple.c util.h
27 test_unpack_SOURCES = test_unpack.c util.h
28
29 AM_CPPFLAGS = -I$(top_srcdir)/src
30 AM_CFLAGS = -Wall -Werror
31 LDFLAGS = -static  # for speed and Valgrind
32 LDADD = $(top_builddir)/src/libjansson.la