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 23:39:36 +08:00
|
|
|
test_equal \
|
2009-12-31 21:56:28 +08:00
|
|
|
test_copy \
|
2010-05-12 20:41:09 +08:00
|
|
|
test_dump \
|
2009-12-15 05:01:36 +08:00
|
|
|
test_load \
|
|
|
|
test_simple \
|
|
|
|
test_number \
|
|
|
|
test_object
|
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
|
2009-09-06 19:06:02 +08:00
|
|
|
test_simple_SOURCES = test_simple.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
|
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
|