forked from OLSR/olsrd
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile.inc
399 lines (349 loc) · 10.7 KB
/
Makefile.inc
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
# The olsr.org Optimized Link-State Routing daemon (olsrd)
#
# (c) by the OLSR project
#
# See our Git repository to find out who worked on this file
# and thus is a copyright holder on it.
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# * Neither the name of olsr.org, olsrd nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# Visit http://www.olsr.org for more information.
#
# If you find this software useful feel free to make a donation
# to the project. For more information see the website or contact
# the copyright holders.
#
######################
#
# Highlevel configuration options for all
#
#
# activate debugging with 1 or deactivate with 0
DEBUG ?= 1
# set NOSTRIP to non-zero to inhibit stripping the binaries
NOSTRIP ?= 0
# compile OLSR_PRINTF out
NO_DEBUG_MESSAGES ?= 0
# the optimize option to be set for gcc
OPTIMIZE ?=
# enable mudflap with 1 or deactivate with 0
# you need a recent enough gcc and the libmudflap installed
MUDFLAP ?= 0
# shows full compiler/linker calls if activated
VERBOSE ?= 0
SANITIZE_ADDRESS ?= 0
SANITIZE_LEAK ?= 0
SANITIZE_UNDEFINED ?= 0
ifeq ($(VERBOSE),0)
MAKECMDPREFIX = @
else
MAKECMDPREFIX =
endif
# OS detection
ifeq ($(OS),Windows_NT)
OS := win32
endif
ifeq ($(OS),)
OS := $(shell sh $(TOPDIR)/make/guess_os.sh)
endif
######################
#
# Lowlevel options and rules
#
# programs
CCACHE ?= $(shell IFS=:; for i in $$PATH;do test -x "$$i/ccache" && echo "$$i/ccache" && break; done)
ifeq ($(origin CC),default)
CC = $(CCACHE) gcc
else
CC ?= $(CCACHE) gcc
endif
ifeq ($(DEBUG),0)
ifeq ($(NOSTRIP),0)
STRIP ?= strip
else
STRIP ?= :
endif
else
STRIP ?= :
endif
BISON ?= bison
FLEX ?= flex
TAGCMD ?= etags
# target directories and names
DESTDIR ?=
ETCDIR ?= $(DESTDIR)/etc/olsrd
USRDIR ?= $(DESTDIR)/usr
INCLUDEDIR ?= $(DESTDIR)/usr/include
LIBDIR ?= $(USRDIR)/lib
SBINDIR ?= $(USRDIR)/sbin
SHAREDIR ?= $(USRDIR)/share
DOCDIR ?= $(SHAREDIR)/doc
MANDIR ?= $(SHAREDIR)/man
EXENAME ?= olsrd
CFGNAME ?= $(EXENAME).conf
CFGFILE ?= $(ETCDIR)/$(CFGNAME)
SGW_POLICY_SCRIPT ?= sgw_policy_routing_setup.sh
DOCDIR_OLSRD ?= $(DOCDIR)/$(EXENAME)
CPPFLAGS = -I$(TOPDIR)/src -I$(TOPDIR)/lib -I$(TOPDIR)/lib/pud/nmealib/include -I$(TOPDIR)/lib/pud/wireformat/include
# include OS specific compiler settings
-include $(TOPDIR)/make/Makefile.$(OS).compiler
# add gcc warnings and optimizations if CFLAGS not set
ifndef CFLAGS
ifndef WARNINGS
#
# warning flags to add if supported (sorted)
#
WARNINGS += -fearly-inlining
WARNINGS += -finline-functions-called-once
WARNINGS += -funit-at-a-time
WARNINGS += -Waggregate-return
WARNINGS += -Wall
WARNINGS += -Wbad-function-cast
WARNINGS += -Wcast-align
WARNINGS += -Wdeclaration-after-statement
WARNINGS += -Wdisabled-optimization
WARNINGS += -Wendif-labels
#WARNINGS += -Werror
WARNINGS += -Werror=format-security
WARNINGS += -Wextra
WARNINGS += -Wformat
WARNINGS += -Wformat-security
WARNINGS += -Wformat-y2k
WARNINGS += -Winit-self
WARNINGS += -Winline
WARNINGS += -Wmissing-declarations
WARNINGS += -Wmissing-format-attribute
WARNINGS += -Wmissing-include-dirs
WARNINGS += -Wmissing-noreturn
WARNINGS += -Wmissing-prototypes
WARNINGS += -Wno-deprecated-declarations
WARNINGS += -Wno-multichar
WARNINGS += -Wnull-dereference
WARNINGS += -Wold-style-definition
WARNINGS += -Wpointer-arith
WARNINGS += -Wsequence-point
WARNINGS += -Wshadow
WARNINGS += -Wshift-negative-value
WARNINGS += -Wshift-overflow
WARNINGS += -Wsign-compare
WARNINGS += -Wstrict-prototypes
WARNINGS += -Wswitch-default
WARNINGS += -Wtautological-compare
WARNINGS += -Wundef
WARNINGS += -Wunused-parameter
WARNINGS += -Wwrite-strings
ifneq ($(CC),clang)
# clang doesn't report these as errors or warnings in the gcc-warnings script
WARNINGS += -Wdouble-promotion
WARNINGS += -Wduplicated-cond
WARNINGS += -Wjump-misses-init
WARNINGS += -Wlogical-op
WARNINGS += -Wmisleading-indentation
WARNINGS += -Wsync-nand
WARNINGS += -Wtrampolines
endif
ifneq ($(OS),win32)
# triggers many warnings for inet_ntop in src/win32/compat.h
WARNINGS += -Wcast-qual
endif
# we have small inline functions in src/lq_route.h which should always be inlined
WARNINGS += -finline-limit=350
# only in non-debug builds
ifeq ($(DEBUG),0)
WARNINGS += -fomit-frame-pointer
endif
# the following 2 do not work yet and need more work on it
#WARNINGS += -Wconversion
#WARNINGS += -Wredundant-decls
# Alas, htons() triggers this so we can't seriously activate it.
#WARNINGS += -Wunreachable-code
# These tell gcc to put each function and global variable in a separate section.
# The linker can then remove all unreferenced sections. But in the olsrd binary
# unused doesn't imply unused at all since the function may be used by plugins,
# e.g. the ones in src/plugin_utils.c.
# So we can use that featuer at most to identify unused functions and remove
# them from the source by hand.
#WARNINGS += -ffunction-sections
#WARNINGS += -fdata-sections
ifeq ($(MUDFLAP),0)
# work around a bug in gcc-4.*
WARNINGS += -Wnested-externs
endif
WARNINGS := $(shell CC="$(CC)" "$(TOPDIR)/gcc-warnings" $(WARNINGS))
endif
CFLAGS += $(WARNINGS)
CFLAGS += $(OPTIMIZE)
CFLAGS += $(EXTRA_CFLAGS)
endif
ifneq ($(MUDFLAP),0)
CFLAGS += -fmudflapth
endif
ifdef OLSRD_PLUGIN
# c and ld flags for libraries (plugins)
CPPFLAGS += -DOLSR_PLUGIN
ifeq ($(OS),win32)
LDFLAGS += -Wl,-export-all-symbols,--enable-auto-import
endif
LDFLAGS += -shared
LDFLAGS += -Wl,-soname,$(PLUGIN_SONAME)
LDFLAGS += -Wl,--version-script=version-script.txt
else
# c and ld flags for main
ifeq ($(OS),win32)
LDFLAGS += -Wl,-export-all-symbols
else
LDFLAGS += -Wl,-export-dynamic
endif
LDFLAGS += -Wl,-rpath,$(LIBDIR)
endif
# LDFLAGS for all
LDFLAGS += -Wl,--warn-common
# See above at "-ffunction-sections" for an explanation (and why it is disabled).
#LDOPTS += -Wl,--gc-sections
#LDOPTS += -Wl,--print-gc-sections
#LDFLAGS += $(shell CC="$(CC)" $(TOPDIR)/ld-warnings $(LDOPTS))
ifneq ($(MUDFLAP),0)
LIBS += -lmudflapth
endif
ifeq ($(OS),linux)
ifneq ($(SANITIZE_ADDRESS),0)
CFLAGS += -fsanitize=address -fsanitize-recover -fno-omit-frame-pointer
LDFLAGS += -fsanitize=address -fsanitize-recover -static-libasan
endif
ifneq ($(SANITIZE_LEAK),0)
CFLAGS += -fsanitize=leak -fsanitize-recover
LDFLAGS += -fsanitize=leak -fsanitize-recover -static-liblsan
endif
ifneq ($(SANITIZE_UNDEFINED),0)
CFLAGS += -fsanitize=undefined -fsanitize-recover
LDFLAGS += -fsanitize=undefined -fsanitize-recover -static-libubsan
endif
endif
# extra options from the outside
CPPFLAGS += $(EXTRA_CPPFLAGS)
# 32/64 cross compilation
ifdef M32
CFLAGS += -m32
LDFLAGS += -m32
endif
ifdef M64
CFLAGS += -m64
LDFLAGS += -m64
endif
###################################
#
# options to save space on small systems
# we have plugins with the old interface
#CPPFLAGS += -DSUPPORT_OLD_PLUGIN_VERSIONS=1
# use the new fixed point math stuff
CPPFLAGS += -DUSE_FPM
# search sources and headers in current dir and in src/
SRCS += $(wildcard src/common/*.c src/*.c *.c)
HDRS += $(wildcard src/common/*.h src/*.h *.h)
ifeq ($(OS),UNKNOWN)
all: help
else
# include OS specifics
all: default_target
include $(TOPDIR)/make/Makefile.$(OS)
endif
# one object for each source file
OBJS += $(SRCS:%.c=%.o)
# debugging or non-debugging flags
ifeq ($(DEBUG),1)
CPPFLAGS += -DDEBUG
CFLAGS += -ggdb
ifeq ($(OS),linux)
LDFLAGS += -rdynamic
endif
else
CPPFLAGS += -DNDEBUG
ifeq ($(OPTIMIZE),)
OPTIMIZE += -O2 -D_FORTIFY_SOURCE=2
endif
endif
ifeq ($(NO_DEBUG_MESSAGES),1)
CPPFLAGS += -DNODEBUG
endif
# preserve debugging info when NOSTRIP is set
ifneq ($(NOSTRIP),0)
CFLAGS += -ggdb
endif
# a make function to quote "/" and "."
quote = $(subst .,\.,$(subst /,\/,$1))
# fully automatic and working dependency generation
%.d: %.c
$(MAKECMDPREFIX)$(filter-out $(CCACHE),$(CC)) -M $(strip $(CPPFLAGS)) "$<" | sed -e '1s/\($(call quote,$(*F))\.o\)[ :]*/$(call quote,$(*D)/\1 $@: Makefile $(TOPDIR)$(if $(TOPDIR),/)Makefile.inc) /g' >"$@"
%.o: %.c
ifeq ($(VERBOSE),0)
@echo "[CC] $<"
endif
$(MAKECMDPREFIX)$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
# we always need the includes and defines
# for legacy since now
CPPFLAGS += $(INCLUDES) $(DEFINES)
ifneq ($(INCLUDES),)
$(warning Use CPPFLAGS instead of INCLUDES for -I)
endif
ifneq ($(DEFINES),)
$(warning Use CPPFLAGS instead of DEFINES for -D)
endif
TAGFILE ?= src/TAGS
help:
@echo
@echo '***** olsr.org olsr daemon Make ****'
@echo ' Automatic detection of your OS '
@echo ' failed! '
@echo ' You can provide a valid target OS '
@echo ' by setting the OS variable! Valid '
@echo ' target OSes are: '
@echo ' --------------------------------- '
@echo ' linux - GNU/Linux '
@echo ' win32 - MS Windows '
@echo ' fbsd - FreeBSD '
@echo ' nbsd - NetBSD '
@echo ' obsd - OpenBSD '
@echo ' osx - Mac OS X '
@echo ' android - Android '
@echo ' --------------------------------- '
@echo ' Example - build for windows: '
@echo ' make OS=win32 '
@echo ' If you are developing olsrd code, '
@echo ' exporting the OS variable might '
@echo ' be a good idea :-) Have fun! '
@echo '************************************'
@echo
ifeq ($(filter clean% %clean, $(MAKECMDGOALS)),)
# include dependencies - we don't need any dependency for a everytime generated files
-include $(filter-out src/builddata.%,$(SRCS:%.c=%.d))
endif
# Local Variables:
# mode: makefile
# End: