mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-13 21:36:00 +03:00
32 lines
407 B
Makefile
32 lines
407 B
Makefile
|
|
|
|
noinst_PROGRAMS = test
|
|
|
|
test_SOURCES = \
|
|
test.c
|
|
|
|
test_LDADD = \
|
|
$(GLOBAL_LDADD) \
|
|
$(LUA_LDADD) \
|
|
$(SSDEEP_LDADD)
|
|
|
|
test_LDFLAGS = \
|
|
-L$(top_builddir)/src/.libs/ \
|
|
$(GEOIP_LDFLAGS) \
|
|
-lmodsecurity \
|
|
-lm \
|
|
-lstdc++ \
|
|
$(LUA_LDFLAGS) \
|
|
$(SSDEEP_LDFLAGS) \
|
|
$(YAJL_LDFLAGS)
|
|
|
|
test_CFLAGS = \
|
|
-I$(top_builddir)/headers \
|
|
-I$(top_builddir) \
|
|
$(GLOBAL_CFLAGS)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
Makefile.in
|
|
|
|
|