forked from kamailio/kamailio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.rules
293 lines (244 loc) · 7.93 KB
/
Makefile.rules
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
# Kamailio build system
#
# common Makefile rules, included by main Makefile & the modules
#
#
# Uses: NAME, ALLDEP, CC, CFLAGS, C_DEFS, DEFS, C_INCLUDES, INCLUDES, LIBS,
# MKDEP, auto_gen, auto_gen_others, auto_gen_keep,
# depends, objs, extra_objs, static_modules, static_modules_path,
# LD_RPATH
# (all this must be defined previously!, see Makefile.defs & Makefile)
# Optional: SER_LIBS - list of ser libraries that will be automatically
# built if necessary. Format: path/shortname, where shortname is the
# name passed to -l (e.g. for libprint.so the shortname is print)
#
# check if the saved cfg corresponds with the current one
# (if not rebuild everything)
ifeq (,$(filter $(nodep_targets),$(MAKECMDGOALS)))
-include makecfg.lst
# if trying to build a lib automatically and the lib is already compiled,
# don't rebuild it if the only differences in DEFS or INCLUDES are covered
# by LIB_NOREBUILD_DEFS/LIB_NOREBUILD_INCLUDES
LIB_NOREBUILD_DEFS=
# don't rebuild if the differences are covered by NOREBUILD_DEFS or
# NOREBUILD_INCLUDES
ifneq ($(strip $(filter-out $(NOREBUILD_DEFS),\
$(C_DEFS) $(DEFS))),$(strip $(CFG_DEFS)))
#$(warning different defs: <$(strip $(C_DEFS) $(DEFS))> != )
#$(warning : <$(strip $(CFG_DEFS))>)
$(shell rm -f makecfg.lst)
endif
ifneq ($(strip $(filter-out $(NOREBUILD_INCLUDES),\
$(C_INCLUDES) $(INCLUDES))),$(strip $(CFG_INCLUDES)))
$(shell rm -f makecfg.lst)
endif
endif
ALLDEP+=makecfg.lst
# returns current type: "" core/unknown, "M" module, "L" libray, "U" util
crt_type=$(if $(MOD_NAME),M,$(if $(LIB_NAME),L,$(if $(UTIL_NAME),U)))
cmd_CC=$(CC) $(CFLAGS) $(C_INCLUDES) $(INCLUDES) $(C_DEFS) $(DEFS) -c $< -o $@
cmd_LD=$(LD) $(LDFLAGS) $(objs) $(extra_objs) $(ALL_LIBS) $(SER_RPATH) \
-o $(NAME)
ifeq (,$(CC_MKDEP_OPTS))
# if CCC_MKDEP_OPTS is empty => CC cannot generate dependencies on the fly
cmd_MKDEP=$(MKDEP) $(filter -D% -I%,$(CFLAGS)) $(C_INCLUDES) $(INCLUDES) \
$(C_DEFS) $(DEFS) $< \
| sed -e 's/\#.*//' -e '/:[ ]*$$/d' -e '/^[ ]*$$/d' \
-e 's|.*:|$@: $$(wildcard |' -e 's/\([^\\]\)$$/\1)/'> $*.d
else
# deps can be generated on the fly by cmd_CC
cmd_CC+=$(CC_MKDEP_OPTS)
# no MKDEP command any more
cmd_MKDEP=
endif # CC_MKDEP_OPTS
# what will be displayed if quiet==silent
silent_cmd_CC=CC ($(CC)) [$(strip $(crt_type) $(NAME))] $@
silent_cmd_LD=LD ($(LD)) [$(strip $(crt_type) $(NAME))] $@
ifneq (,$(filter 0 no off verbose noisy, $(Q) $(QUIET)))
override Q:=
quiet=verbose
#shell optional print
oecho=echo $(1)
else
quiet=silent
Q=1
MAKE+= --no-print-directory
#shell optional print
oecho=
endif
module_make= if [ -n "$(1)" -a -r "$(1)/Makefile" ]; then \
$(call oecho, "" ;) \
$(call oecho, "" ;) \
if $$(MAKE) -C $(1) $(2) || [ ${err_fail} != 1 ] ; then \
:; \
else \
exit 1; \
fi ; \
fi ;
quote:= "
escall= $(subst $$,\$$,$(subst $(quote),\$(quote),$1))
exec_cmd= $(if $($(quiet)_cmd_$(1)),\
@echo "$(call escall,$($(quiet)_cmd_$(1)))" ;) $(cmd_$(1))
#implicit rules
%.o:%.c $(ALLDEP)
$(call exec_cmd,CC)
@$(call cmd_MKDEP)
# use RPATH and SER_LIBS if needed (make install and the module depends
# on some ser libs)
ifneq ($(SER_LIBS),)
# abspath & realpath don't work on make <= 3.80
SER_LIBS_DIRS:=$(dir $(SER_LIBS))
ifneq (,$(filter install install% %install, $(MAKECMDGOALS)))
lib_compile_for_install=yes
expected_lib_ipath=$(lib_target)
else
lib_compile_for_install=$(compile_for_install)
# function: expected_lib_ipath ser_lib_dir
expected_lib_ipath=$(1)
endif
ifneq ($(LD_RPATH),)
ifneq (,$(filter install install% %install, $(MAKECMDGOALS)))
SER_RPATH_LST:=$(lib_target)
else
# realpath is not supported in make 3.80 or older
ifeq (,$(filter-out 3.80 3.80.%,$(MAKE_VERSION)))
fullpath=$(shell cd $(1); pwd)
else
fullpath=$(realpath $(1))
endif
SER_RPATH_LST:=$(call fullpath,$(dir $(SER_LIBS)))
endif
ifneq ($(strip $(SER_RPATH_LST)),)
SER_RPATH:=$(addprefix $(LD_RPATH),$(SER_RPATH_LST))
endif
endif
ifeq ($(OS), darwin)
SER_IPATH_LST:=$(addsuffix /libiname.lst,$(SER_LIBS_DIRS))
#$(warning $(NAME) DARWIN, SER_LIBS=$(SER_LIBS), $(SER_LIBS_DIRS), ipath_lst=$(SER_IPATH_LST))
endif
endif
ALL_LIBS=$(LIBS)
ifeq (,$(filter clean %clean clean% proper %proper proper%, $(MAKECMDGOALS)))
ifneq ($(SER_LIBS),)
-include librpath.lst
ifneq ($(SER_RPATH_LST), $(LIB_RPATH_LST))
$(shell rm -f librpath.lst)
endif
endif
SER_LIBS_DEPS:= \
$(foreach l, $(SER_LIBS), $(dir $l)$(LIB_PREFIX)$(notdir $l)$(LIB_SUFFIX))
ALL_LIBS+=$(foreach l, $(SER_LIBS), -L$(dir $l) -l$(notdir $l))
$(NAME): librpath.lst $(SER_LIBS_DEPS)
$(SER_LIBS_DEPS): FORCE
@$(MAKE) -wC $(dir $@) compile_for_install=$(lib_compile_for_install) \
NOREBUILD_DEFS="$(NOREBUILD_DEFS) $(LIB_NOREBUILD_DEFS)" \
NOREBUILD_INCLUDES="$(NOREBUILD_INCLUDES) $(LIB_NOREBUILD_INCLUDES)"
.PHONY: FORCE
FORCE:
ifneq ($(SER_IPATH_LST),)
$(NAME): $(SER_IPATH_LST)
$(SER_IPATH_LST): FORCE
@if grep \
"COMPILED_INAME:=$(call expected_lib_ipath,$(shell cd $(@D); pwd))" \
$(@) 1>/dev/null 2>/dev/null ; \
then :; \
else \
$(call oecho,"re-building $(@D)" ;) \
$(MAKE) -wC $(@D) compile_for_install=$(lib_compile_for_install) ; \
fi
.PHONY: FORCE-BUILD-LIBS
FORCE-BUILD-LIBS:
@for r in $(SER_LIBS_DIRS) ; do \
$(call oecho,building lib $$r ;) \
$(MAKE) -wC $$r compile_for_install=$(lib_compile_for_install) ; \
done
endif
endif
# normal rules
$(NAME): $(objs) $(ALLDEP)
$(call exec_cmd,LD)
librpath.lst: $(ALLDEP)
@echo LIB_RPATH_LST:=$(SER_RPATH_LST) >librpath.lst
makecfg.lst:
@echo "CFG_DEFS:=$(call escall,$(strip \
$(filter-out $(NOREBUILD_DEFS), $(C_DEFS) $(DEFS))))" >>$@
@echo "CFG_INCLUDES:=$(call escall,$(strip \
$(filter-out $(NOREBUILD_INCLUDES),\
$(C_INCLUDES) $(INCLUDES))))" >>$@
.PHONY: all
all: $(NAME) every-module
.PHONY: static
static: $(objs)
# clean only the current directory (no modules or utils)
# (it's usefull to have it separated from clean for speeding up make proper)
.PHONY: local-clean
local-clean:
-@rm -f $(objs) $(NAME) $(objs:.o=.il) librpath.lst 2>/dev/null
.PHONY: clean
clean: local-clean
.PHONY: clean-modules
clean-modules:
-@for r in $(cmodules) $(static_modules_path) "" ; do \
if [ -d "$$r" ]; then \
$(call oecho,"module $$r" ;) \
$(MAKE) -C "$$r" clean ; \
[ -r "$$r"/doc/Makefile ] && $(MAKE) -C "$$r"/doc clean ; \
fi ; \
done
# make proper for the local directory
.PHONY: proper
.PHONY: distclean
.PHONY: realclean
.PHONY: maintainer-clean
proper distclean realclean maintainer-clean: local-clean
-@rm -f $(depends) $(auto_gen) $(auto_gen_others) $(auto_gen_keep) \
makecfg.lst 2>/dev/null
maintainer-clean: clean-tmp
.PHONY: proper-modules
.PHONY: distclean-modules
.PHONY: realclean-modules
.PHONY: maintainer-clean-modules
proper-modules realclean-modules distclean-modules maintainer-clean-modules: \
clean_target=$(patsubst %-modules,%,$@)
proper-modules realclean-modules distclean-modules maintainer-clean-modules:
-@for r in $(cmodules) "" ; do \
if [ -d "$$r" ]; then \
$(MAKE) -C "$$r" $(clean_target); \
[ -r "$$r"/doc/Makefile ] && $(MAKE) -C "$$r"/doc $(clean_target);\
fi ; \
done
.PHONY: clean-tmp
clean-tmp:
-@rm -f TAGS tags *.dbg .*.swp
.PHONY: doxygen
doxygen:
-@mkdir -p $(doxygen_dir)
-@echo "Create Doxygen documentation"
# disable call graphes, because of the DOT dependencies
(cat ./$(COREPATH)/doc/doxygen/ser.doxygen; \
echo "HAVE_DOT=no" ;\
echo "PROJECT_NAME=SIP-ROUTER" ;\
echo "PROJECT_NUMBER=$(NAME)-$(RELEASE)" )| doxygen -
-@echo "Doxygen documentation created"
.PHONY: clean_doxygen
clean_doxygen:
-@rm -rf $(doxygen_dir)/{xml,man,rtf,latex,html}
-@rmdir --ignore-fail-on-non-empty -p $(doxygen_dir) || true
.PHONY: TAGS
.PHONY: tags
TAGS tags:
$(MKTAGS) --exclude="obsolete/*" --exclude="test/*" -R .
.PHONY: TAGS-ALL
.PHONY: tags-all
TAGS-ALL tags-all:
$(MKTAGS) -R .
ifeq (,$(MAKECMDGOALS))
-include $(depends)
else
ifeq (,$(strip $(nodep_targets)))
include $(COREPATH)/Makefile.targets
endif
ifneq (,$(filter-out $(nodep_targets),$(MAKECMDGOALS)))
-include $(depends)
endif
endif # ifeq (,$(MAKECMDGOALS))