jansson/test/suites/api/Makefile.am

25 lines
582 B
Makefile
Raw Normal View History

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 \
test_copy \
test_dump \
2009-12-15 05:01:36 +08:00
test_load \
test_simple \
test_number \
test_object
test_array_SOURCES = test_array.c util.h
test_copy_SOURCES = test_copy.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
2009-12-15 05:01:36 +08:00
LDADD = $(top_builddir)/src/libjansson.la