File: Makefile.am

package info (click to toggle)
modsecurity-apache 2.9.7-1%2Bdeb12u1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 10,440 kB
  • sloc: ansic: 51,935; sh: 4,516; perl: 2,340; cpp: 1,930; makefile: 620; xml: 6
file content (52 lines) | stat: -rw-r--r-- 1,209 bytes parent folder | download | duplicates (10)
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
50
51
52
ACLOCAL_AMFLAGS = -I build
SUBDIRS = @TOPLEVEL_SUBDIRS@ tests

CLEANFILES =
MAINTAINERCLEANFILES =

CLEANFILES += tests/regression/server_root/conf/*.t_*.conf \
    tests/regression/server_root/logs/*.log

MAINTAINERCLEANFILES += $(CLEANFILES) \
    aclocal.m4 \
    alp2/Makefile.in \
    apache2/Makefile.in \
    build/config.guess \
    build/config.sub \
    build/depcomp \
    build/libtool.m4 \
    build/ltmain.sh \
    build/lt~obsolete.m4 \
    build/ltoptions.m4 \
    build/ltsugar.m4 \
    build/ltversion.m4 \
    build/missing \
    config.log \
    config.status \
    configure \
    ext/Makefile.in \
    Makefile \
    Makefile.in \
    mlogc/Makefile.in \
    modsecurity_config_auto.h.in~

test: check

test-regression:
	(cd tests && $(MAKE) test-regression)

test-regression-nginx:
	(cd tests && $(MAKE) test-regression-nginx)


cppcheck:
	cppcheck . --enable=all --force 2>&1 | sed 's/^/warning: /g' 1>&2;

check-coding-style:
	for i in `(find . -iname "*.c" ; find . -iname "*.h")`; \
	    do echo $$i...; \
	    vera++ -rule L004 -param max-line-length=80 $$i 2>&1 | sed 's/^/warning: /g' 1>&2; \
	    vera++ -rule L001 $$i 2>&1 | sed 's/^/warning: /g' 1>&2; \
	done; 

.PHONY: test