From: Nick Bowler Date: Mon, 29 May 2023 00:43:52 +0000 (-0400) Subject: Ensure all headers are distributed. X-Git-Tag: v1.3~173 X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/commitdiff_plain/646b0098e58c1deef39ed4d4c142503e427c0553 Ensure all headers are distributed. The copysym.h and xtra.h files need to be listed as a source file somewhere otherwise the distribution will not include them. Fix that up. --- diff --git a/Makefile.am b/Makefile.am index e9a16fc..b8749b4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,7 +30,7 @@ EXTRA_DIST = bootstrap $(DX_BASEDIR)/scripts/fix-gnulib.pl m4/gnulib-cache.m4 \ dist_man_MANS = doc/cdecl99.1 doc/libcdecl.3 include_HEADERS = src/cdecl.h -noinst_HEADERS = conf_pre.h conf_post.h common/src/help.h \ +noinst_HEADERS = conf_pre.h conf_post.h common/src/help.h common/src/xtra.h \ src/scan.h src/parse.h test/declgen.h test/test.h noinst_DATA = $(MOFILES) @@ -69,7 +69,7 @@ cdecl99_LDADD = $(libmain_a_OBJECTS) $(libexec_a_OBJECTS) libcdecl.la \ $(cdecl99_OBJECTS): $(gnulib_headers) if USE_NLS -cdecl99_SOURCES += common/src/copysym.c +cdecl99_SOURCES += common/src/copysym.c common/src/copysym.h endif EXTRA_LIBRARIES += libexec.a