mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
Those utilities are not interesting for the general usage, most likekly it will be used by very retrict number of people whom are likely to compile ModSecurity by their selfs. This issue was reported on #1083
38 lines
566 B
Makefile
38 lines
566 B
Makefile
|
|
|
|
# make clean
|
|
CLEANFILES =
|
|
|
|
# make maintainer-clean
|
|
MAINTAINERCLEANFILES = \
|
|
Makefile.in
|
|
|
|
|
|
noinst_PROGRAMS = afl_fuzzer
|
|
|
|
afl_fuzzer_SOURCES = \
|
|
afl_fuzzer.cc
|
|
|
|
afl_fuzzer_LDADD = \
|
|
$(GLOBAL_LDADD) \
|
|
$(top_builddir)/src/.libs/libmodsecurity.a \
|
|
$(CURL_LDADD) \
|
|
$(GEOIP_LDFLAGS) $(GEOIP_LDADD) \
|
|
$(PCRE_LDADD) \
|
|
$(YAJL_LDFLAGS) $(YAJL_LDADD)
|
|
|
|
|
|
afl_fuzzer_CPPFLAGS = \
|
|
-std=c++11 \
|
|
-Icommon \
|
|
-I../ \
|
|
-O0 \
|
|
-g \
|
|
-I$(top_builddir)/headers \
|
|
$(CURL_CFLAGS) \
|
|
$(MODSEC_NO_LOGS) \
|
|
$(GEOIP_CFLAGS) \
|
|
$(GLOBAL_CPPFLAGS) \
|
|
$(PCRE_CFLAGS) \
|
|
$(YAJL_CFLAGS)
|