File tree Expand file tree Collapse file tree 3 files changed +15
-8
lines changed
Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 1- AC_INIT ( [ libason] ,
[ 0.1] ,
[ [email protected] ] ) 1+ AC_INIT ( [ libason] ,
[ 0.1.1 ] ,
[ [email protected] ] ) 22AM_INIT_AUTOMAKE ( [ -Wall -Werror -Wno-portability foreign
33 parallel-tests subdir-objects] )
44AM_EXTRA_RECURSIVE_TARGETS([ valgrind] )
Original file line number Diff line number Diff line change @@ -6,13 +6,20 @@ AM_CFLAGS = --std=gnu99 -Wall -Wextra -D_GNU_SOURCE -fvisibility=hidden $(lcov_C
66lib_LTLIBRARIES = libason.la
77libason_la_SOURCES = \
88 value.c \
9+ value.h \
910 output.c \
1011 iter.c \
12+ iter.h \
1113 stringfunc.c \
14+ stringfunc.h \
1215 namespace.c \
1316 namespace_ram.c \
1417 crc.c \
15- parse.c
18+ crc.h \
19+ util.h \
20+ parse.c \
21+ parse.h
22+
1623MOSTLYCLEANFILES = parse.c parse.h parse.out *.gcda *.gcno *.gcov *.gcov_report
1724
1825if BUILD_ASONQ
Original file line number Diff line number Diff line change @@ -20,21 +20,21 @@ MOSTLYCLEANFILES=*.gcda *.gcno *.gcov *.valgrind
2020.PHONY : valgrind-local
2121valgrind-local : $(patsubst % ,% .valgrind,$(TESTS ) )
2222
23- parser_test_SOURCES = parser_test.c harness.c
23+ parser_test_SOURCES = parser_test.c harness.c harness.h
2424parser_test_LDADD = ../src/libason.la
2525
26- print_object_SOURCES = print_object.c harness.c
26+ print_object_SOURCES = print_object.c harness.c harness.h
2727print_object_LDADD = ../src/libason.la
2828
29- iterator_test_SOURCES = iterator_test.c harness.c
29+ iterator_test_SOURCES = iterator_test.c harness.c harness.h
3030iterator_test_LDADD = ../src/libason.la
3131
32- ns_test_SOURCES = ns_test.c harness.c
32+ ns_test_SOURCES = ns_test.c harness.c harness.h
3333ns_test_LDADD = ../src/libason.la
3434
35- value_test_SOURCES = value_test.c harness.c
35+ value_test_SOURCES = value_test.c harness.c harness.h
3636value_test_LDADD = ../src/libason.la
3737value_test_CFLAGS = -Wno-uninitialized
3838
39- crc_test_SOURCES = crc_test.c harness.c \
39+ crc_test_SOURCES = crc_test.c harness.c harness.h \
4040 ../src/crc.c ../src/crc.h
You can’t perform that action at this time.
0 commit comments