-
Notifications
You must be signed in to change notification settings - Fork 656
/
Makefile.in
executable file
·302 lines (235 loc) · 10.3 KB
/
Makefile.in
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
@PRO_MAKEFILE_INC@
PKG_CONFIG ?= pkg-config
prefix = @prefix@
datadir = @datadir@
datarootdir = @datarootdir@
SHELL=/bin/sh
OS := $(shell uname -s)
PWD=@PWD@
INSTALL_DIR=$(DESTDIR)$(prefix)
MAN_DIR=$(DESTDIR)@MAN_DIR@
# FreeBSD does not include wget by default, but the base system
# includes fetch, which provides similar functionality.
ifeq ($(OS), $(filter $(OS), FreeBSD))
GET_UTIL = fetch
else
GET_UTIL = wget --no-proxy -nc
endif
######
NDPI_LIB = @NDPI_LIB@
NDPI_INC = @NDPI_INC@
NDPI_LIB_DEP = @NDPI_LIB_DEP@
######
LIBPCAP=@LIBPCAP@
######
MONGOOSE_HOME=${PWD}/third-party/mongoose
MONGOOSE_INC=-I$(MONGOOSE_HOME)
######
LUA_PLATFORM=generic
LUA_HOME=${PWD}/third-party/lua-5.4.6
LUA_INC=-I$(LUA_HOME)/src
LUA_LIB=$(LUA_HOME)/src/liblua.a
ifeq ($(OS),Linux)
LUA_PLATFORM=linux
else ifeq ($(OS),Darwin)
LUA_PLATFORM=macosx
else ifeq ($(OS), $(filter $(OS), FreeBSD))
LUA_PLATFORM=freebsd
LUA_LIB=/usr/local/lib/liblua-5.3.a
endif
######
LIBRRDTOOL_HOME=${PWD}/third-party/rrdtool-1.4.8
HAS_LIBRRDTOOL=$(shell $(PKG_CONFIG) --atleast-version=1.4.8 librrd && echo 0)
ifeq ($(HAS_LIBRRDTOOL), 0)
LIBRRDTOOL_INC = $(shell $(PKG_CONFIG) --cflags librrd)
LIBRRDTOOL_LIB = @LIBRRD_LD_FLAGS@
else
LIBRRDTOOL_INC=-I$(LIBRRDTOOL_HOME)/src/
ifeq ($(OS), $(filter $(OS), OpenBSD FreeBSD))
LIBRRDTOOL_LIB=$(LIBRRDTOOL_HOME)/src/.libs/librrd_th.a -lm
else
LIBRRDTOOL_LIB=$(LIBRRDTOOL_HOME)/src/.libs/librrd_th.a -lm
endif
endif
######
HTTPCLIENT_INC=${PWD}/third-party/http-client-c/src/
######
JSON_INC=@JSON_CFLAGS@
JSON_LIB=@JSON_LIBS@
######
SNMP_INC=
SNMP_LIB=@SNMP_LIB@
######
HAS_ZSTD=$(shell $(PKG_CONFIG) --exists libzstd && echo 0)
ifeq ($(HAS_ZSTD), 0)
ifeq ($(OS), $(filter $(OS), FreeBSD))
ZSTD_LIB = /usr/local/lib/libzstd.a
else
ZSTD_LIB = $(shell $(PKG_CONFIG) --libs libzstd)
endif
endif
######
TARGET = ntopng
LIBS = $(NDPI_LIB) $(LIBPCAP) $(LUA_LIB) $(LIBRRDTOOL_LIB) $(ZEROMQ_LIB) $(JSON_LIB) $(SNMP_LIB) @MAXMINDDB_LIBS@ $(SODIUM_LIB) @NTOPCLOUD_LIB@ @HIREDIS_LIB@ @SQLITE_LIB@ @MYSQL_LIB@ @RADCLI_LIB@ @EXPAT_LIB@ @SSL_LIB@ @ZMQ_LIBS@ @LINK_OPTS@ @LDFLAGS@ @PRO_LIBS@ @LIBS@ $(ZSTD_LIB) @JE@ -lm -lpthread
CC := @CC@
CXX := @CXX@
CPPFLAGS := @CPPFLAGS@
CFLAGS := @CFLAGS@
CXXFLAGS = $(CFLAGS) -std=c++1y @HIREDIS_INC@ @MAXMINDDB_CFLAGS@ $(MONGOOSE_INC) $(JSON_INC) $(SNMP_INC) $(SODIUM_INC) $(NDPI_INC) $(LUA_INC) $(LIBRRDTOOL_INC) $(ZEROMQ_INC) @MYSQL_INC@ @ZMQ_CFLAGS@ @CXXFLAGS@ -I$(HTTPCLIENT_INC) @SSL_INC@ @PRO_INCS@ -DDATA_DIR='"$(datadir)"' # -D_GLIBCPP_DEBUG
######
# ntopng-1.0_1234.x86_64.rpm
PLATFORM = `uname -p`
REVISION = @GIT_RELEASE@
PACKAGE_VERSION = @PACKAGE_VERSION@
NTOPNG_VERSION = @NTOPNG_VERSION@
RPM_PKG = $(TARGET)-$(NTOPNG_VERSION)-@REVISION@.$(PLATFORM).rpm
RPM_DATA_PKG = $(TARGET)-data-$(NTOPNG_VERSION)-@REVISION@.noarch.rpm
######
LIB_TARGETS = $(LUA_LIB)
ifneq ($(HAS_ZEROMQ), 0)
LIB_TARGETS += $(ZEROMQ_LIB)
endif
ifneq ($(HAS_LIBRRDTOOL), 0)
LIB_TARGETS += $(LIBRRDTOOL_LIB)
endif
.PHONY: default all clean docs test
default: hooks/.enabled $(NDPI_LIB_DEP) $(LIB_TARGETS) $(TARGET)
all: default
OBJECTS = $(patsubst src/%.cpp, src/%.o, $(wildcard src/*.cpp)) $(patsubst src/flow_checks/%.cpp, src/flow_checks/%.o, $(wildcard src/flow_checks/*.cpp)) $(patsubst src/flow_alerts/%.cpp, src/flow_alerts/%.o, $(wildcard src/flow_alerts/*.cpp)) $(patsubst src/host_checks/%.cpp, src/host_checks/%.o, $(wildcard src/host_checks/*.cpp)) $(patsubst src/host_alerts/%.cpp, src/host_alerts/%.o, $(wildcard src/host_alerts/*.cpp)) @PRO_OBJECTS@
HEADERS = $(wildcard include/*.h) $(wildcard include/flow_checks/*.h) $(wildcard include/flow_alerts/*.h) $(wildcard include/host_checks/*.h) $(wildcard include/host_alerts/*.h) @PRO_HEADERS@
INC = $(wildcard src/*.inc)
OBJECTS_NO_MAIN := $(filter-out src/main.o,$(OBJECTS))
TEST_FILES = $(wildcard tests/src/*.cpp)
TEST_HEADERS = $(wildcard tests/include/*.h)
%.o: %.c $(HEADERS) $(INC) Makefile
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
%.o: %.cpp $(HEADERS) $(INC) Makefile
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@
.PRECIOUS: $(TARGET) $(OBJECTS)
$(TARGET): $(OBJECTS) $(LIB_TARGETS) Makefile
$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) $(OBJECTS) -lm -Wall $(LIBS) -o $@
unit_test: $(TEST_FILES) $(OBJECTS_NO_MAIN) ${TEST_HEADERS} $(LIB_TARGETS)
$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) $(TEST_FILES) $(OBJECTS_NO_MAIN) -lm -lgtest $(LIBS) -o ./tests/unit_tests
test_fifo_queue: $(OBJECTS_NO_MAIN) $(LIB_TARGETS)
rm src/FifoStringsQueue.o
$(MAKE) CPPFLAGS="${CPPFLAGS} -DTEST_FIFO_QUEUE -DDEBUG_FIFO_QUEUE" src/FifoStringsQueue.o
$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) $(OBJECTS_NO_MAIN) -Wall $(LIBS) -o $@
test_alert_engine: $(OBJECTS_NO_MAIN) $(LIB_TARGETS)
rm src/AlertCheckLuaEngine.o
$(MAKE) CPPFLAGS="${CPPFLAGS} -DTEST_CHECK_ENGINE" src/AlertCheckLuaEngine.o
$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) $(OBJECTS_NO_MAIN) -Wall $(LIBS) -o $@
$(LUA_LIB):
$(MAKE) -C $(LUA_HOME) $(LUA_PLATFORM)
$(ZEROMQ_LIB):
cd $(ZEROMQ_HOME); ./configure --without-documentation --without-libsodium; $(MAKE)
# --disable-rrd_graph
$(LIBRRDTOOL_LIB):
cd $(LIBRRDTOOL_HOME); ./configure --disable-libdbi --disable-libwrap --disable-rrdcgi --disable-libtool-lock --disable-nls --disable-rpath --disable-perl --disable-ruby --disable-lua --disable-tcl --disable-python --disable-dependency-tracking --disable-rrd_graph ; cd src; $(MAKE) librrd_th.la
hooks/.enabled:
git config core.hooksPath hooks || true
touch hooks/.enabled
clean:
-rm -f src/*.o src/*~ src/flow_checks/*.o src/flow_checks/*~ src/flow_alerts/*.o src/flow_alerts/*~ src/host_checks/*.o src/host_checks/*~ src/host_alerts/*.o src/host_alerts/*~ include/*~ *~ #config.h
-rm -f $(TARGET)
-rm -f fuzz/*.o fuzz/proto/ fuzz/stub/*.o
if [ -d pro ]; then cd pro && $(MAKE) clean; fi
cert:
openssl req -new -x509 -sha256 -extensions v3_ca -nodes -days 365 -out cert.pem
cat privkey.pem cert.pem > httpdocs/ssl/ntopng-cert.pem
/bin/rm -f privkey.pem cert.pem
circular_deps:
cd ./tools; python3.5 circular_deps.py
veryclean: clean
-rm -rf nDPI
trackers:
./tools/download_trackers.sh httpdocs/other/trackers.txt
# Do NOT build package as root (http://wiki.centos.org/HowTos/SetupRpmBuildEnvironment)
# mkdir -p $(HOME)/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS}
# echo '%_topdir %(echo $HOME)/rpmbuild' > ~/.rpmmacros
build-rpm: build-rpm-ntopng build-rpm-ntopng-data
protools:
cd pro; make
build-rpm-ntopng: ntopng protools
rpmbuild -bb ./packages/ntopng.spec
@@RPM_SIGN_CMD@ $(HOME)/rpmbuild/RPMS/$(PLATFORM)/$(RPM_PKG)
@echo ""
@echo "Package contents:"
@rpm -qpl $(HOME)/rpmbuild/RPMS/$(PLATFORM)/$(RPM_PKG)
@echo "The package is now available in $(HOME)/rpmbuild/RPMS/$(PLATFORM)/$(RPM_PKG)"
build-rpm-ntopng-data:
rpmbuild -bb ./packages/ntopng-data.spec
@@RPM_SIGN_CMD@ $(HOME)/rpmbuild/RPMS/noarch/$(RPM_DATA_PKG)
@echo ""
@echo "Package contents:"
@rpm -qpl $(HOME)/rpmbuild/RPMS/noarch/$(RPM_DATA_PKG)
@echo "The package is now available in $(HOME)/rpmbuild/RPMS/noarch/$(RPM_DATA_PKG)"
docs:
cd doc && doxygen doxygen.conf
windows:
# Windows dist
rm -rf ntopng-@NTOPNG_VERSION@
mkdir ntopng-@NTOPNG_VERSION@
cd ntopng-@NTOPNG_VERSION@; git clone https://github.com/ntop/ntopng.git; cd ntopng; git clone https://github.com/ntop/nDPI.git; cd ..; find ntopng -name .git | xargs rm -rf ; mv ntopng ntopng-@NTOPNG_VERSION@; tar cvfz ../ntopng-@NTOPNG_VERSION@.tgz ntopng-@NTOPNG_VERSION@
install: ntopng
@echo "While we provide you an install make target, we encourage you"
@echo "to create a package and install that"
@echo "rpm - do 'make build-rpm'"
@echo "deb - do 'cd packages/ubuntu;./configure;make"
mkdir -p $(INSTALL_DIR)/share/ntopng $(MAN_DIR)/man8 $(INSTALL_DIR)/bin
cp ntopng $(INSTALL_DIR)/bin
cp ./ntopng.8 $(MAN_DIR)/man8
cp -r ./httpdocs $(INSTALL_DIR)/share/ntopng
cp -LR ./scripts $(INSTALL_DIR)/share/ntopng # L dereference symlinks
find $(INSTALL_DIR)/share/ntopng -name "*~" | xargs /bin/rm -f
find $(INSTALL_DIR)/share/ntopng -name ".git" | xargs /bin/rm -rf
uninstall:
if test -f $(INSTALL_DIR)/bin/ntopng; then rm $(INSTALL_DIR)/bin/ntopng; fi;
if test -f $(MAN_DIR)/man8/ntopng.8; then rm $(MAN_DIR)/man8/ntopng.8; fi;
if test -d $(INSTALL_DIR)/share/ntopng; then rm -r $(INSTALL_DIR)/share/ntopng; fi;
Makefile: configure Makefile.in
./configure
# Disabled to avoid too many recompilations
#configure: @GIT_INDEX@
# @echo ""
# @echo "Re-running autogen as the git release has changed"
# @echo ""
# ./autogen.sh
cppcheck:
cppcheck --template='{file}:{line}:{severity}:{message}' --quiet --enable=all --force -I include/ @HIREDIS_INC@ $(MONGOOSE_INC) $(JSON_INC) $(NDPI_INC) $(LUA_INC) $(LIBRRDTOOL_INC) $(ZEROMQ_INC) src/*.cpp
test: test_version
test_version:
./ntopng --version
webtest:
echo "Assuming default HTTP port and default credentials"
cd /tmp
rm -rf localhost:3000
wget --auth-no-challenge -mk --user admin --password admin http://localhost:3000
changelog:
git log --since={`curl -s https://github.com/ntop/ntopng/releases | grep datetime | head -n1 | egrep -o "[0-9]+\-[0-9]+\-[0-9]+"`} --name-only --pretty=format:" - %s" > Changelog.latest
if [ -d pro ]; then cd pro && git log --since={`curl -s https://github.com/ntop/ntopng/releases | grep datetime | head -n1 | egrep -o "[0-9]+\-[0-9]+\-[0-9]+"`} --name-only --pretty=format:" - %s" >> ../Changelog.latest; fi
dist:
npm install
npm run build
dist-ntopng:
npm run build:ntopngjs
dev-dist:
npm run build:dev
pull-deps:
echo "Pulling dependencies.."
rm -rf httpdocs/dist tests/e2e
git submodule init
git submodule update --remote
pull-pro:
if test -d ./pro; then echo "Pulling ntopng/pro..."; cd pro; git pull --rebase; fi
format:
find ./src ./include -type f \( -name '*.cpp' -o -name '*.h' \) -exec clang-format --style=file -i '{}' \;
if test -d ./pro; then find ./pro/src ./pro/include -type f \( -name '*.cpp' -o -name '*.h' \) -exec clang-format --style=file -i '{}' \; ; fi
fast-format:
find ./src ./include -type f -mtime -2 \( -name '*.cpp' -o -name '*.h' \) -exec clang-format --style=file -i '{}' \;
if test -d ./pro; then find ./pro/src ./pro/include -type f -mtime -2 \( -name '*.cpp' -o -name '*.h' \) -exec clang-format --style=file -i '{}' \; ; fi
check-format:
git diff --name-only --cached | grep -P '^(src|include)/.*\.(cpp|h)$$' | xargs -n1 clang-format -n --Werror --style=file
pull: pull-deps pull-pro
echo "Updating ntopng..."
git pull --rebase
@FUZZ_MAKEFILE_INC@