automake: include all needed files into "make dist" target.

This commit is contained in:
Andrei Belov 2016-07-06 07:49:45 +03:00 committed by Felipe Zimmerle
parent ee9f3ebc59
commit 649365481f
No known key found for this signature in database
GPG Key ID: E6DFB08CE8B11277
3 changed files with 26 additions and 1 deletions

View File

@ -4,3 +4,9 @@ libinjection_la_SOURCES = \
libinjection/src/libinjection_html5.c \
libinjection/src/libinjection_sqli.c \
libinjection/src/libinjection_xss.c
pkginclude_HEADERS = libinjection/src/libinjection.h \
libinjection/src/libinjection_html5.h \
libinjection/src/libinjection_sqli.h \
libinjection/src/libinjection_sqli_data.h \
libinjection/src/libinjection_xss.h

View File

@ -41,7 +41,20 @@ pkginclude_HEADERS = \
../headers/modsecurity/modsecurity.h \
../headers/modsecurity/rule.h \
../headers/modsecurity/rules.h \
../headers/modsecurity/rules_properties.h
../headers/modsecurity/rules_properties.h \
actions/*.h \
actions/transformations/*.h \
audit_log/*.h \
audit_log/writer/*.h \
collection/backend/*.h \
operators/*.h \
parser/*.h \
request_body_processor/*.h \
utils/*.h \
utils/mbedtls/*.h \
variables/*.h \
variables/variations/*.h \
*.h
libmodsecurity_includesub_HEADERS = \

View File

@ -25,9 +25,15 @@ noinst_PROGRAMS =
noinst_PROGRAMS += unit_tests
unit_tests_SOURCES = \
common/modsecurity_test.cc \
unit/unit.cc \
unit/unit_test.cc
pkginclude_HEADERS = \
common/*.h \
unit/*.h \
regression/*.h
unit_tests_LDADD = \
$(GLOBAL_LDADD) \
$(top_builddir)/src/.libs/libmodsecurity.a \