aboutsummaryrefslogtreecommitdiff
path: root/test/suites/api/Makefile.am
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2009-12-14 23:01:36 +0200
committerPetri Lehtinen <petri@digip.org>2009-12-16 22:45:29 +0200
commit3add1cf36183d4acefa11ae1c0acd6d92719ac02 (patch)
tree35d78d90d0d5d032d1142968ac81ad4667f28016 /test/suites/api/Makefile.am
parent50031440a3b7ab2623e9468bd20e837250250cd9 (diff)
downloadjansson-3add1cf36183d4acefa11ae1c0acd6d92719ac02.zip
jansson-3add1cf36183d4acefa11ae1c0acd6d92719ac02.tar.gz
jansson-3add1cf36183d4acefa11ae1c0acd6d92719ac02.tar.bz2
Refactor the test system
Diffstat (limited to 'test/suites/api/Makefile.am')
-rw-r--r--test/suites/api/Makefile.am19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/suites/api/Makefile.am b/test/suites/api/Makefile.am
new file mode 100644
index 0000000..ac83ed1
--- /dev/null
+++ b/test/suites/api/Makefile.am
@@ -0,0 +1,19 @@
+check_PROGRAMS = \
+ test_array \
+ test_dump \
+ test_load \
+ test_simple \
+ test_number \
+ test_object
+
+test_array_SOURCES = test_array.c util.h
+test_dump_SOURCES = test_dump.c util.h
+test_load_SOURCES = test_load.c util.h
+test_simple_SOURCES = test_simple.c util.h
+test_number_SOURCES = test_number.c util.h
+test_object_SOURCES = test_object.c util.h
+
+AM_CPPFLAGS = -I$(top_srcdir)/src
+AM_CFLAGS = -Wall -Werror
+LDFLAGS = -static # for speed and Valgrind
+LDADD = $(top_builddir)/src/libjansson.la