mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-12 21:06:01 +03:00
198 lines
3.1 KiB
Makefile
198 lines
3.1 KiB
Makefile
|
|
if AFL_FUZZER
|
|
export MAYBE_AFL_FUZZER = fuzzer
|
|
endif
|
|
|
|
|
|
SUBDIRS = \
|
|
benchmark \
|
|
$(MAYBE_AFL_FUZZER)
|
|
|
|
|
|
# make clean
|
|
CLEANFILES =
|
|
|
|
# make maintainer-clean
|
|
MAINTAINERCLEANFILES = \
|
|
Makefile.in
|
|
|
|
|
|
bin_PROGRAMS =
|
|
noinst_PROGRAMS =
|
|
|
|
EXTRA_DIST = \
|
|
test-cases/* \
|
|
custom-test-driver \
|
|
test-suite.sh
|
|
|
|
|
|
# unit_tests
|
|
|
|
noinst_PROGRAMS += unit_tests
|
|
unit_tests_SOURCES = \
|
|
unit/unit.cc \
|
|
unit/unit_test.cc \
|
|
common/custom_debug_log.cc
|
|
|
|
|
|
noinst_HEADERS = \
|
|
common/modsecurity_test.cc \
|
|
common/*.h \
|
|
unit/*.h \
|
|
regression/*.h
|
|
|
|
|
|
unit_tests_LDADD = \
|
|
$(CURL_LDADD) \
|
|
$(GEOIP_LDADD) \
|
|
$(MAXMIND_LDADD) \
|
|
$(GLOBAL_LDADD) \
|
|
$(LIBXML2_LDADD) \
|
|
$(LMDB_LDADD) \
|
|
$(LUA_LDADD) \
|
|
$(PCRE_LDADD) \
|
|
$(PCRE2_LDADD) \
|
|
$(SSDEEP_LDADD) \
|
|
$(YAJL_LDADD)
|
|
|
|
|
|
unit_tests_LDFLAGS = \
|
|
-L$(top_builddir)/src/.libs/ \
|
|
$(GEOIP_LDFLAGS) \
|
|
-lmodsecurity \
|
|
-lpthread \
|
|
-lm \
|
|
-lstdc++ \
|
|
$(MAXMIND_LDFLAGS) \
|
|
$(LMDB_LDFLAGS) \
|
|
$(LUA_LDFLAGS) \
|
|
$(SSDEEP_LDFLAGS) \
|
|
$(YAJL_LDFLAGS)
|
|
|
|
|
|
unit_tests_CPPFLAGS = \
|
|
-Icommon \
|
|
-I$(srcdir)/../ \
|
|
-g \
|
|
-I$(top_builddir)/headers \
|
|
$(CURL_CFLAGS) \
|
|
$(MODSEC_NO_LOGS) \
|
|
$(GEOIP_CFLAGS) \
|
|
$(MAXMIND_CFLAGS) \
|
|
$(GLOBAL_CPPFLAGS) \
|
|
$(LMDB_CFLAGS) \
|
|
$(PCRE_CFLAGS) \
|
|
$(PCRE2_CFLAGS) \
|
|
$(YAJL_CFLAGS) \
|
|
$(LUA_CFLAGS) \
|
|
$(SSDEEP_CFLAGS) \
|
|
$(LIBXML2_CFLAGS)
|
|
|
|
|
|
# regression
|
|
|
|
noinst_PROGRAMS += regression_tests
|
|
regression_tests_SOURCES = \
|
|
regression/regression.cc \
|
|
regression/regression_test.cc \
|
|
common/custom_debug_log.cc
|
|
|
|
regression_tests_LDADD = \
|
|
$(CURL_LDADD) \
|
|
$(GEOIP_LDADD) \
|
|
$(MAXMIND_LDADD) \
|
|
$(GLOBAL_LDADD) \
|
|
$(LIBXML2_LDADD) \
|
|
$(LMDB_LDADD) \
|
|
$(LUA_LDADD) \
|
|
$(PCRE_LDADD) \
|
|
$(PCRE2_LDADD) \
|
|
$(SSDEEP_LDADD) \
|
|
$(YAJL_LDADD)
|
|
|
|
|
|
regression_tests_LDFLAGS = \
|
|
-L$(top_builddir)/src/.libs/ \
|
|
$(GEOIP_LDFLAGS) \
|
|
-lmodsecurity \
|
|
-lpthread \
|
|
-lm \
|
|
-lstdc++ \
|
|
$(MAXMIND_LDFLAGS) \
|
|
$(YAJL_LDFLAGS) \
|
|
$(LMDB_LDFLAGS) \
|
|
$(SSDEEP_LDFLAGS) \
|
|
$(LUA_LDFLAGS)
|
|
|
|
|
|
regression_tests_CPPFLAGS = \
|
|
-Icommon \
|
|
-I$(srcdir)../ \
|
|
-g \
|
|
-I$(top_builddir)/headers \
|
|
$(CURL_CFLAGS) \
|
|
$(MODSEC_NO_LOGS) \
|
|
$(GEOIP_CFLAGS) \
|
|
$(MAXMIND_CFLAGS) \
|
|
$(GLOBAL_CPPFLAGS) \
|
|
$(LMDB_CFLAGS) \
|
|
$(LUA_CFLAGS) \
|
|
$(SSDEEP_CFLAGS) \
|
|
$(PCRE_CFLAGS) \
|
|
$(PCRE2_CFLAGS) \
|
|
$(YAJL_CFLAGS) \
|
|
$(LIBXML2_CFLAGS)
|
|
|
|
|
|
# optimization
|
|
|
|
|
|
noinst_PROGRAMS += rules_optimization
|
|
rules_optimization_SOURCES = \
|
|
optimization/optimization.cc
|
|
|
|
rules_optimization_LDADD = \
|
|
$(CURL_LDADD) \
|
|
$(GEOIP_LDADD) \
|
|
$(MAXMIND_LDADD) \
|
|
$(GLOBAL_LDADD) \
|
|
$(LIBXML2_LDADD) \
|
|
$(LMDB_LDADD) \
|
|
$(LUA_LDADD) \
|
|
$(PCRE_LDADD) \
|
|
$(PCRE2_LDADD) \
|
|
$(SSDEEP_LDADD) \
|
|
$(YAJL_LDADD)
|
|
|
|
rules_optimization_LDFLAGS = \
|
|
-L$(top_builddir)/src/.libs/ \
|
|
$(GEOIP_LDFLAGS) \
|
|
-lmodsecurity \
|
|
-lpthread \
|
|
-lm \
|
|
-lstdc++ \
|
|
$(MAXMIND_LDFLAGS) \
|
|
$(LMDB_LDFLAGS) \
|
|
$(LUA_LDFLAGS) \
|
|
$(SSDEEP_LDFLAGS) \
|
|
$(YAJL_LDFLAGS)
|
|
|
|
rules_optimization_CPPFLAGS = \
|
|
-Icommon \
|
|
-I$(srcdir)/../ \
|
|
-g \
|
|
-I$(top_builddir)/headers \
|
|
$(CURL_CFLAGS) \
|
|
$(MODSEC_NO_LOGS) \
|
|
$(GEOIP_CFLAGS) \
|
|
$(MAXMIND_CFLAGS) \
|
|
$(GLOBAL_CPPFLAGS) \
|
|
$(LMDB_CFLAGS) \
|
|
$(LUA_CFLAGS) \
|
|
$(SSDEEP_CFLAGS) \
|
|
$(PCRE_CFLAGS) \
|
|
$(PCRE2_CFLAGS) \
|
|
$(YAJL_CFLAGS) \
|
|
$(LIBXML2_CFLAGS)
|
|
|