mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
25 lines
377 B
Makefile
25 lines
377 B
Makefile
|
|
|
|
bin_PROGRAMS = benchmark
|
|
|
|
benchmark_SOURCES = \
|
|
benchmark.cc
|
|
|
|
benchmark_LDADD = \
|
|
-lrt \
|
|
$(top_builddir)/src/.libs/libmodsecurity.a \
|
|
$(CURL_LDADD) \
|
|
$(GEOIP_LDFLAGS) $(GEOIP_LDADD) \
|
|
$(PCRE_LDADD) \
|
|
$(YAJL_LDFLAGS) $(YAJL_LDADD)
|
|
|
|
benchmark_CPPFLAGS = \
|
|
-std=c++11 \
|
|
-I$(top_builddir)/headers \
|
|
$(PCRE_CFLAGS)
|
|
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
Makefile.in
|
|
|