Skip to content

Commit a69cc76

Browse files
committed
Include header files in dist
Signed-off-by: Casey Dahlin <[email protected]>
1 parent ac8382a commit a69cc76

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([libason], [0.1], [[email protected]])
1+
AC_INIT([libason], [0.1.1], [[email protected]])
22
AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability foreign
33
parallel-tests subdir-objects])
44
AM_EXTRA_RECURSIVE_TARGETS([valgrind])

src/Makefile.am

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,20 @@ AM_CFLAGS = --std=gnu99 -Wall -Wextra -D_GNU_SOURCE -fvisibility=hidden $(lcov_C
66
lib_LTLIBRARIES = libason.la
77
libason_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+
1623
MOSTLYCLEANFILES = parse.c parse.h parse.out *.gcda *.gcno *.gcov *.gcov_report
1724

1825
if BUILD_ASONQ

tests/Makefile.am

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ MOSTLYCLEANFILES=*.gcda *.gcno *.gcov *.valgrind
2020
.PHONY: valgrind-local
2121
valgrind-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
2424
parser_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
2727
print_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
3030
iterator_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
3333
ns_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
3636
value_test_LDADD = ../src/libason.la
3737
value_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

0 commit comments

Comments
 (0)