File: Makefile.am

package info (click to toggle)
modsecurity-apache 2.9.11-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 10,436 kB
  • sloc: ansic: 53,590; sh: 5,249; perl: 2,340; cpp: 1,930; makefile: 618; xml: 6
file content (88 lines) | stat: -rw-r--r-- 2,164 bytes parent folder | download
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
check_PROGRAMS = msc_test
msc_test_SOURCES = msc_test.c \
    ../apache2/acmp.c \
    ../apache2/libinjection/libinjection_html5.c \
    ../apache2/libinjection/libinjection_sqli.c \
    ../apache2/libinjection/libinjection_xss.c \
    ../apache2/modsecurity.c \
    ../apache2/msc_status_engine.c \
    ../apache2/msc_remote_rules.c \
    ../apache2/msc_crypt.c \
    ../apache2/msc_geo.c \
    ../apache2/msc_gsb.c \
    ../apache2/msc_json.c \
    ../apache2/msc_logging.c \
    ../apache2/msc_lua.c \
    ../apache2/msc_multipart.c \
    ../apache2/msc_parsers.c \
    ../apache2/msc_pcre.c \
    ../apache2/msc_release.c \
    ../apache2/msc_reqbody.c \
    ../apache2/msc_tree.c \
    ../apache2/msc_unicode.c \
    ../apache2/msc_util.c \
    ../apache2/msc_xml.c \
    ../apache2/persist_dbm.c \
    ../apache2/re_actions.c \
    ../apache2/re.c \
    ../apache2/re_operators.c \
    ../apache2/re_tfns.c \
    ../apache2/re_variables.c \
    ../standalone/regex.c \
    ../standalone/server.c \
    ../standalone/config.c

msc_test_CFLAGS = @APR_CFLAGS@ \
    @APU_CFLAGS@ \
    @APXS_CFLAGS@ \
    @CURL_CFLAGS@ \
    @LIBXML2_CFLAGS@ \
    @LUA_CFLAGS@ \
    @MODSEC_EXTRA_CFLAGS@ \
    @PCRE_CFLAGS@ \
    @PCRE2_CFLAGS@ \
    @YAJL_CFLAGS@ \
    @SSDEEP_CFLAGS@

msc_test_CPPFLAGS = -I$(top_srcdir)/apache2 \
    @APR_CPPFLAGS@ \
    @CURL_CPPFLAGS@ \
    @LIBXML2_CFLAGS@ \
    @LIBXML2_CPPFLAGS@ \
    @PCRE_CPPFLAGS@ \
    @PCRE2_CPPFLAGS@

msc_test_LDADD = @APR_LDADD@ \
    @APU_LDADD@ \
    @CURL_LDADD@ \
    @LIBXML2_CFLAGS@ \
    @LIBXML2_LDADD@ \
    @LUA_LDADD@ \
    @PCRE_LDADD@ \
    @PCRE2_LDADD@ \
    @YAJL_LDADD@ \
    @SSDEEP_CFLAGS@

msc_test_LDFLAGS = @APR_LDFLAGS@ \
    @APU_LDFLAGS@ \
    @APXS_LDFLAGS@ \
    @CURL_LDFLAGS@ \
    @LIBXML2_LDFLAGS@ \
    @LUA_LDFLAGS@ \
    @PCRE_LDFLAGS@ \
    @PCRE2_LDFLAGS@ \
    @YAJL_LDFLAGS@ \
    @SSDEEP_LDFLAGS@

check_SCRIPTS = run-unit-tests.pl
TESTS = $(check_SCRIPTS)

test: check

test-regression: run-regression-tests.pl
	$(PERL) run-regression-tests.pl

test-regression-nginx: run-regression-tests-nginx.pl
	$(PERL) run-regression-tests-nginx.pl

.PHONY: test test-regression