mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 05:45:59 +03:00
24 lines
338 B
Makefile
24 lines
338 B
Makefile
|
|
|
|
bin_PROGRAMS = benchmark
|
|
|
|
benchmark_SOURCES = \
|
|
benchmark.cc
|
|
|
|
benchmark_LDADD = \
|
|
$(top_builddir)/src/.libs/libmodsecurity.a \
|
|
$(CURL_LDADD) \
|
|
$(GEOIP_LDADD) \
|
|
$(PCRE_LDADD) \
|
|
$(YAJL_LDADD)
|
|
|
|
benchmark_CPPFLAGS = \
|
|
-std=c++11 \
|
|
-I$(top_builddir)/headers \
|
|
$(PCRE_CPPFLAGS)
|
|
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
Makefile.in
|
|
|