2010-01-22 02:59:17 +08:00
|
|
|
EXTRA_DIST = run
|
|
|
|
|
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-02-17 16:10:53 +08:00
|
|
|
test_equal \
|
2009-12-15 05:01:36 +08:00
|
|
|
test_load \
|
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
|
2009-10-27 23:46:57 +08:00
|
|
|
test_load_SOURCES = test_load.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
|
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src
|
|
|
|
AM_CFLAGS = -Wall -Werror
|
|
|
|
LDFLAGS = -static # for speed and Valgrind
|
2009-12-15 05:01:36 +08:00
|
|
|
LDADD = $(top_builddir)/src/libjansson.la
|