test: Add Makefile.am to test/testprogs

This way it's an individual subdirectory and things go easier.
This commit is contained in:
Petri Lehtinen 2009-08-25 21:23:16 +03:00
parent 6e17271fa9
commit bf0d383961
3 changed files with 14 additions and 3 deletions

View File

@ -23,5 +23,6 @@ AC_CONFIG_FILES([
doc/Makefile doc/Makefile
src/Makefile src/Makefile
test/Makefile test/Makefile
test/testprogs/Makefile
]) ])
AC_OUTPUT AC_OUTPUT

View File

@ -1,6 +1,6 @@
check_PROGRAMS = \ SUBDIRS = testprogs
loadf_dumpf loads_dumps load_file_dump_file \
testprogs/test_array testprogs/test_number testprogs/test_object check_PROGRAMS = loadf_dumpf loads_dumps load_file_dump_file
AM_CPPFLAGS = -I$(top_srcdir)/src AM_CPPFLAGS = -I$(top_srcdir)/src
AM_CFLAGS = -Wall -Werror AM_CFLAGS = -Wall -Werror

View File

@ -0,0 +1,10 @@
check_PROGRAMS = test_array test_number test_object
test_array_SOURCES = test_array.c util.h
test_number_SOURCES = test_number.c util.h
test_object_SOURCES = test_number.c util.h
AM_CPPFLAGS = -I$(top_srcdir)/src
AM_CFLAGS = -Wall -Werror
LDFLAGS = -static # for speed and Valgrind
LDADD = ../../src/libjansson.la