-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.inc
302 lines (266 loc) · 7.55 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
######################
#
# Highlevel configuration options for all
#
#
# activate debugging with 1 or deactivate with 0
DEBUG ?= 1
# 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
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)
STRIP ?= strip
else
STRIP ?= :
endif
BISON ?= bison
FLEX ?= flex
TAGCMD ?= etags
# target directories and names
DESTDIR ?=
ETCDIR ?= $(DESTDIR)/etc
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 = -Isrc
ifneq ($(TOPDIR),.)
CPPFLAGS += -I$(TOPDIR)/src
endif
# add gcc warnings and optimizations if CFLAGS not set
ifndef CFLAGS
ifndef WARNINGS
WARNINGS += -Wall
WARNINGS += -Wextra
WARNINGS += -Wold-style-definition
WARNINGS += -Wdeclaration-after-statement
WARNINGS += -Wmissing-prototypes
WARNINGS += -Wstrict-prototypes
WARNINGS += -Wmissing-declarations
WARNINGS += -Wsign-compare
WARNINGS += -Waggregate-return
WARNINGS += -Wmissing-noreturn
WARNINGS += -Wmissing-format-attribute
WARNINGS += -Wno-multichar
WARNINGS += -Wno-deprecated-declarations
WARNINGS += -Wendif-labels
WARNINGS += -Wwrite-strings
WARNINGS += -Wbad-function-cast
WARNINGS += -Wpointer-arith
WARNINGS += -Wcast-qual
WARNINGS += -Wshadow
WARNINGS += -Wformat
WARNINGS += -Wsequence-point
WARNINGS += -Wcast-align
WARNINGS += -Wformat-security
WARNINGS += -Wformat-y2k
WARNINGS += -Werror=format-security
WARNINGS += -Winit-self
WARNINGS += -Wswitch-default
WARNINGS += -Wsync-nand
WARNINGS += -Wundef
WARNINGS += -Wlogical-op
ifneq ($(OS),android)
WARNINGS += -Wdouble-promotion
WARNINGS += -Wjump-misses-init
WARNINGS += -Wtrampolines
endif
WARNINGS += -Wunused-parameter
# the following 2 do not work yet and need more work on it
#WARNINGS += -Wconversion
#WARNINGS += -Wredundant-decls
ifeq ($(MUDFLAP),0)
# work around a bug in gcc-4.*
WARNINGS += -Wnested-externs
endif
# Alas, htons() triggers this so we can't seriously activate it.
#WARNINGS += -Wunreachable-code
WARNINGS += -Winline
WARNINGS += -Wdisabled-optimization
# WARNINGS += -Werror
WARNINGS += -finline-functions-called-once
WARNINGS += -funit-at-a-time
WARNINGS += -fearly-inlining
ifeq ($(DEBUG),0)
WARNINGS += -fomit-frame-pointer
endif
# we have small inline functions in src/lq_route.h which should always be inlined
WARNINGS += -finline-limit=350
# These tell gcc to put each function and global variable in a separate section.
# The linker can than remove all unreferenced section. 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
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
# 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
else
CPPFLAGS += -DNDEBUG
ifeq ($(OPTIMIZE),)
OPTIMIZE += -O2 -D_FORTIFY_SOURCE=2
endif
endif
ifeq ($(NO_DEBUG_MESSAGES),1)
CPPFLAGS += -DNODEBUG
endif
ifeq ($(OS),linux)
CPPFLAGS+=-DHTTPINFO_PUD -I$(TOPDIR)/lib -I$(TOPDIR)/lib/pud/nmealib/include -I$(TOPDIR)/lib/pud/wireformat/include
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: