2012-02-12 22:05:27 +08:00
|
|
|
EXTRA_DIST = run check-exports
|
2010-01-22 02:59:17 +08:00
|
|
|
|
2009-12-15 05:01:36 +08:00
|
|
|
check_PROGRAMS = \
|
|
|
|
test_array \
|
2009-12-31 21:56:28 +08:00
|
|
|
test_copy \
|
2010-05-12 20:41:09 +08:00
|
|
|
test_dump \
|
2011-06-25 01:40:20 +08:00
|
|
|
test_dump_callback \
|
2011-02-17 16:10:53 +08:00
|
|
|
test_equal \
|
2009-12-15 05:01:36 +08:00
|
|
|
test_load \
|
2011-04-11 01:54:52 +08:00
|
|
|
test_loadb \
|
2012-03-21 16:34:14 +08:00
|
|
|
test_load_callback \
|
2011-02-17 16:10:53 +08:00
|
|
|
test_memory_funcs \
|
2009-12-15 05:01:36 +08:00
|
|
|
test_number \
|
2010-10-26 07:36:29 +08:00
|
|
|
test_object \
|
|
|
|
test_pack \
|
2011-02-17 16:10:53 +08:00
|
|
|
test_simple \
|
2010-10-26 07:36:29 +08:00
|
|
|
test_unpack
|
2009-08-26 02:23:16 +08:00
|
|
|
|
|
|
|
test_array_SOURCES = test_array.c util.h
|
2009-12-31 21:56:28 +08:00
|
|
|
test_copy_SOURCES = test_copy.c util.h
|
2010-05-12 20:41:09 +08:00
|
|
|
test_dump_SOURCES = test_dump.c util.h
|
2011-06-25 01:40:20 +08:00
|
|
|
test_dump_callback_SOURCES = test_dump_callback.c util.h
|
2009-10-27 23:46:57 +08:00
|
|
|
test_load_SOURCES = test_load.c util.h
|
2011-04-11 01:54:52 +08:00
|
|
|
test_loadb_SOURCES = test_loadb.c util.h
|
2011-02-17 16:10:53 +08:00
|
|
|
test_memory_funcs_SOURCES = test_memory_funcs.c util.h
|
2009-08-26 02:23:16 +08:00
|
|
|
test_number_SOURCES = test_number.c util.h
|
2009-10-11 03:54:05 +08:00
|
|
|
test_object_SOURCES = test_object.c util.h
|
2010-10-26 07:36:29 +08:00
|
|
|
test_pack_SOURCES = test_pack.c util.h
|
2011-02-17 16:10:53 +08:00
|
|
|
test_simple_SOURCES = test_simple.c util.h
|
2010-10-26 07:36:29 +08:00
|
|
|
test_unpack_SOURCES = test_unpack.c util.h
|
2009-08-26 02:23:16 +08:00
|
|
|
|
2012-10-26 19:51:59 +08:00
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src
|
2009-08-26 02:23:16 +08:00
|
|
|
LDFLAGS = -static # for speed and Valgrind
|
2009-12-15 05:01:36 +08:00
|
|
|
LDADD = $(top_builddir)/src/libjansson.la
|