mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-13 21:36:00 +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
24 lines
298 B
Makefile
24 lines
298 B
Makefile
|
|
|
|
noinst_PROGRAMS = test
|
|
|
|
test_SOURCES = \
|
|
test.c
|
|
|
|
test_LDADD = \
|
|
-L$(top_builddir)/src/.libs/ \
|
|
-lmodsecurity \
|
|
$(YAJL_LDFLAGS) \
|
|
$(GEOIP_LDFLAGS) \
|
|
$(GLOBAL_LDADD)
|
|
|
|
test_CFLAGS = \
|
|
-I$(top_builddir)/headers \
|
|
-I$(top_builddir) \
|
|
$(GLOBAL_CFLAGS)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
Makefile.in
|
|
|
|
|