File tree Expand file tree Collapse file tree 3 files changed +24
-18
lines changed Expand file tree Collapse file tree 3 files changed +24
-18
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ src/location.hh
32
32
src /position.hh
33
33
src /stack.hh
34
34
src /stamp-h1
35
+ src /headers.mk
35
36
/test /rules_optimization
36
37
/test /regression_tests
37
38
/test /unit_tests
Original file line number Diff line number Diff line change 2
2
3
3
rm -rf autom4te.cache
4
4
rm -f aclocal.m4
5
+
6
+ cd src
7
+ rm -f headers.mk
8
+ echo " noinst_HEADERS = \\ " > headers.mk
9
+ ls -1 \
10
+ actions/* .h \
11
+ actions/ctl/* .h \
12
+ actions/data/* .h \
13
+ actions/disruptive/* .h \
14
+ actions/transformations/* .h \
15
+ debug_log/* .h \
16
+ audit_log/writer/* .h \
17
+ collection/backend/* .h \
18
+ operators/* .h \
19
+ parser/* .h \
20
+ request_body_processor/* .h \
21
+ utils/* .h \
22
+ variables/* .h \
23
+ engine/* .h \
24
+ * .h | tr " \012" " " >> headers.mk
25
+ cd ../
26
+
5
27
case ` uname` in Darwin* ) glibtoolize --force --copy ;;
6
28
* ) libtoolize --force --copy ;; esac
7
29
autoreconf --install
Original file line number Diff line number Diff line change @@ -66,24 +66,7 @@ libmodsecurity_includesub_collection_HEADERS = \
66
66
libmodsecurity_includesub_actions_HEADERS = \
67
67
../headers/modsecurity/actions/action.h
68
68
69
-
70
- noinst_HEADERS = \
71
- $(wildcard actions/* .h) \
72
- $(wildcard actions/ctl/* .h) \
73
- $(wildcard actions/data/* .h) \
74
- $(wildcard actions/disruptive/* .h) \
75
- $(wildcard actions/transformations/* .h) \
76
- $(wildcard debug_log/* .h) \
77
- $(wildcard audit_log/writer/* .h) \
78
- $(wildcard collection/backend/* .h) \
79
- $(wildcard operators/* .h) \
80
- $(wildcard parser/* .h) \
81
- $(wildcard request_body_processor/* .h) \
82
- $(wildcard utils/* .h) \
83
- $(wildcard variables/* .h) \
84
- $(wildcard engine/* .h) \
85
- $(wildcard * .h)
86
-
69
+ include headers.mk
87
70
88
71
ENGINES = \
89
72
engine/lua.cc
You can’t perform that action at this time.
0 commit comments