mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
24 lines
295 B
Makefile
24 lines
295 B
Makefile
|
|
|
|
bin_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
|
|
|
|
|