-
Notifications
You must be signed in to change notification settings - Fork 51
/
Makefile.am
49 lines (38 loc) · 863 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
43
44
45
46
47
48
49
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 \
t/conf/mime.types \
t/conf/modules.conf \
src/*.lo \
src/*.slo \
src/*.o \
src/*.so \
src/.libs/*.so
CLEANDIRECTORIES = \
t/logs \
src/.libs
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