forked from owasp-modsecurity/ModSecurity-apache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
42 lines (32 loc) · 764 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
ACLOCAL_AMFLAGS = -I build
MAINTAINERCLEANFILES = \
config.log \
Makefile.in \
aclocal.m4 \
compile \
configure \
install-sh \
missing \
modsec-shared-collections \
modsec-shared-collections-lock
CLEANFILES = \
t/logs/* \
t/htdocs/index.html \
t/conf/extra.conf \
t/conf/httpd.conf \
t/conf/apache_test_config.pm \
t/conf/httpd.conf \
src/*.lo \
src/*.slo
CLEANDIRECTORIES = \
t/logs
all:
chmod +x build/apxs-wrapper
build/apxs-wrapper
test:
cd t/ && ./TEST -clean
cd t/ && ./TEST -configure
cd t/ && ./TEST -httpd_conf conf/httpd.conf -httpd @APACHE@ -apxs @APXS@
install-exec-hook: $(pkglib_LTLIBRARIES)
@APXS@ -i -n mod_security3 ./src/.libs/mod_security3.so
.PHONY: all