integrate jansson.hpp into build and test suite
[jansson.git] / test / suites / api / Makefile.am
1 check_PROGRAMS = \
2         test_array \
3         test_equal \
4         test_copy \
5         test_load \
6         test_simple \
7         test_number \
8         test_object \
9         test_cpp
10
11 test_array_SOURCES = test_array.c util.h
12 test_copy_SOURCES = test_copy.c util.h
13 test_load_SOURCES = test_load.c util.h
14 test_simple_SOURCES = test_simple.c util.h
15 test_number_SOURCES = test_number.c util.h
16 test_object_SOURCES = test_object.c util.h
17 test_cpp_SOURCES = test_cpp.cpp
18
19 AM_CPPFLAGS = -I$(top_srcdir)/src
20 AM_CFLAGS = -Wall -Werror
21 LDFLAGS = -static  # for speed and Valgrind
22 LDADD = $(top_builddir)/src/libjansson.la