diff options
author | Wojtek Kosior <koszko@koszko.org> | 2021-08-09 12:31:46 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2021-08-09 12:31:46 +0200 |
commit | 04dd518e8318b81ed253caf97d33eaa3c7b34450 (patch) | |
tree | 6c79b18782bcfbd99e4b0eae5b6609558700c0fe | |
parent | 97137bc2eb236dfd023ce4e02d2fde216b2370c6 (diff) | |
download | hydrilla-04dd518e8318b81ed253caf97d33eaa3c7b34450.tar.gz hydrilla-04dd518e8318b81ed253caf97d33eaa3c7b34450.zip |
include headers in distribution tarball
-rw-r--r-- | src/Makefile.am | 5 | ||||
-rw-r--r-- | src/Makefile.in | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 9d3da43..eef89a0 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -6,5 +6,8 @@ hydrilla_SOURCES = \ scriptbase_json_query.c \ scriptbase_query.c \ serve.c \ - string_buf.c + string_buf.c \ + hashtable.h \ + scriptbase.h \ + string_buf.h hydrilla_LDFLAGS = -lmicrohttpd -lcjson diff --git a/src/Makefile.in b/src/Makefile.in index 9837951..8faefa7 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -260,7 +260,10 @@ hydrilla_SOURCES = \ scriptbase_json_query.c \ scriptbase_query.c \ serve.c \ - string_buf.c + string_buf.c \ + hashtable.h \ + scriptbase.h \ + string_buf.h hydrilla_LDFLAGS = -lmicrohttpd -lcjson all: all-am |