Generate dependency files for *.cpp files, use altered cflags to avoid cxx compiler...
[AROS.git] / config / make.tmpl
bloba183bfd3f223fac7a92e6adc5c2faeb61c0e679a
1 #############################################################################
2 #############################################################################
3 ##                                                                         ##
4 ## Here are the mmakefile macros that are used as commands in the body     ##
5 ## of a make rule.                                                         ##
6 ## They are used to help the portability of mmakefiles to different        ##
7 ## platforms and also will handle the error handling in a standard way.    ##
8 ##                                                                         ##
9 #############################################################################
10 #############################################################################
12 #------------------------------------------------------------------------------
13 # Compile the file %(from) to %(to) with %(cmd). Write any errors to %(err)
14 # and use the options in %(opt). Use %(iquote) and %(iquote_end) for supplying -iquote or -I- flags
15 %define compile_q cmd="$(TARGET_CC) $(TARGET_CFLAGS)" opt=$(CFLAGS) from=$< to=$@ iquote=$(CFLAGS_IQUOTE) iquote_end=$(CFLAGS_IQUOTE_END)
16         @$(ECHO) "Compiling  $(CURDIR)/$(notdir %(from))"
17         @$(IF) %(cmd) %(iquote) $(dir %(from)) %(iquote) $(SRCDIR)/$(CURDIR) %(iquote) . %(iquote_end) %(opt) -c %(from) -o %(to) > $(GENDIR)/cerrors 2>&1 ; then \
18             $(IF) $(TEST) -s $(GENDIR)/cerrors ; then \
19                 $(ECHO) "%(from): %(cmd) %(iquote) $(dir %(from)) %(iquote) $(SRCDIR)/$(CURDIR) %(iquote) . %(iquote_end) %(opt) -c %(from) -o %(to)" >> $(GENDIR)/errors ; \
20                 tee < $(GENDIR)/cerrors -a $(GENDIR)/errors ; \
21             else \
22                 $(NOP) ; \
23             fi ; \
24         else \
25             $(ECHO) "Compile failed: %(cmd) %(iquote) $(dir %(from)) %(iquote) $(SRCDIR)/$(CURDIR) %(iquote) . %(iquote_end) %(opt) -c %(from) -o %(to)" 1>&2 ; \
26             tee < $(GENDIR)/cerrors -a $(GENDIR)/errors 1>&2 ; \
27             exit 1 ; \
28         fi
29 %end
30 #------------------------------------------------------------------------------
33 #------------------------------------------------------------------------------
34 # Assemble the file %(from) to %(to) with %(cmd) with the options in %(opt).
35 %define assemble_q cmd=$(CC) opt=$(AFLAGS) from=$< to=$@
36         @$(ECHO) "Assembling $(notdir %(from))..."
37         @$(IF) %(cmd) %(opt) %(from) -o %(to) > $(GENDIR)/cerrors 2>&1 ; then \
38             $(IF) $(TEST) -s $(GENDIR)/cerrors ; then \
39                 $(ECHO) "$(notdir %(from)): %(cmd) %(opt) %(from) -o %(to)" >> $(GENDIR)/errors ; \
40                 $(CAT) $(GENDIR)/cerrors >> $(GENDIR)/errors ; \
41             else \
42                 $(NOP) ; \
43             fi ; \
44         else \
45             $(ECHO) "Assemble failed: %(cmd) %(opt) %(from) -o %(to)" 1>&2 ; \
46             tee < $(GENDIR)/cerrors -a $(GENDIR)/errors 1>&2 ; \
47             exit 1 ; \
48         fi
49 %end
50 #-------------------------------------------------------------------------
53 #------------------------------------------------------------------------------
54 # Link a specified number of objects to an executable
55 %define link_q cmd=$(AROS_CC) opt=$(LDFLAGS) from=$< to=$@ libs=$(LIBS) strip=$(STRIP)
56         @$(ECHO) "Linking    $(subst $(TARGETDIR)/,,%(to))..."
57         @$(IF) %(cmd) %(opt) %(from) -o %(to) %(libs) 2>&1 > $(GENDIR)/cerrors 2>&1 ; then \
58                 $(IF) $(TEST) -s $(GENDIR)/cerrors ; then \
59                                 $(ECHO) "%(to): %(cmd) %(opt) %(from) -o %(to) %(libs)" >> $(GENDIR)/errors ; \
60                                 $(CAT) $(GENDIR)/cerrors >> $(GENDIR)/errors ; \
61                 else \
62                         $(NOP) ; \
63                 fi ; \
64         else \
65             $(ECHO) "Link failed: %(cmd) %(opt) %(from) -o %(to) %(libs)" 1>&2 ; \
66             tee < $(GENDIR)/cerrors -a $(GENDIR)/errors 1>&2 ; \
67             exit 1 ; \
68         fi; \
69         %(strip) %(to)
70 %end
71 #------------------------------------------------------------------------------
74 #-------------------------------------------------------------------------
75 # Link a module based upon a number of arguments and the standard $(LIBS)
76 # and $(DEPLIBS) make variables.
78 %define link_module_q err="$(notdir $@).err" objs=/A endtag= module=$(MODULE) ldflags=$(LDFLAGS) libs=$(LIBS) objdir=$(OBJDIR)
79         @$(ECHO) "Building   $(subst $(TARGETDIR)/,,$@) ..."
80         @if $(AROS_CC) $(NOSTARTUP_LDFLAGS) %(ldflags) \
81             $(GENMAP) %(objdir)/%(module).map \
82             %(objs) %(libs) %(endtag) \
83             -o $@ 2>&1 > %(objdir)/%(err); \
84         then \
85             cat %(objdir)/%(err); \
86         else \
87             echo "$(AROS_CC) $(NOSTARTUP_LDFLAGS) %(ldflags) $(GENMAP) %(objdir)/%(module).map %(objs) %(libs) %(endtag) -o $@"; \
88             cat %(objdir)/%(err); \
89             exit 1; \
90         fi
92         @if $(TEST) ! -s %(objdir)/%(err) ; then $(RM) %(objdir)/%(err) ; fi
93         @$(STRIP) $@
94 %end
95 #------------------------------------------------------------------------------
98 #------------------------------------------------------------------------------
99 # Create the library
100 %define mklib_q ar=$(AR) ranlib=$(RANLIB) to=$@ from=$(OBJS)
101         @$(ECHO) "Creating   $(subst $(TARGETDIR)/,,%(to))..."
102         @%(ar) %(to) %(from)
103         @%(ranlib) %(to)
104 %end
105 #------------------------------------------------------------------------------
108 #------------------------------------------------------------------------------
109 # Create the dependency file %(to) for %(from)
110 %define mkdepend_q flags=$(CFLAGS) from=$< to=$@ cc=$(AROS_CC)
111         %mkdir_q dir="$(dir %(to))"
112         @$(ECHO) "Makedepend $(CURDIR)/$(notdir %(from))..."
113         @AROS_CC="%(cc)" $(MKDEPEND) %(flags) -I$(TOP)/$(CURDIR) -I$(SRCDIR)/$(CURDIR) %(from) -o %(to)
114 %end
115 #------------------------------------------------------------------------------
118 #------------------------------------------------------------------------------
119 # Create one directory without any output
120 %define mkdir_q dir=.
121         @$(IF) $(TEST) ! -d %(dir) ; then $(MKDIR) %(dir) ; else $(NOP) ; fi
122 %end
123 #------------------------------------------------------------------------------
126 #------------------------------------------------------------------------------
127 # Create several directories without any output
128 %define mkdirs_q dirs=/M
129         @$(FOR) dir in %(dirs) ; do \
130             $(IF) $(TEST) ! -d $$dir ; then $(MKDIR) $$dir ; else $(NOP) ; fi ; \
131         done
132 %end
133 #------------------------------------------------------------------------------
136 #############################################################################
137 #############################################################################
138 ##                                                                         ##
139 ## Here are the mmakefile macros that are used to do certain tasks in a    ##
140 ## mmakefile. They consist of one or more full makefile rules.             ##
141 ## In general the files generated in these macros are also defined as      ##
142 ## make targets so that they can be used as a dependency in other rules    ##
143 ##                                                                         ##
144 #############################################################################
145 #############################################################################
147 #------------------------------------------------------------------------------
148 # Generate a unique id for each of the %build... rules
149 %define buildid targets=/A
150 BDID := $(BDID)_
151 ifneq ($(filter $(TARGET),%(targets)),)
152 BDTARGETID := $(BDID)
153 endif
154 %end
155 #------------------------------------------------------------------------------
158 #------------------------------------------------------------------------------
159 # Copy file %(from) to %(to) in a makefile rule
160 %define rule_copy from=/A to=/A
161 %(to) : %(from)
162         @$(CP) $< $@
163 %end
164 #------------------------------------------------------------------------------
167 #------------------------------------------------------------------------------
168 # Copy the files %(files) to %(targetdir). For each file in %(files),
169 # %(srcdir)/file is copied to %(targetdir)/file. The targetdir and the
170 # appropriate subdirs are not generated by this rule so they have to be
171 # present.
172 %define rule_copy_multi files=/A targetdir=/A srcdir=.
174 $(addprefix %(targetdir)/,%(files)) : %(targetdir)/% : %(srcdir)/%
175         @$(CP) $< $@
176 %end
177 #------------------------------------------------------------------------------
180 #------------------------------------------------------------------------------
181 # Copy the files %(files) to %(targetdir). For each file in %(files),
182 # %(srcdir)/file is copied to %(targetdir)/file if these files are different.
183 # %(stampfile) is used to keep track of when the last time the comparison has
184 # been done. The targetdir and the appropriate subdirs are not generated by 
185 # this rule so they have to be present.
186 %define rule_copy_diff_multi files=/A targetdir=/A srcdir=. \
187     stampfile=$(TMP_SRCDIR)/.copy_stamp
189 TMP_SRCDIR := %(srcdir)
191 $(addprefix %(targetdir)/,%(files)) : | %(stampfile)
193 %(stampfile) : COPYSRCDIR := %(srcdir)
194 %(stampfile) : TGTDIR := %(targetdir)
195 %(stampfile) : FILES := %(files)
196 %(stampfile) : $(addprefix %(srcdir)/,%(files))
197         @for f in $(FILES); do \
198              $(IF) ! $(CMP) -s $(COPYSRCDIR)/$$f $(TGTDIR)/$$f ; then \
199                  $(CP) $(COPYSRCDIR)/$$f $(TGTDIR)/$$f ; \
200              fi ; \
201         done
202         @$(TOUCH) $@
203 %end
204 #------------------------------------------------------------------------------
207 #------------------------------------------------------------------------------
208 # Will join all the files in %(from) to %(to). When text is specified it will
209 # be displayed.
210 # Restriction: at the moment when using a non-empty target dir %(from) may
211 # not have 
212 %define rule_join to=/A from=/A text=
214 %(to) : %(from)
215 ifneq (%(text),)
216         @$(ECHO) %(text)
217 endif
218         @$(CAT) $^ >$@
219 %end
220 #------------------------------------------------------------------------------
223 #------------------------------------------------------------------------------
224 # Include the dependency files and add some internal rules
225 # When depstargets is provided the depencies will only be included when one of
226 # these targets is the $(TARGET). Otherwise the dependencies will only be
227 # included when the $(TARGET) is not for setup or clean 
228 %define include_deps deps=$(DEPS)/M  depstargets=
229 ifneq (%(deps),)
230   ifneq (%(depstargets),)
231     ifneq ($(findstring $(TARGET),%(depstargets)),)
232       -include %(deps)
233     endif
234   else
235     ifeq (,$(filter clean% %clean %clean% setup% includes% %setup,$(TARGET)))
236       -include %(deps)
237     endif
238   endif
239 endif
240 %end
241 #------------------------------------------------------------------------------
244 #------------------------------------------------------------------------------
245 # Create the directories %(dirs). The creation will be done by adding rules to
246 # the %(setuptarget) make target with setup as the default. 
247 %define rule_makedirs dirs=/A setuptarget=setup
249 %(setuptarget) :: %(dirs)
251 GLOB_MKDIRS += %(dirs)
253 %end
254 #------------------------------------------------------------------------------
257 #------------------------------------------------------------------------------
258 # Generate a rule to compile a C source file to an object file and generate
259 # the dependency file. Basename may contain a directory part, then the source
260 # file has to be in that directory. The generated file will be put in the
261 # object directory without the directory.
262 # options
263 # - basename: the basename of the file to compile. Use % for a wildcard rule
264 # - cflags (default $(CFLAGS)): the C flags to use for compilation
265 # - dflags: the flags used during creation of dependency file. If not specified
266 #   the same value as cflags will be used
267 # - targetdir: the directory to put the .o file and the .d file. By default
268 #   it is put in the same directory as the .c file
269 %define rule_compile basename=/A cflags=$(CFLAGS) dflags= targetdir= compiler=target nix=no
271 ifeq (%(targetdir),)
272   TMP_TARGETBASE := %(basename)
273 else
274   TMP_TARGETBASE := %(targetdir)/$(notdir %(basename))
275 endif
277 ifeq ($(findstring %(compiler),host kernel target),)
278   $(error unknown compiler %(compiler))
279 endif
280 ifeq (%(compiler),target)
281 $(TMP_TARGETBASE).o : TMP_CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
282 $(TMP_TARGETBASE).d : TMP_CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
283 $(TMP_TARGETBASE).o : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
284 $(TMP_TARGETBASE).d : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
285 $(TMP_TARGETBASE).o : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
286 $(TMP_TARGETBASE).d : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
287 endif
288 ifeq (%(compiler),host)
289 $(TMP_TARGETBASE).o : TMP_CMD:=$(HOST_CC)
290 $(TMP_TARGETBASE).d : TMP_CMD:=$(HOST_CC)
291 $(TMP_TARGETBASE).o : TMP_IQUOTE:=$(HOST_IQUOTE)
292 $(TMP_TARGETBASE).d : TMP_IQUOTE:=$(HOST_IQUOTE)
293 $(TMP_TARGETBASE).o : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
294 $(TMP_TARGETBASE).d : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
295 endif
296 ifeq (%(compiler),kernel)
297 $(TMP_TARGETBASE).o : TMP_CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
298 $(TMP_TARGETBASE).d : TMP_CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
299 $(TMP_TARGETBASE).o : TMP_IQUOTE:=$(KERNEL_IQUOTE)
300 $(TMP_TARGETBASE).d : TMP_IQUOTE:=$(KERNEL_IQUOTE)
301 $(TMP_TARGETBASE).o : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
302 $(TMP_TARGETBASE).d : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
303 endif
305 ifeq (%(nix),yes)
306   $(TMP_TARGETBASE).o : CFLAGS := -nix %(cflags)
307 else
308   $(TMP_TARGETBASE).o : CFLAGS := %(cflags)
309 endif
310 $(TMP_TARGETBASE).o : %(basename).c
311         %compile_q cmd=$(TMP_CMD) iquote=$(TMP_IQUOTE) iquote_end=$(TMP_IQUOTE_END)
313 ifeq (%(dflags),)
314   ifeq (%(nix),yes)
315     $(TMP_TARGETBASE).d : TMP_DFLAGS:=-nix %(cflags)
316   else
317     $(TMP_TARGETBASE).d : TMP_DFLAGS:=%(cflags)
318   endif
319 else
320   ifeq (%(nix),yes)
321     $(TMP_TARGETBASE).d : TMP_DFLAGS:=-nix %(dflags)
322   else
323     $(TMP_TARGETBASE).d : TMP_DFLAGS:=%(dflags)
324   endif
325 endif
326 $(TMP_TARGETBASE).d : %(basename).c
327         %mkdepend_q cc=$(TMP_CMD) flags=$(TMP_DFLAGS)
328 %end
329 #------------------------------------------------------------------------------
332 #------------------------------------------------------------------------------
333 # Generate a rule to compile a C++ source file to an object file and generate
334 # the dependency file. Basename may contain a directory part, then the source
335 # file has to be in that directory. The generated file will be put in the
336 # object directory without the directory.
337 # options
338 # - basename: the basename of the file to compile. Use % for a wildcard rule
339 # - cflags (default $(CFLAGS)): the C flags to use for compilation
340 # - dflags: the flags used during creation of dependency file. If not specified
341 #   the same value as cflags will be used
342 # - targetdir: the directory to put the .o file and the .d file. By default
343 #   it is put in the same directory as the .c file
344 %define rule_compile_cxx basename=/A cflags=$(CFLAGS) dflags= targetdir= compiler=target nix=no
346 ifeq (%(targetdir),)
347   TMP_TARGETBASE := %(basename)
348 else
349   TMP_TARGETBASE := %(targetdir)/$(notdir %(basename))
350 endif
352 # Adjust compiler flags to suit C++
353 TMP_CXXFLAGS := %(cflags)
354 TMP_CXXFLAGS := $(TMP_CXXFLAGS) -fno-rtti -fno-exceptions -fno-check-new -isystem $(AROS_DEVELOPMENT)/include
355 TMP_CXXFLAGS := $(subst -Wno-pointer-sign,, $(subst -Werror-implicit-function-declaration,, $(TMP_CXXFLAGS)))
357 ifeq ($(findstring %(compiler),host kernel target),)
358   $(error unknown compiler %(compiler))
359 endif
360 ifeq (%(compiler),target)
361 $(TMP_TARGETBASE).o : TMP_CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
362 $(TMP_TARGETBASE).d : TMP_CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
363 $(TMP_TARGETBASE).o : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
364 $(TMP_TARGETBASE).d : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
365 $(TMP_TARGETBASE).o : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
366 $(TMP_TARGETBASE).d : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
367 endif
368 ifeq (%(compiler),host)
369 $(TMP_TARGETBASE).o : TMP_CMD:=$(HOST_CC)
370 $(TMP_TARGETBASE).d : TMP_CMD:=$(HOST_CC)
371 $(TMP_TARGETBASE).o : TMP_IQUOTE:=$(HOST_IQUOTE)
372 $(TMP_TARGETBASE).d : TMP_IQUOTE:=$(HOST_IQUOTE)
373 $(TMP_TARGETBASE).o : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
374 $(TMP_TARGETBASE).d : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
375 endif
376 ifeq (%(compiler),kernel)
377 $(TMP_TARGETBASE).o : TMP_CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
378 $(TMP_TARGETBASE).d : TMP_CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
379 $(TMP_TARGETBASE).o : TMP_IQUOTE:=$(KERNEL_IQUOTE)
380 $(TMP_TARGETBASE).d : TMP_IQUOTE:=$(KERNEL_IQUOTE)
381 $(TMP_TARGETBASE).o : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
382 $(TMP_TARGETBASE).d : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
383 endif
385 ifeq (%(nix),yes)
386   $(TMP_TARGETBASE).o : CFLAGS := -nix $(TMP_CXXFLAGS)
387 else
388   $(TMP_TARGETBASE).o : CFLAGS := $(TMP_CXXFLAGS)
389 endif
390 $(TMP_TARGETBASE).o : %(basename).cpp
391         %compile_q cmd=$(TMP_CMD) iquote=$(TMP_IQUOTE) iquote_end=$(TMP_IQUOTE_END)
393 ifeq (%(dflags),)
394   ifeq (%(nix),yes)
395     $(TMP_TARGETBASE).d : TMP_DFLAGS:=-nix $(TMP_CXXFLAGS)
396   else
397     $(TMP_TARGETBASE).d : TMP_DFLAGS:=$(TMP_CXXFLAGS)
398   endif
399 else
400   ifeq (%(nix),yes)
401     $(TMP_TARGETBASE).d : TMP_DFLAGS:=-nix %(dflags)
402   else
403     $(TMP_TARGETBASE).d : TMP_DFLAGS:=%(dflags)
404   endif
405 endif
406 $(TMP_TARGETBASE).d : %(basename).cpp
407         %mkdepend_q cc=$(TMP_CMD) flags=$(TMP_DFLAGS)
408 %end
409 #------------------------------------------------------------------------------
412 #------------------------------------------------------------------------------
413 # Generate a rule to compile multiple C source files to an object file and
414 # generate the corresponding dependency files. The generated file will be put
415 # in the object directory without the directory part of the source file.
416 # options
417 # - basenames: the basenames of the files to compile. The names may include
418 #   relative or absolute path names. No wildcard is allowed
419 # - cflags (default $(CFLAGS)): the C flags to use for compilation
420 # - dflags: the flags used during creation of dependency file. If not specified
421 #   the same value as cflags will be used
422 # - targetdir: the directory to put the .o file and the .d file. By default
423 #   it is put in the same directory as the .c file. When targetdir is not
424 #   empty, path names will be stripped from the file names so that all files
425 #   are in that dir and not in subdirectories.
426 # - compiler (default target): compiler to use, target, kernel or host
427 %define rule_compile_multi basenames=/A cflags=$(CFLAGS) dflags= targetdir= \
428     compiler=target
430 ifeq (%(targetdir),)
431 TMP_TARGETS := $(addsuffix .o,%(basenames))
432 TMP_DTARGETS := $(addsuffix .d,%(basenames))
433 TMP_WILDCARD := %
434 else
435 TMP_TARGETS := $(addsuffix .o,$(addprefix %(targetdir)/,$(notdir %(basenames))))
436 TMP_DTARGETS := $(addsuffix .d,$(addprefix %(targetdir)/,$(notdir %(basenames))))
437 TMP_WILDCARD := %(targetdir)/%
439 # Be sure that all .c files are generated
440 $(TMP_TARGETS) $(TMP_DTARGETS) : | $(addsuffix .c,%(basenames))
442 # Be sure that all .c files are found
443 TMP_SRCDIR := $(shell echo $(SRCDIR) | sed 's/^\(.\):\//\/\1\//')
444 TMP_BASEDIRS := $(shell echo $(sort $(dir %(basenames))) | sed 's/\(.\):\//\/\1\//g')
445 TMP_DIRS := $(foreach dir, $(TMP_BASEDIRS), $(if $(filter /%,$(dir)),$(dir),$(TMP_SRCDIR)/$(CURDIR)/$(dir)))
446 ifneq ($(TMP_DIRS),)
447     TMP_DIRS := $(shell echo $(TMP_DIRS) | sed 's/\(.\):\//\/\1\//g')
448     vpath %.c $(TMP_DIRS)
449 endif
451 endif
453 ifeq ($(findstring %(compiler),host kernel target),)
454   $(error unknown compiler %(compiler))
455 endif
456 ifeq (%(compiler),target)
457 $(TMP_TARGETS) $(TMP_DTARGETS) : CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
458 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
459 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
460 endif
461 ifeq (%(compiler),host)
462 $(TMP_TARGETS) $(TMP_DTARGETS) : CMD:=$(HOST_CC)
463 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE:=$(HOST_IQUOTE)
464 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
465 endif
466 ifeq (%(compiler),kernel)
467 $(TMP_TARGETS) $(TMP_DTARGETS) : CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
468 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE:=$(KERNEL_IQUOTE)
469 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
470 endif
472 $(TMP_TARGETS) : CFLAGS := %(cflags)
473 $(TMP_TARGETS) : $(TMP_WILDCARD).o : %.c
474         %compile_q cmd=$(CMD) iquote=$(TMP_IQUOTE) iquote_end=$(TMP_IQUOTE_END)
476 ifeq (%(dflags),)
477 $(TMP_DTARGETS) : DFLAGS:=%(cflags)
478 else
479 $(TMP_DTARGETS) : DFLAGS:=%(dflags)
480 endif
481 $(TMP_DTARGETS) : $(TMP_WILDCARD).d : %.c
482         %mkdepend_q cc=$(CMD) flags=$(DFLAGS)
483 %end
484 #------------------------------------------------------------------------------
487 #------------------------------------------------------------------------------
488 # Generate a rule to compile multiple C++ source files to an object file and
489 # generate the corresponding dependency files. The generated file will be put
490 # in the object directory without the directory part of the source file.
491 # options
492 # - basenames: the basenames of the files to compile. The names may include
493 #   relative or absolute path names. No wildcard is allowed
494 # - cflags (default $(CFLAGS)): the C flags to use for compilation
495 # - dflags: the flags used during creation of dependency file. If not specified
496 #   the same value as cflags will be used
497 # - targetdir: the directory to put the .o file and the .d file. By default
498 #   it is put in the same directory as the .c file. When targetdir is not
499 #   empty, path names will be stripped from the file names so that all files
500 #   are in that dir and not in subdirectories.
501 # - compiler (default target): compiler to use, target, kernel or host
502 %define rule_compile_cxx_multi basenames=/A cflags=$(CFLAGS) dflags= \
503     targetdir= compiler=target
505 # Adjust compiler flags to suit C++
506 TMP_CXXFLAGS := %(cflags)
507 TMP_CXXFLAGS := $(TMP_CXXFLAGS) -fno-rtti -fno-exceptions -fno-check-new -isystem $(AROS_DEVELOPMENT)/include
508 TMP_CXXFLAGS := $(subst -Wno-pointer-sign,, $(subst -Werror-implicit-function-declaration,, $(TMP_CXXFLAGS)))
510 ifeq (%(targetdir),)
511 TMP_TARGETS := $(addsuffix .o,%(basenames))
512 TMP_DTARGETS := $(addsuffix .d,%(basenames))
513 TMP_WILDCARD := %
514 else
515 TMP_TARGETS := $(addsuffix .o,$(addprefix %(targetdir)/,%(basenames)))
516 TMP_DTARGETS := $(addsuffix .d,$(addprefix %(targetdir)/,%(basenames)))
517 TMP_WILDCARD := %(targetdir)/%
519 # Be sure that all .cpp files are generated
520 $(TMP_TARGETS) $(TMP_DTARGETS) : | $(addsuffix .cpp,%(basenames))
522 # Be sure that all .cpp files are found
523 TMP_SRCDIR := $(shell echo $(SRCDIR) | sed 's/^\(.\):\//\/\1\//')
524 TMP_BASEDIRS := $(shell echo $(sort $(dir %(basenames))) | sed 's/\(.\):\//\/\1\//g')
525 TMP_DIRS := $(foreach dir, $(TMP_BASEDIRS), $(if $(filter /%,$(dir)),$(dir),$(TMP_SRCDIR)/$(CURDIR)/$(dir)))
526 ifneq ($(TMP_DIRS),)
527     TMP_DIRS := $(shell echo $(TMP_DIRS) | sed 's/\(.\):\//\/\1\//g')
528     vpath %.cpp $(TMP_DIRS)
529 endif
531 endif
533 # Define the use of cross compiler
534 ifeq ($(TARGET_CXX),)
535   TMP_CC := $(CROSSTOOLSDIR)/$(AROS_TARGET_CPU)-aros-g++
536 else
537   TMP_CC := $(TARGET_CXX)
538 endif
540 ifeq ($(findstring %(compiler),host kernel target),)
541   $(error unknown compiler %(compiler))
542 endif
543 ifeq (%(compiler),target)
544 $(TMP_TARGETS) $(TMP_DTARGETS) : CMD:=$(TMP_CC) $(TARGET_CFLAGS)
545 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
546 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
547 endif
548 ifeq (%(compiler),host)
549 $(TMP_TARGETS) $(TMP_DTARGETS) : CMD:=$(HOST_CXX)
550 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE:=$(HOST_IQUOTE)
551 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
552 endif
553 ifeq (%(compiler),kernel)
554 $(TMP_TARGETS) $(TMP_DTARGETS) : CMD:=$(KERNEL_CXX) $(KERNEL_CFLAGS)
555 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE:=$(KERNEL_IQUOTE)
556 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
557 endif
559 $(TMP_TARGETS) : CFLAGS := $(TMP_CXXFLAGS)
560 $(TMP_TARGETS) : $(TMP_WILDCARD).o : %.cpp
561         %compile_q cmd=$(CMD) iquote=$(TMP_IQUOTE) iquote_end=$(TMP_IQUOTE_END)
563 ifeq (%(dflags),)
564 $(TMP_DTARGETS) : DFLAGS:=$(TMP_CXXFLAGS)
565 else
566 $(TMP_DTARGETS) : DFLAGS:=%(dflags)
567 endif
568 $(TMP_DTARGETS) : $(TMP_WILDCARD).d : %.cpp
569         %mkdepend_q cc=$(CMD) flags=$(DFLAGS)
570 %end
571 #------------------------------------------------------------------------------
574 #------------------------------------------------------------------------------
575 # Make an alias from one arch specific build to another arch.
576 # arguments:
577 # - mainmmake: the mmake of the module in the main tree
578 # - arch: the current arch
579 # - alias: the alias to which this should point
580 %define rule_archalias mainmmake=\A arch=\A alias=\A
582 #MM- %(mainmmake)-%(arch) : %(mainmmake)-%(alias)
583 %end
584 #------------------------------------------------------------------------------
587 #------------------------------------------------------------------------------
588 # Generate a rule to assemble a source file to an object file. Basename may
589 # contain a directory part, then the source file has to be in that directory.
590 # The generated file will be put in the object directory without the directory.
591 # options
592 # - basename: the basename of the file to compile. Use % for a wildcard rule
593 # - flags (default $(AFLAGS)): the asm flags to use for assembling
594 # - targetdir: the directory to put the .o file in. By default it is put in the
595 #   same directory as the .s file
596 %define rule_assemble basename=/A aflags=$(AFLAGS) targetdir=
598 ifeq (%(targetdir),)
599 %(basename).o : AFLAGS := %(aflags)
600 %(basename).o : %(basename).s
601         %assemble_q
602 %(basename).o : %(basename).S
603         %assemble_q
605 else
606 %(targetdir)/$(notdir %(basename)).o : AFLAGS := %(aflags)
607 %(targetdir)/$(notdir %(basename)).o : %(basename).s
608         %assemble_q
609 %(targetdir)/$(notdir %(basename)).o : %(basename).S
610         %assemble_q
612 endif
613 %end
614 #------------------------------------------------------------------------------
617 #------------------------------------------------------------------------------
618 # Generate a rule to assemble multiple source files to an object file. The
619 # generated file will be put in the object directory with the directory part
620 # of the source file stripped off.
621 # options
622 # - basenames: the basenames of the files to compile. The names may include
623 #   relative or absolute path names. No wildcard is allowed
624 # - aflags (default $(AFLAGS)): the flags to use for assembly
625 # - targetdir: the directory to put the .o file and the .d file. By default
626 #   it is put in the same directory as the .c file. When targetdir is not
627 #   empty, path names will be stripped from the file names so that all files
628 #   are in that dir and not in subdirectories.
629 %define rule_assemble_multi basenames=/A aflags=$(AFLAGS) targetdir= suffix=.s compiler=target
631 ifeq (%(targetdir),)
632 TMP_TARGETS := $(addsuffix .o,%(basenames))
633 TMP_WILDCARD := %
634 else
635 TMP_TARGETS := $(addsuffix .o,$(addprefix %(targetdir)/,$(notdir %(basenames))))
636 TMP_WILDCARD := %(targetdir)/%
638 # Be sure that all .s files are generated
639 $(TMP_TARGETS) : | $(addsuffix %(suffix),%(basenames))
641 # Be sure that all .c files are found
642 TMP_SRCDIR := $(shell echo $(SRCDIR) | sed 's/^\(.\):\//\/\1\//')
643 TMP_BASEDIRS := $(shell echo $(sort $(dir %(basenames))) | sed 's/\(.\):\//\/\1\//g')
644 TMP_DIRS := $(foreach dir, $(TMP_BASEDIRS), $(if $(filter /%,$(dir)),$(dir),$(TMP_SRCDIR)/$(CURDIR)/$(dir)))
645 ifneq ($(TMP_DIRS),)
646     TMP_DIRS := $(shell echo $(TMP_DIRS) | sed 's/\(.\):\//\/\1\//g')
647     vpath %%(suffix) $(TMP_DIRS)
648 endif
650 endif
652 ifeq ($(findstring %(compiler),host kernel target),)
653   $(error unknown compiler %(compiler))
654 endif
655 ifeq (%(compiler),target)
656 $(TMP_TARGETS) : TMP_CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
657 endif
658 ifeq (%(compiler),host)
659 $(TMP_TARGETS) : TMP_CMD:=$(HOST_CC)
660 endif
661 ifeq (%(compiler),kernel)
662 $(TMP_TARGETS) : TMP_CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
663 endif
665 $(TMP_TARGETS) : AFLAGS := %(aflags)
666 $(TMP_TARGETS) : $(TMP_WILDCARD).o : %%(suffix)
667         %assemble_q cmd=$(TMP_CMD) opt=$(AFLAGS)
668 %end
669 #------------------------------------------------------------------------------
672 #------------------------------------------------------------------------------
673 # Link %(objs) to %(prog) using the libraries in %(uselibs)
674 %define rule_link_prog prog=/A objs=/A ldflags=$(LDFLAGS) uselibs= \
675     usehostlibs= usestartup=yes detach=no nix=no linker=target
677 TMP_EXTRA_LDFLAGS := 
678 TMP_EXTRA_LIBS :=
679 ifeq (%(nix),yes)
680     TMP_EXTRA_LDFLAGS += $(NIX_LDFLAGS)
681 endif
682 ifeq (%(usestartup),no)
683     TMP_EXTRA_LDFLAGS += $(NOSTARTUP_LDFLAGS)
684     TMP_EXTRA_LIBS += arosc.static
685     ifeq (%(linker),target)
686         TMP_EXTRA_LIBS += libinit autoinit
687     endif
688 endif
689 ifeq (%(detach),yes)
690     TMP_EXTRA_LDFLAGS += $(DETACH_LDFLAGS)
691 endif
693 # Make a list of the lib files this program depends on.
694 # In LDFLAGS remove white space between -L and directory
695 TMP_DIRS := $(subst -L ,-L,$(strip %(ldflags)))
696 # Filter out only the libdirs and remove -L
697 TMP_DIRS := $(patsubst -L%,%,$(filter -L%,$(TMP_DIRS)))
698 # Add trailing /
699 TMP_DIRS := $(subst //,/,$(addsuffix /,$(TMP_DIRS)))
700 # Add normal linklib path
701 TMP_DIRS += $(LIBDIR)/
702 # add lib and .a to static linklib names
703 TMP_LIBS := $(addprefix lib,$(addsuffix .a,%(uselibs) $(TMP_EXTRA_LIBS)))
704 ifeq (%(usestartup),yes)
705     TMP_LIBS += startup.o
706 endif
707 ifeq (%(detach),yes)
708     TMP_LIBS += detach.o
709 endif
710 # search for the linklibs in the given path, ignore ones not found
711 TMP_DEPLIBS := $(foreach lib,$(TMP_LIBS), \
712     $(firstword $(wildcard $(addsuffix $(lib),$(TMP_DIRS)))) \
715 ifeq (%(linker),target)
716 %(prog) : CMD:=$(TARGET_CC)
717 %(prog) : STRIPCMD:=$(TARGET_STRIP)
718 endif
719 ifeq (%(linker),host)
720 %(prog) : CMD:=$(HOST_CC)
721 %(prog) : STRIPCMD:=$(HOST_STRIP)
722 endif
723 ifeq (%(linker),kernel)
724 %(prog) : CMD:=$(KERNEL_CC) $(KERNEL_LDFLAGS)
725 %(prog) : STRIPCMD:=$(ECHO) >/dev/null
726 endif
728 %(prog) : OBJS := %(objs)
729 %(prog) : LDFLAGS := %(ldflags) $(TMP_EXTRA_LDFLAGS)
730 %(prog) : LIBS := $(addprefix -l,%(uselibs) $(TMP_EXTRA_LIBS) %(usehostlibs))
731 %(prog) : %(objs) $(TMP_DEPLIBS)
732         %link_q from=$(OBJS) opt=$(LDFLAGS) libs=$(LIBS) cmd=$(CMD) strip=$(STRIPCMD)
733 %end
734 #------------------------------------------------------------------------------
737 #------------------------------------------------------------------------------
738 # Link %(progs) from object in %(objdir) to executables in %(targetdir) using
739 # the AROS libraries in %(uselibs) and the host libraries in %(usehostlibs)
740 %define rule_link_progs progs=/A targetdir=$(AROSDIR)/$(CURDIR) nix=%(nix) \
741     objdir=$(GENDIR)/$(CURDIR) ldflags=$(LDFLAGS) uselibs= usehostlibs= \
742     usestartup=yes detach=no
744 TMP_EXTRA_LDFLAGS := 
745 TMP_EXTRA_LIBS :=
746 ifeq (%(nix),yes)
747     TMP_EXTRA_LDFLAGS += $(NIX_LDFLAGS)
748 endif
749 ifeq (%(usestartup),no)
750     TMP_EXTRA_LDFLAGS += $(NOSTARTUP_LDFLAGS)
751     TMP_EXTRA_LIBS += arosc.static libinit autoinit
752 endif
753 ifeq (%(detach),yes)
754     TMP_EXTRA_LDFLAGS += $(DETACH_LDFLAGS)
755 endif
757 # Make a list of the lib files the programs depend on.
758 # In LDFLAGS remove white space between -L and directory
759 TMP_DIRS := $(subst -L ,-L,$(strip %(ldflags)))
760 # Filter out only the libdirs and remove -L
761 TMP_DIRS := $(patsubst -L%,%,$(filter -L%,$(TMP_DIRS)))
762 # Add trailing /
763 TMP_DIRS := $(subst //,/,$(addsuffix /,$(TMP_DIRS)))
764 # Add normal linklib path
765 TMP_DIRS += $(LIBDIR)/
766 # add lib and .a to static linklib names
767 TMP_LIBS := $(addprefix lib,$(addsuffix .a,%(uselibs) $(TMP_EXTRA_LIBS)))
768 # search for the linklibs in the given path, ignore ones not found
769 TMP_DEPLIBS := $(foreach lib,$(TMP_LIBS), \
770     $(firstword $(wildcard $(addsuffix $(lib),$(TMP_DIRS)))) \
773 $(addprefix %(targetdir)/,%(progs)) : LDFLAGS:= %(ldflags) $(TMP_EXTRA_LDFLAGS)
774 $(addprefix %(targetdir)/,%(progs)) : LIBS:= $(addprefix -l,%(uselibs) $(TMP_EXTRA_LIBS) %(usehostlibs))
775 $(addprefix %(targetdir)/,%(progs)) : %(targetdir)/% : %(objdir)/%.o $(TMP_DEPLIBS)
776         %link_q from=$< opt=$(LDFLAGS) libs=$(LIBS)
777 %end
778 #------------------------------------------------------------------------------
781 #------------------------------------------------------------------------------
782 # Link the %(objs) to the library %(libdir)/lib%(libname).a
783 %define rule_link_linklib libname=/A objs=/A libdir=$(LIBDIR) linker=target
785 ifeq (%(linker),target)
786 %(libdir)/lib%(libname).a : TMP_AR:=$(AR)
787 %(libdir)/lib%(libname).a : TMP_RANLIB:=$(RANLIB)
788 endif
789 ifeq (%(linker),host)
790 %(libdir)/lib%(libname).a : TMP_AR:=$(HOST_AR)
791 %(libdir)/lib%(libname).a : TMP_RANLIB:=$(HOST_RANLIB)
792 endif
793 ifeq (%(linker),kernel)
794 %(libdir)/lib%(libname).a : TMP_AR:=$(KERNEL_AR)
795 %(libdir)/lib%(libname).a : TMP_RANLIB:=$(KERNEL_RANLIB)
796 endif
798 %(libdir)/lib%(libname).a : %(objs)
799         %mklib_q from=$^ ar=$(TMP_AR) ranlib=$(TMP_RANLIB)
800 %end
801 #------------------------------------------------------------------------------
803 #------------------------------------------------------------------------------
804 # Link the %(objs) and %(endobj) to %(module) with errors in %(err) and using
805 # the libraries in %(uselibs) and the host libraries in %(usehostlibs)
806 # The -noarosc flag is added so that modules are not linked with arosc.library
807 # (see /config/specs.in file)
808 %define rule_linkmodule module=/A objs=/A endobj=/A err=/A objdir=$(OBJDIR) \
809     ldflags=$(LDFLAGS) uselibs= usehostlibs=
811 TMP_LDFLAGS  := %(ldflags)
812 # Make a list of the lib files the programs depend on.
813 # In LDFLAGS remove white space between -L and directory
814 TMP_DIRS := $(subst -L ,-L,$(strip $(TMP_LDFLAGS)))
815 # Filter out only the libdirs and remove -L
816 TMP_DIRS := $(patsubst -L%,%,$(filter -L%,$(TMP_DIRS)))
817 # Add trailing /
818 TMP_DIRS := $(subst //,/,$(addsuffix /,$(TMP_DIRS)))
819 # Add normal linklib path
820 TMP_DIRS += $(LIBDIR)/
821 # add lib and .a to static linklib names
822 TMP_LIBS := $(addprefix lib,$(addsuffix .a,%(uselibs) libinit autoinit))
823 # search for the linklibs in the given path, ignore ones not found
824 TMP_DEPLIBS := $(foreach lib,$(TMP_LIBS), \
825     $(firstword $(wildcard $(addsuffix $(lib),$(TMP_DIRS)))) \
828 %(module) : LIB_NAMES := %(uselibs)
829 %(module) : OBJS := %(objs)
830 %(module) : ENDTAG := %(endobj)
831 %(module) : ERR := %(err)
832 %(module) : OBJDIR := %(objdir)
833 %(module) : LDFLAGS := $(TMP_LDFLAGS)
834 %(module) : LIBS := $(addprefix -l,$(LIB_NAMES)) \
835                     -L/usr/lib $(addprefix -l,%(usehostlibs))
836 %(module) : %(objs) %(endobj) $(TMP_DEPLIBS) $(USER_DEPLIBS)
837         %link_module_q err=$(ERR) endtag=$(ENDTAG) objs=$(OBJS) libs=$(LIBS) objdir=$(OBJDIR) ldflags="$(LDFLAGS) -noarosc"
839 %end
840 #------------------------------------------------------------------------------
843 #------------------------------------------------------------------------------
844 # Generate the libdefs.h include file for a module.
845 %define rule_genmodule_genlibdefs modname=/A modtype=/A modsuffix= conffile= targetdir= version=
847 TMP_TARGET := %(modname)_libdefs.h
848 TMP_DEPS := $(GENMODULE)
849 TMP_OPTS := 
850 ifneq (%(conffile),)
851     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(conffile)
852     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(conffile)
853 else
854     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(modname).conf
855     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(modname).conf
856 endif
857 ifneq (%(modsuffix),)
858     TMP_OPTS += -s %(modsuffix)
859 endif
860 ifneq (%(targetdir),)
861     TMP_OPTS += -d %(targetdir)
862     TMP_TARGET := %(targetdir)/$(TMP_TARGET)
863 endif
864 ifneq (%(version),)
865     TMP_OPTS += -v %(version)
866 endif
868 $(TMP_TARGET) : OPTS := $(TMP_OPTS)
869 $(TMP_TARGET) : MODNAME := %(modname)
870 $(TMP_TARGET) : MODTYPE := %(modtype)
871 $(TMP_TARGET) : $(TMP_DEPS)
872         @$(ECHO) "Generating $(subst $(TARGETDIR)/,,$@)"
873         @$(GENMODULE) $(OPTS) writelibdefs $(MODNAME) $(MODTYPE)
874 %end
875 #------------------------------------------------------------------------------
877 #------------------------------------------------------------------------------
878 # Generate the _lib.fd file for a module.
879 %define rule_genmodule_fd modname=/A modtype=/A modsuffix= conffile= targetdir=
881 TMP_TARGET := %(modname)_lib.fd
882 TMP_DEPS := $(GENMODULE)
883 TMP_OPTS := 
884 ifneq (%(conffile),)
885     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(conffile)
886     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(conffile)
887 else
888     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(modname).conf
889     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(modname).conf
890 endif
891 ifneq (%(modsuffix),)
892     TMP_OPTS += -s %(modsuffix)
893 endif
894 ifneq (%(targetdir),)
895     TMP_OPTS += -d %(targetdir)
896     TMP_TARGET := %(targetdir)/$(TMP_TARGET)
897 endif
899 $(TMP_TARGET) : OPTS := $(TMP_OPTS)
900 $(TMP_TARGET) : MODNAME := %(modname)
901 $(TMP_TARGET) : MODTYPE := %(modtype)
902 $(TMP_TARGET) : $(TMP_DEPS)
903         @$(ECHO) "Generating $(subst $(TARGETDIR)/,,$@)"
904         @$(GENMODULE) $(OPTS) writefd $(MODNAME) $(MODTYPE)
905 %end
906 #------------------------------------------------------------------------------
908 #------------------------------------------------------------------------------
909 # Generate a Makefile.%(modname) with the genmodule program and include this
910 # generated file in this Makefile
911 %define rule_genmodule_makefile modname=/A modtype=/A modsuffix= conffile= \
912     targetdir=
914 TMP_TARGET := Makefile.%(modname)
915 TMP_DEPS := $(GENMODULE)
916 TMP_OPTS := 
917 ifneq (%(conffile),)
918     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(conffile)
919     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(conffile)
920 else
921     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(modname).conf
922     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(modname).conf
923 endif
924 ifneq (%(modsuffix),)
925     TMP_OPTS += -s %(modsuffix)
926 endif
927 ifneq (%(targetdir),)
928     TMP_OPTS += -d %(targetdir)
929     TMP_TARGET := %(targetdir)/$(TMP_TARGET)
930 endif
932 $(TMP_TARGET) : OPTS := $(TMP_OPTS)
933 $(TMP_TARGET) : MODNAME := %(modname)
934 $(TMP_TARGET) : MODTYPE := %(modtype)
935 $(TMP_TARGET) : $(TMP_DEPS)
936         @$(GENMODULE) $(OPTS) writemakefile $(MODNAME) $(MODTYPE)
937 %end
938 #------------------------------------------------------------------------------
941 #------------------------------------------------------------------------------
942 # Generate the support files for compiling a module. This includes include
943 # files and source files. This rule has to be preceeded by
944 # %rule_genmodule_makefile
945 %define rule_genmodule_files modname=/A modtype=/A modsuffix= targetdir= \
946     conffile=
948 TMP_TARGETS := $(%(modname)_STARTFILES) $(%(modname)_ENDFILES) \
949                $(%(modname)_LINKLIBFILES) $(%(modname)_RELLINKLIBFILES)
950 TMP_TARGETS := $(addsuffix .c,$(TMP_TARGETS)) \
951                $(addsuffix .S, $(%(modname)_LINKLIBAFILES) $(%(modname)_RELLINKLIBAFILES))
953 TMP_DEPS := $(GENMODULE)
954 TMP_OPTS :=
956 ifneq (%(conffile),)
957     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(conffile)
958     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(conffile)
959 else
960     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(modname).conf
961     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(modname).conf
962 endif
963 ifneq (%(modsuffix),)
964     TMP_OPTS += -s %(modsuffix)
965 endif
966 ifneq (%(targetdir),)
967     TMP_OPTS += -d %(targetdir)
968     TMP_TARGETDIR := $(shell echo %(targetdir) | sed 's/^\(.\):\//\/\1\//')
969     TMP_TARGETS := $(addprefix $(TMP_TARGETDIR)/,$(TMP_TARGETS))
970 endif
972 $(TMP_TARGETS) : OPTS := $(TMP_OPTS)
973 $(TMP_TARGETS) : MODNAME := %(modname)
974 $(TMP_TARGETS) : MODTYPE := %(modtype)
975 $(TMP_TARGETS) : $(TMP_DEPS)
976         @$(ECHO) "Generating support files for module $(MODNAME$(BDID))"
977 ifneq (%(conffile),lib.conf)
978         @$(IF) $(TEST) -f lib.conf; then \
979           $(ECHO) "WARNING !!! $(CURDIR)/lib.conf may probably be removed"; \
980         fi
981 endif
982         @$(IF) $(TEST) -f libdefs.h; then \
983           $(ECHO) "WARNING !!! $(CURDIR)/libdefs.h may probably be removed"; \
984         fi
985         @$(GENMODULE) $(OPTS) writefiles $(MODNAME) $(MODTYPE)
986 %end
987 #------------------------------------------------------------------------------
990 #------------------------------------------------------------------------------
991 # Generate the support files for compiling a module. This includes include
992 # files and source files.
993 %define rule_genmodule_includes modname=/A modtype=/A modsuffix= \
994     targetdir= conffile=
996 ifneq ($(%(modname)_INCLUDES),)
997 TMP_TARGETS := $(%(modname)_INCLUDES)
999 TMP_DEPS := $(GENMODULE)
1000 TMP_OPTS :=
1002 ifneq (%(conffile),)
1003     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(conffile)
1004     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(conffile)
1005 else
1006     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(modname).conf
1007     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(modname).conf
1008 endif
1009 ifneq (%(modsuffix),)
1010     TMP_OPTS += -s %(modsuffix)
1011 endif
1012 ifneq (%(targetdir),)
1013     TMP_OPTS += -d %(targetdir)
1014     TMP_TARGETS := $(addprefix %(targetdir)/,$(TMP_TARGETS))
1015 endif
1017 $(TMP_TARGETS) : OPTS := $(TMP_OPTS)
1018 $(TMP_TARGETS) : MODNAME := %(modname)
1019 $(TMP_TARGETS) : MODTYPE := %(modtype)
1020 $(TMP_TARGETS) : $(TMP_DEPS)
1021         @$(ECHO) "Generating $(MODNAME).$(MODTYPE) includes"
1022         @$(GENMODULE) $(OPTS) writeincludes $(MODNAME) $(MODTYPE)
1023 endif
1024 %end
1025 #------------------------------------------------------------------------------
1027 #------------------------------------------------------------------------------
1028 # Link %(objs) to binary blob in %(file) using %(name) as name of embedded binary object
1029 # 'start' is an optional starting address
1030 # 'ldflags' is optional additional flags for the linker
1031 %define rule_link_binary file=/A name=/A objs=/A start=0 ldflags=
1033 BD_OUTDIR := $(dir %(file))
1034 # This trick removes the trailing '/', otherwise findstring below fails, causing a warning
1035 BD_OUTDIR := $(subst /*,,$(addsuffix *,$(BD_OUTDIR)))
1036 BD_TMPDIR := $(GENDIR)/$(CURDIR)
1038 %(file) : %(objs) $(BD_OUTDIR)
1039         @$(ECHO) "Linking    $(subst $(TARGETDIR)/,,$@)..."
1040         @$(KERNEL_LD) %(ldflags) --entry=%(start) --oformat=binary -Ttext=%(start) -o $(BD_TMPDIR)/%(name) %(objs)
1041         @cd $(BD_TMPDIR) && $(AROS_LD) %(ldflags) -r --format binary %(name) -o $@
1043 ifeq ($(findstring $(BD_OUTDIR),$(GLOB_MKDIRS)),)
1044     GLOB_MKDIRS += $(BD_OUTDIR)
1045 endif
1047 %end
1049 #------------------------------------------------------------------------------
1050 # Common rules for all makefiles
1051 %define common
1052 # Delete generated makefiles
1054 clean ::
1055         @$(RM) $(TOP)/$(CURDIR)/mmakefile $(TOP)/$(CURDIR)/mmakefile.bak
1057 include $(SRCDIR)/config/make.tail
1059 BDID := $(BDTARGETID)
1060 %end
1061 #------------------------------------------------------------------------------
1062       
1064 #############################################################################
1065 #############################################################################
1066 ##                                                                         ##
1067 ## Here are the mmakefile build macros. These are macros that takes care   ##
1068 ## of everything to go from the sources to the generated target. Also all  ##
1069 ## intermediate files and directories that are needed are created by these ##
1070 ## rules.                                                                  ##
1071 ##                                                                         ##
1072 #############################################################################
1073 #############################################################################
1075 #------------------------------------------------------------------------------
1076 # Build a program
1077 %define build_prog mmake=/A progname=/A files=$(BD_PROGNAME) cxxfiles= \
1078     asmfiles= objdir=$(GENDIR)/$(CURDIR) targetdir=$(AROSDIR)/$(CURDIR) \
1079     cflags=$(CFLAGS) dflags=$(BD_CFLAGS) ldflags=$(LDFLAGS) \
1080     aflags=$(AFLAGS) uselibs= usehostlibs= usestartup=yes detach=no nix=no \
1081     compiler=target linker= srcdir=
1083 .PHONY : %(mmake)
1085 BD_PROGNAME  := %(progname)
1086 BD_OBJDIR    := %(objdir)
1087 BD_TARGETDIR := %(targetdir)
1088 BD_LINKER    := %(linker)
1090 # If not supplied, linker is equal to compiler
1091 ifeq ($(BD_LINKER),)
1092     BD_LINKER := %(compiler)
1093 endif
1095 BD_FILES     := %(files)
1096 BD_CXXFILES  := %(cxxfiles)
1097 BD_ASMFILES  := %(asmfiles)
1099 BD_ARCHOBJS   := $(wildcard $(BD_OBJDIR)/arch/*.o)
1100 BD_ARCHFILES  := $(basename $(notdir $(BD_ARCHOBJS)))
1101 BD_NARCHFILES := $(filter-out $(BD_ARCHFILES),$(BD_FILES))
1103 BD_OBJS := $(addsuffix .o,$(addprefix $(BD_OBJDIR)/,$(BD_NARCHFILES) $(BD_CXXFILES) $(BD_ASMFILES)))
1104 BD_DEPS := $(addsuffix .d,$(addprefix $(BD_OBJDIR)/,$(BD_NARCHFILES) $(BD_CXXFILES)))
1106 BD_CFLAGS    := %(cflags)
1107 BD_AFLAGS    := %(aflags)
1108 BD_DFLAGS    := %(dflags)
1109 BD_LDFLAGS   := %(ldflags)
1112 %(mmake)-quick : %(mmake)
1114 #MM %(mmake) : includes-generate-deps core-linklibs linklibs-%(uselibs)
1115 %(mmake) : $(BD_TARGETDIR)/$(BD_PROGNAME)
1117 ifneq ($(filter $(TARGET),%(mmake) %(mmake)-quick %(mmake)-gz-quick),)
1118 %rule_compile basename=%(srcdir)% targetdir=$(BD_OBJDIR) \
1119     cflags=$(BD_CFLAGS) dflags=$(BD_DFLAGS) compiler=%(compiler)
1120 %rule_compile_cxx_multi basenames=$(BD_CXXFILES) targetdir=$(BD_OBJDIR) \
1121     cflags=$(BD_CFLAGS) dflags=$(BD_DFLAGS) compiler=%(compiler)
1122 %rule_assemble_multi basenames=$(BD_ASMFILES) targetdir=$(BD_OBJDIR) \
1123     aflags=$(BD_AFLAGS) compiler=%(compiler)
1125 %rule_link_prog prog=$(BD_TARGETDIR)/$(BD_PROGNAME) \
1126     objs="$(BD_OBJS) $(BD_ARCHOBJS) $(USER_OBJS)" ldflags=$(BD_LDFLAGS) \
1127     uselibs="%(uselibs)" usehostlibs="%(usehostlibs)" \
1128     usestartup="%(usestartup)" detach="%(detach)" nix="%(nix)" \
1129     linker=$(BD_LINKER)
1131 endif
1133 %include_deps depstargets="%(mmake) %(mmake)-quick" deps=$(BD_DEPS)
1135 $(BD_OBJS) $(BD_DEPS) : | $(BD_OBJDIR)
1136 $(BD_TARGETDIR)/$(BD_PROGNAME) : | $(BD_TARGETDIR)
1137 GLOB_MKDIRS += $(BD_OBJDIR) $(BD_TARGETDIR)
1139 %(mmake)-clean : FILES := $(BD_OBJS) $(BD_TARGETDIR)/$(BD_PROGNAME) $(BD_DEPS)
1141 %(mmake)-clean ::
1142         @$(ECHO) "Cleaning up for metatarget %(mmake)"
1143         @$(RM) $(FILES)
1145 %end
1146 #------------------------------------------------------------------------------
1149 #------------------------------------------------------------------------------
1150 # Build programs, for every C file an executable will be built with the same
1151 # name as the C file
1152 %define build_progs mmake=/A files=/A nix=no \
1153     objdir=$(GENDIR)/$(CURDIR) targetdir=$(AROSDIR)/$(CURDIR) \
1154     cflags=$(CFLAGS) dflags=$(BD_CFLAGS) ldflags=$(LDFLAGS) \
1155     uselibs= usehostlibs= usestartup=yes detach=no
1157 .PHONY : %(mmake)
1159 BD_OBJDIR    := %(objdir)
1160 BD_TARGETDIR := %(targetdir)
1162 BD_FILES     := %(files)
1163 BD_OBJS      := $(addsuffix .o,$(addprefix $(BD_OBJDIR)/,$(BD_FILES)))
1164 BD_DEPS      := $(addsuffix .d,$(addprefix $(BD_OBJDIR)/,$(BD_FILES)))
1165 BD_EXES      := $(addprefix $(BD_TARGETDIR)/,$(BD_FILES))
1167 BD_CFLAGS    := %(cflags)
1168 BD_DFLAGS    := %(dflags)
1169 BD_LDFLAGS   := %(ldflags)
1172 %(mmake)-quick : %(mmake)
1174 #MM %(mmake) : includes-generate-deps core-linklibs linklibs-%(uselibs)
1175 %(mmake) : $(BD_EXES)
1177 ifneq ($(filter $(TARGET),%(mmake) %(mmake)-quick),)
1178 %rule_compile basename=% targetdir=$(BD_OBJDIR) nix=%(nix) \
1179     cflags=$(BD_CFLAGS) dflags=$(BD_DFLAGS)
1181 %rule_link_progs progs=$(BD_FILES) nix=%(nix) \
1182     targetdir=$(BD_TARGETDIR) objdir=$(BD_OBJDIR) \
1183     ldflags=$(BD_LDFLAGS) \
1184     uselibs="%(uselibs)" usehostlibs="%(usehostlibs)" \
1185     usestartup="%(usestartup)" detach="%(detach)"
1187 endif
1189 %include_deps depstargets="%(mmake) %(mmake)-quick" deps=$(BD_DEPS)
1191 $(addprefix $(BD_TARGETDIR)/,$(BD_FILES)) : | $(BD_TARGETDIR)
1192 $(BD_DEPS) $(BD_OBJS) : | $(BD_OBJDIR)
1193 GLOB_MKDIRS += $(BD_TARGETDIR) $(BD_OBJDIR)
1195 %(mmake)-clean : FILES := $(BD_OBJS) $(BD_EXES) $(BD_DEPS)
1197 %(mmake)-clean ::
1198         @$(ECHO) "Cleaning up for metatarget %(mmake)"
1199         @$(RM) $(FILES)
1201 %end
1202 #------------------------------------------------------------------------------
1205 #------------------------------------------------------------------------------
1206 # Build a module.
1207 # This is a bare version: It just compiles and links the given files. It is
1208 # assumed that all needed boiler plate code is in the files. This should only
1209 # be used for compiling external code. For AROS code use %build_module
1210 %define build_module_simple mmake=/A modname=/A modtype=/A \
1211     files="$(basename $(call WILDCARD, *.c))" \
1212     cflags=$(CFLAGS) dflags=$(BD_DEFDFLAGS) \
1213     objdir=$(OBJDIR) moduledir= \
1214     uselibs= usehostlibs= compiler=target
1216 # Define metamake targets and their dependencies
1217 #MM %(mmake) : core-linklibs includes-generate-deps
1218 #MM %(mmake)-kobj : core-linklibs includes-generate-deps
1219 #MM %(mmake)-pkg  : core-linklibs includes-generate-deps
1220 #MM %(mmake)-kobj-quick
1221 #MM %(mmake)-pkg-quick
1222 #MM %(mmake)-quick
1223 #MM %(mmake)-clean
1225 BD_ALLTARGETS := %(mmake) %(mmake)-clean %(mmake)-quick %(mmake)-kobj %(mmake)-pkg
1227 .PHONY : $(BD_ALLTARGETS)
1229 ifeq (%(modname),)
1230 $(error using %build_module_simple: modname may not be empty)
1231 endif
1232 ifeq (%(modtype),)
1233 $(error using %build_module_simple: $(MODTYPE) has to be defined with the type of the module)
1234 endif
1236 # Default values for variables and arguments
1237 BD_DEFLINKLIBNAME := %(modname)
1238 BD_DEFDFLAGS := %(cflags)
1239 OBJDIR ?= $(GENDIR)/$(CURDIR)
1240 BD_MODDIR := %(moduledir)
1241 ifeq ($(BD_MODDIR),)
1242   ifeq (%(modtype),library)
1243     BD_MODDIR  := $(AROS_LIBS)
1244   endif
1245   ifeq (%(modtype),gadget)
1246     BD_MODDIR  := $(AROS_GADGETS)
1247   endif
1248   ifeq (%(modtype),datatype)
1249     BD_MODDIR  := $(AROS_DATATYPES)
1250   endif
1251   ifeq (%(modtype),handler)
1252     BD_MODDIR  := $(AROS_FS)
1253   endif
1254   ifeq (%(modtype),device)
1255     BD_MODDIR  := $(AROS_DEVS)
1256   endif
1257   ifeq (%(modtype),resource)
1258     BD_MODDIR  := $(AROS_RESOURCES)
1259   endif
1260   ifeq (%(modtype),hook)
1261     BD_MODDIR  := $(AROS_RESOURCES)
1262   endif
1263   ifeq (%(modtype),mui)
1264     BD_MODDIR  := $(AROS_CLASSES)/Zune
1265   endif
1266   ifeq (%(modtype),mcc)
1267     BD_MODDIR  := $(AROS_CLASSES)/Zune
1268   endif
1269   ifeq (%(modtype),mcp)
1270     BD_MODDIR  := $(AROS_CLASSES)/Zune
1271   endif
1272   ifeq (%(modtype),usbclass)
1273     BD_MODDIR  := $(AROS_CLASSES)/USB
1274   endif
1275   ifeq (%(modtype),hidd)
1276     BD_MODDIR  := $(AROS_DRIVERS)
1277   endif
1278   ifeq (%(modtype),printer)
1279     BD_MODDIR  := $(AROS_PRINTERS)
1280   endif
1281 endif
1282 ifeq ($(BD_MODDIR),)
1283   $(error Don't know where to put the file for modtype %(modtype). Specify moduledir=)
1284 endif
1286 BD_ARCHOBJS   := $(wildcard %(objdir)/arch/*.o)
1287 BD_ARCHFILES  := $(basename $(notdir $(BD_ARCHOBJS)))
1288 BD_NARCHFILES := $(filter-out $(BD_ARCHFILES),%(files))
1290 %rule_compile_multi \
1291     basenames="$(BD_NARCHFILES)" targetdir="%(objdir)" \
1292     cflags="%(cflags)" dflags="%(dflags)" \
1293     compiler=%(compiler)
1295 # Handlers use dash instead of dot in their names
1296 ifeq (%(modtype),handler)
1297 BD_MODULE := $(BD_MODDIR)/%(modname)-%(modtype)
1298 BD_PKGMOD := $(PKGDIR)/%(modname)-%(modtype)
1299 else
1300 ifeq (%(modtype),printer)
1301 BD_MODULE := $(BD_MODDIR)/%(modname)
1302 BD_PKGMOD := $(PKGDIR)/%(modname)
1303 else
1304 BD_MODULE := $(BD_MODDIR)/%(modname).%(modtype)
1305 BD_PKGMOD := $(PKGDIR)/%(modname).%(modtype)
1306 endif
1307 endif
1308 BD_KOBJ   := $(KOBJSDIR)/%(modname)_%(modtype).o
1310 %(mmake)-quick : %(mmake)
1311 %(mmake)-pkg-quick  : $(BD_PKGMOD)
1312 %(mmake)-kobj-quick : $(BD_KOBJ)
1313 %(mmake)       : $(BD_MODULE)
1314 %(mmake)-pkg   : $(BD_PKGMOD)
1315 %(mmake)-kobj  : $(BD_KOBJ)
1317 # The module is linked from all the compiled .o files
1318 BD_OBJS       := $(BD_ARCHOBJS) $(addprefix %(objdir)/, $(addsuffix .o,$(notdir $(BD_NARCHFILES))))
1320 # Under Windows con* is a reserved name, it refers to console. Files with such names can't be created.
1321 # This breaks con-handler build. Here we work around this
1322 ifeq (%(modname),con)
1323     BD_ERR := $(notdir $(BD_MODULE)).err
1324 else
1325     BD_ERR := %(modname).err
1326 endif
1328 %rule_linkmodule module=$(BD_MODULE) objs=$(BD_OBJS) \
1329                  endobj= err=$(BD_ERR) objdir=%(objdir) \
1330                  ldflags="$(LDFLAGS) $(%(modname)_LDFLAGS)" \
1331                  uselibs="%(uselibs) $(%(modname)_LIBS)" usehostlibs="%(usehostlibs)"
1333 %rule_linkmodule module=$(BD_PKGMOD) objs=$(BD_OBJS) \
1334                  endobj= err=$(BD_ERR) objdir=%(objdir) \
1335                  ldflags="$(LDFLAGS) $(%(modname)_LDFLAGS)" \
1336                  uselibs="%(uselibs) $(%(modname)_LIBS)" usehostlibs="%(usehostlibs)"
1338 # Link kernel object file
1339 BD_KAUTOLIB := dos intuition layers graphics oop utility expansion keymap
1341 # Make these symbols local
1342 BD_KBASE := DOSBase IntuitionBase LayersBase GfxBase OOPBase \
1343             UtilityBase ExpansionBase KeymapBase KernelBase
1345 BD_SYMBOLS := $(BD_KBASE)
1347 BD_KLIB := hiddstubs amiga arossupport arosc.static arosm autoinit libinit
1348 BD_KOBJ_LIBS := $(filter-out $(BD_KLIB),%(uselibs)) $(BD_KAUTOLIB)
1349 $(BD_KOBJ) : LINKLIBS:=$(BD_KOBJ_LIBS)
1350 $(BD_KOBJ) : FILTBASES:=$(addprefix -L ,$(BD_SYMBOLS))
1351 $(BD_KOBJ) : USER_LDFLAGS := $(USER_LDFLAGS)
1352 $(BD_KOBJ) : $(BD_OBJS) $(BD_ENDOBJS)
1353         @$(ECHO) "Linking    $(subst $(TARGETDIR)/,,$@)"
1354         @$(AROS_LD) -Ur -o $@ $^ $(USER_LDFLAGS) -L$(AROS_LIB) $(addprefix -l,$(LINKLIBS))
1355         @$(OBJCOPY) $@ $(FILTBASES) `$(NM_PLAIN) $@ | $(AWK) '($$3 ~ /^__.*_(LIST|END)__\r?$$/) || ($$3 ~ /^__aros_lib.*\r?$$/) {print "-L " $$3;}'`
1358 ## Dependency fine-tuning
1360 BD_DEPS       := $(addprefix %(objdir)/, $(addsuffix .d,%(files)))
1361 %include_deps depstargets="%(mmake) %(mmake)-quick %(mmake)-kobj %(mmake)-pkg" deps=$(BD_DEPS)
1363 $(BD_OBJS) $(BD_DEPS) : | %(objdir)
1364 $(BD_MODULE) : | $(BD_MODDIR)
1365 $(BD_KOBJ) : | $(KOBJSDIR)
1366 GLOB_MKDIRS += %(objdir) $(BD_MODDIR) $(KOBJSDIR)
1368 %(mmake)-clean : FILES := $(BD_OBJS) $(BD_MODULE) $(BD_KOBJ) $(BD_DEPS)
1369 %(mmake)-clean ::
1370         @$(ECHO) "Cleaning up for module %(modname)"
1371         @$(RM) $(FILES)
1372 %end
1373 #------------------------------------------------------------------------------
1376 #------------------------------------------------------------------------------
1377 # Build a module
1378 # Explanation of this macro is done in the developer's manual
1379 %define build_module mmake=/A modname=/A modtype=/A modsuffix= version= \
1380   conffile= files="$(basename $(call WILDCARD, *.c))" \
1381   linklibfiles= linklibobjs= cflags=$(CFLAGS) dflags=$(BD_DEFDFLAGS) \
1382   objdir=$(OBJDIR) moduledir=$(BD_DEFMODDIR) prefix=$(AROSDIR) \
1383   linklibname=$(BD_DEFLINKLIBNAME) uselibs= usehostlibs= \
1384   compiler=target nostartup=yes
1386 # Define metamake targets and their dependencies
1387 #MM- includes-all : %(mmake)-includes
1388 #MM- linklibs-%(modname): %(mmake)-linklib
1389 #MM- linklibs-%(modname)_rel : %(mmake)-linklib
1390 #MM- includes-%(modname): %(mmake)-includes
1391 #MM- includes-%(modname)_rel : %(mmake)-includes
1392 #MM %(mmake) : %(mmake)-includes core-linklibs linklibs-%(uselibs)
1393 #MM %(mmake)-kobj : %(mmake)-includes core-linklibs linklibs-%(uselibs)
1394 #MM %(mmake)-kobj-quick : %(mmake)-includes-quick
1395 #MM %(mmake)-pkg : %(mmake)-includes core-linklibs linklibs-%(uselibs)
1396 #MM %(mmake)-pkg-quick : %(mmake)-includes-quick
1397 #MM %(mmake)-linklib : %(mmake)-includes includes-%(uselibs)
1398 #MM %(mmake)-quick : %(mmake)-includes-quick
1399 #MM %(mmake)-includes : %(mmake)-makefile %(mmake)-includes-dirs \
1400 #MM     includes-generate-deps %(mmake)-fd
1401 #MM %(mmake)-includes-quick
1402 #MM %(mmake)-includes-dirs
1403 #MM %(mmake)-fd
1404 #MM %(mmake)-makefile
1405 #MM %(mmake)-clean
1407 # All MetaMake targets defined by this macro
1408 BD_ALLTARGETS := %(mmake) %(mmake)-quick %(mmake)-includes \
1409     %(mmake)-includes-quick %(mmake)-includes-dirs %(mmake)-clean \
1410     %(mmake)-kobj %(mmake)-kobj-quick %(mmake)-pkg %(mmake)-pkg-quick \
1411     %(mmake)-linklib %(mmake)-fd
1413 .PHONY : $(BD_ALLTARGETS) %(mmake)-makefile
1415 ifeq (%(modname),)
1416 $(error using %build_module: modname may not be empty)
1417 endif
1418 ifeq (%(modtype),)
1419 $(error using %build_module: $(MODTYPE) has to be defined with the type of the module)
1420 endif
1422 # Default values for variables and arguments
1423 BD_DEFLINKLIBNAME := %(modname)
1424 BD_DEFDFLAGS := %(cflags)
1425 OBJDIR ?= $(GENDIR)/$(CURDIR)
1427 ## Create genmodule include Makefile for the module
1429 %(mmake)-makefile : %(objdir)/Makefile.%(modname)
1431 %rule_genmodule_makefile \
1432     modname=%(modname) modtype=%(modtype) \
1433     modsuffix=%(modsuffix) targetdir=%(objdir) \
1434     conffile=%(conffile)
1436 %(objdir)/Makefile.%(modname) : | %(objdir)
1438 GLOB_MKDIRS += %(objdir)
1440 # Do not parse these statements if metatarget is not appropriate
1441 ifneq ($(filter $(TARGET),$(BD_ALLTARGETS)),)
1443 include %(objdir)/Makefile.%(modname)
1445 BD_DEFMODDIR := $(%(modname)_MODDIR)
1448 ## include files generation
1450 BD_INCDIR    := %(prefix)/$(AROS_DIR_INCLUDE)
1451 BD_LIBDEFSINC := %(objdir)/include/%(modname)_libdefs.h
1452 BD_DEFLIBDEFSINC := %(objdir)/include/%(modname)_deflibdefs.h
1454 %(mmake)-includes-quick : %(mmake)-includes
1455 %(mmake)-includes : $(addprefix $(GENINCDIR)/,$(%(modname)_INCLUDES)) \
1456     $(addprefix $(BD_INCDIR)/,$(%(modname)_INCLUDES)) \
1457     $(BD_LIBDEFSINC) $(BD_DEFLIBDEFSINC)
1459 ifneq ($(%(modname)_INCLUDES),)
1460 %rule_genmodule_includes modname=%(modname) modtype=%(modtype) \
1461                          modsuffix=%(modsuffix) targetdir=%(objdir)/include \
1462                          conffile=%(conffile)
1464 %rule_copy_diff_multi \
1465     files=$(%(modname)_INCLUDES) srcdir=%(objdir)/include targetdir=$(GENINCDIR) \
1466     stampfile=%(objdir)/%(modname)_geninc
1468 %rule_copy_diff_multi \
1469     files=$(%(modname)_INCLUDES) srcdir=%(objdir)/include targetdir=$(BD_INCDIR) \
1470     stampfile=%(objdir)/%(modname)_incs
1472 BD_INCDIRS := $(filter-out ./,$(sort $(dir $(%(modname)_INCLUDES))))
1474 TMP%(modname)_INCDIRS := \
1475     %(objdir)/include $(addprefix %(objdir)/include/,$(BD_INCDIRS)) \
1476     $(GENINCDIR) $(addprefix $(GENINCDIR)/,$(BD_INCDIRS)) \
1477     $(BD_INCDIR) $(addprefix $(BD_INCDIR)/,$(BD_INCDIRS))
1478 %rule_makedirs dirs=$(TMP%(modname)_INCDIRS) setuptarget=%(mmake)-includes-dirs
1480 endif
1482 %rule_genmodule_genlibdefs modname=%(modname) modtype=%(modtype) \
1483                            modsuffix=%(modsuffix) targetdir=%(objdir)/include \
1484                            conffile=%(conffile) version=%(version)
1486 $(BD_DEFLIBDEFSINC) : FILENAME := $(BD_LIBDEFSINC)
1487 $(BD_DEFLIBDEFSINC) :
1488         @$(ECHO) "generating $@"
1489         @$(ECHO) "#define LC_LIBDEFS_FILE \"$(FILENAME)\"" >$@
1491 $(BD_LIBDEFSINC) $(BD_DEFLIBDEFSINC) : | %(objdir)/include
1492 GLOB_MKDIRS += %(objdir)/include
1494 ## Extra genmodule src files generation
1495 ## 
1496 %rule_genmodule_files modname=%(modname) modtype=%(modtype) \
1497                       modsuffix=%(modsuffix) targetdir=%(objdir) \
1498                       conffile=%(conffile)
1501 ## Create FD file
1502 BD_FDDIR := $(AROS_DEVELOPMENT)/fd
1503 %(mmake)-fd : $(BD_FDDIR)/%(modname)_lib.fd
1505 %rule_genmodule_fd modname=%(modname) modtype=%(modtype) \
1506                    modsuffix=%(modsuffix) targetdir=$(BD_FDDIR) conffile=%(conffile)
1508 $(BD_FDDIR)/%(modname)_lib.fd : | $(BD_FDDIR)
1510 GLOB_MKDIRS += $(BD_FDDIR)
1513 ## Compilation
1515 BD_FILES      := %(files)
1516 BD_FDIRS      := $(sort $(dir $(BD_FILES)))
1517 BD_STARTFILES := $(addprefix %(objdir)/,$(%(modname)_STARTFILES))
1518 BD_ENDFILES   := $(addprefix %(objdir)/,$(%(modname)_ENDFILES))
1520 BD_ARCHOBJS   := $(wildcard %(objdir)/arch/*.o)
1521 BD_ARCHFILES  := $(basename $(notdir $(BD_ARCHOBJS)))
1522 BD_NARCHFILES := $(filter-out $(BD_ARCHFILES),$(BD_FILES))
1524 BD_CFLAGS     := %(cflags) -I%(objdir)/include -include $(BD_DEFLIBDEFSINC) $(%(modname)_CFLAGS)
1525 BD_DFLAGS     := %(dflags) -I%(objdir)/include -include $(BD_DEFLIBDEFSINC) $(%(modname)_DFLAGS)
1527 ifeq (%(modtype),library)
1528     BD_LIBSUFFIX := 
1529 else
1530     BD_LIBSUFFIX := .%(modtype)
1531 endif
1533 BD_LINKLIBCFILES := $(addprefix %(objdir)/,$(%(modname)_LINKLIBFILES))
1534 BD_LINKLIBAFILES := $(addprefix %(objdir)/,$(%(modname)_LINKLIBAFILES))
1535 ifeq ($(strip $(%(modname)_LINKLIBFILES) $(%(modname)_LINKLIBAFILES) %(linklibfiles)),)
1536     BD_LINKLIB :=
1537 else
1538     BD_LINKLIB := %(prefix)/$(AROS_DIR_LIB)/lib%(modname)$(BD_LIBSUFFIX).a
1539     ifneq (%(modname),%(linklibname))
1540         BD_LINKLIB += %(prefix)/$(AROS_DIR_LIB)/lib%(linklibname)$(BD_LIBSUFFIX).a
1541     endif
1542 endif
1543 BD_LINKLIBFILES := $(BD_LINKLIBCFILES) $(BD_LINKLIBAFILES)
1545 BD_RELLINKLIBCFILES := $(addprefix %(objdir)/,$(%(modname)_RELLINKLIBFILES))
1546 BD_RELLINKLIBAFILES := $(addprefix %(objdir)/,$(%(modname)_RELLINKLIBAFILES))
1547 ifeq ($(strip $(%(modname)_RELLINKLIBFILES) $(%(modname)_RELLINKLIBAFILES) %(linklibfiles)),)
1548     BD_RELLINKLIB :=
1549 else
1550     BD_RELLINKLIB := %(prefix)/$(AROS_DIR_LIB)/lib%(modname)_rel$(BD_LIBSUFFIX).a
1551     ifneq (%(modname),%(linklibname))
1552         BD_RELLINKLIB += %(prefix)/$(AROS_DIR_LIB)/lib%(linklibname)_rel$(BD_LIBSUFFIX).a
1553     endif
1554 endif
1555 BD_RELLINKLIBFILES := $(BD_RELLINKLIBCFILES) $(BD_RELLINKLIBAFILES)
1557 BD_CCFILES := $(BD_NARCHFILES) %(linklibfiles)
1558 BD_TARGETCCFILES := $(BD_STARTFILES) $(BD_ENDFILES) $(BD_LINKLIBCFILES) \
1559     $(BD_RELLINKLIBCFILES)
1561 %rule_compile_multi \
1562     basenames=$(BD_CCFILES) targetdir=%(objdir) \
1563     cflags=$(BD_CFLAGS) dflags=$(BD_DFLAGS) \
1564     compiler=%(compiler)
1565 %rule_compile_multi \
1566     basenames=$(BD_TARGETCCFILES) targetdir=%(objdir) \
1567     cflags="$(BD_CFLAGS) -D__AROS__" dflags=$(BD_DFLAGS) \
1568     compiler=%(compiler)
1570 ifneq ($(BD_LINKLIBAFILES),)
1571 %rule_assemble_multi \
1572     basenames="$(BD_LINKLIBAFILES) $(BD_RELLINKLIBAFILES)" targetdir=%(objdir) suffix=.S
1573 endif
1575 ## Linking
1577 ifeq (%(modsuffix),)
1578 BD_SUFFIX := %(modtype)
1579 else
1580 BD_SUFFIX := %(modsuffix)
1581 endif
1583 # Handlers use dash instead of dot in their names
1584 ifeq ($(BD_SUFFIX),handler)
1585 BD_MODULE := %(prefix)/%(moduledir)/%(modname)-$(BD_SUFFIX)
1586 BD_PKGMOD := $(PKGDIR)/%(modname)-$(BD_SUFFIX)
1587 else
1588 BD_MODULE := %(prefix)/%(moduledir)/%(modname).$(BD_SUFFIX)
1589 BD_PKGMOD := $(PKGDIR)/%(modname).$(BD_SUFFIX)
1590 endif
1591 BD_KOBJ   := $(KOBJSDIR)/%(modname)_$(BD_SUFFIX).o
1593 %(mmake)-quick      : %(mmake)
1594 %(mmake)            : $(BD_MODULE) $(BD_LINKLIB) $(BD_RELLINKLIB)
1595 %(mmake)-pkg        : $(BD_PKGMOD) $(BD_LINKLIB) $(BD_RELLINKLIB)
1596 %(mmake)-pkg-quick  : $(BD_PKGMOD) $(BD_LINKLIB) $(BD_RELLINKLIB)
1597 %(mmake)-kobj       : $(BD_KOBJ) $(BD_LINKLIB) $(BD_RELLINKLIB)
1598 %(mmake)-kobj-quick : $(BD_KOBJ) $(BD_LINKLIB) $(BD_RELLINKLIB)
1599 %(mmake)-linklib    : $(BD_LINKLIB) $(BD_RELLINKLIB)
1601 BD_OBJS       := $(addsuffix .o,$(BD_STARTFILES)) $(BD_ARCHOBJS) \
1602                  $(addsuffix .o, $(addprefix %(objdir)/,$(notdir $(BD_NARCHFILES))))
1604 ifeq (%(nostartup),yes)
1605 # Handlers always have entry point
1606 ifneq (%(modtype),handler)
1607 BD_STARTOBJS  := $(addsuffix .o,$(addprefix $(GENDIR)/,$(RESIDENT_BEGIN)))
1608 endif
1609 endif
1611 BD_ENDOBJS    := $(addsuffix .o,$(BD_ENDFILES))
1612 BD_LINKLIBOBJS:= $(addsuffix .o,$(addprefix %(objdir)/,$(notdir %(linklibfiles))) $(BD_LINKLIBFILES)) \
1613                  %(linklibobjs)
1614 BD_RELLINKLIBOBJS \
1615               := $(addsuffix .o,$(addprefix %(objdir)/,$(notdir %(linklibfiles))) $(BD_RELLINKLIBFILES)) \
1616                  %(linklibobjs)
1618 # Under Windows con* is a reserved name, it refers to console. Files with such names can't be created.
1619 # This breaks con-handler build. Here we work around this
1620 ifeq (%(modname),con)
1621     BD_ERR := $(notdir $(BD_MODULE)).err
1622 else
1623     BD_ERR := %(modname).err
1624 endif
1626 # The module is linked from all the compiled .o files
1627 %rule_linkmodule module=$(BD_MODULE) objs="$(BD_STARTOBJS) $(BD_OBJS) $(USER_OBJS)" \
1628                  endobj=$(BD_ENDOBJS) err=$(BD_ERR) objdir=%(objdir) \
1629                  ldflags="$(LDFLAGS) $(%(modname)_LDFLAGS)" \
1630                  uselibs="%(uselibs) $(%(modname)_LIBS)" usehostlibs="%(usehostlibs)"
1632 %rule_linkmodule module=$(BD_PKGMOD) objs="$(BD_STARTOBJS) $(BD_OBJS) $(USER_OBJS)" \
1633                  endobj=$(BD_ENDOBJS) err=$(BD_ERR) objdir=%(objdir) \
1634                  ldflags="$(LDFLAGS) $(%(modname)_LDFLAGS)" \
1635                  uselibs="%(uselibs) $(%(modname)_LIBS)" usehostlibs="%(usehostlibs)"
1637 # Link static lib
1638 ifneq ($(BD_LINKLIB),)
1639 %rule_link_linklib libname=%(modname)$(BD_LIBSUFFIX) objs=$(BD_LINKLIBOBJS) libdir=%(prefix)/$(AROS_DIR_LIB)
1641 ifneq (%(modname),%(linklibname))
1642 %rule_link_linklib libname=%(linklibname)$(BD_LIBSUFFIX) objs=$(BD_LINKLIBOBJS) libdir=%(prefix)/$(AROS_DIR_LIB)
1643 endif
1645 $(BD_LINKLIB) : | %(prefix)/$(AROS_DIR_LIB)
1646 GLOB_MKDIRS += %(prefix)/$(AROS_DIR_LIB)
1647 endif
1649 ifneq ($(BD_RELLINKLIB),)
1650 %rule_link_linklib libname=%(modname)_rel$(BD_LIBSUFFIX) objs=$(BD_RELLINKLIBOBJS) libdir=%(prefix)/$(AROS_DIR_LIB)
1651 ifneq (%(modname),%(linklibname))
1652 %rule_link_linklib libname=%(linklibname)_rel$(BD_LIBSUFFIX) objs=$(BD_RELLINKLIBOBJS) libdir=%(prefix)/$(AROS_DIR_LIB)
1653 endif
1655 $(BD_RELLINKLIB) : | %(prefix)/$(AROS_DIR_LIB)
1656 GLOB_MKDIRS += %(prefix)/$(AROS_DIR_LIB)
1657 endif
1659 # Link kernel object file
1660 BD_KAUTOLIB := dos intuition layers graphics oop utility expansion keymap
1662 # Make these symbols local
1663 BD_KBASE := DOSBase IntuitionBase LayersBase GfxBase OOPBase \
1664             UtilityBase ExpansionBase KeymapBase KernelBase
1666 BD_SYMBOLS := $(BD_KBASE)
1668 BD_KLIB := hiddstubs amiga arossupport arosc.static arosm autoinit libinit
1669 BD_KOBJ_LIBS := $(filter-out $(BD_KLIB),%(uselibs)) $(BD_KAUTOLIB)
1670 $(BD_KOBJ) : LINKLIBS:=$(BD_KOBJ_LIBS) $(%(modname)_LIBS)
1671 $(BD_KOBJ) : FILTBASES:=$(addprefix -L ,$(BD_SYMBOLS))
1672 $(BD_KOBJ) : USER_LDFLAGS:=$(USER_LDFLAGS)
1673 $(BD_KOBJ) : $(BD_OBJS) $(USER_OBJS) $(BD_ENDOBJS)
1674         @$(ECHO) "Linking    $(subst $(TARGETDIR)/,,$@)"
1675         @$(AROS_LD) -Ur -o $@ $^ $(USER_LDFLAGS) -L$(AROS_LIB) $(addprefix -l,$(LINKLIBS))
1676         @$(OBJCOPY) $@ $(FILTBASES) `$(NM_PLAIN) $@ | $(AWK) '($$3 ~ /^__.*_(LIST|END)__\r?$$/) || ($$3 ~ /^__aros_lib.*\r?$$/) {print "-L " $$3;}'`
1678 ## Dependency fine-tuning
1680 BD_DEPS := $(addsuffix .d,$(addprefix %(objdir)/,$(notdir $(BD_CCFILES) $(BD_TARGETCCFILES))))
1681 %include_deps depstargets="%(mmake) %(mmake)-quick %(mmake)-kobj %(mmake)-kobj-quick %(mmake)-pkg %(mmake)-pkg-quick" deps=$(BD_DEPS)
1683 $(BD_OBJS) $(BD_DEPS) : | %(objdir)
1684 $(BD_MODULE) : | %(prefix)/%(moduledir)
1685 $(BD_PKGMOD) : | $(PKGDIR)
1686 $(BD_KOBJ)   : | $(KOBJSDIR)
1687 GLOB_MKDIRS += %(objdir) %(prefix)/%(moduledir) $(KOBJSDIR) $(PKGDIR)
1689 # Some include files need to be generated before the .c can be parsed.
1690 ifneq ($(filter $(TARGET),%(mmake) %(mmake)-includes %(mmake)-quick %(mmake)-kobj %(mmake)-kobj-quick %(mmake)-pkg %(mmake)-pkg-quick),) # Only for this target these deps are wanted
1692 BD_DFILE_DEPS := $(BD_LIBDEFSINC) $(BD_DEFLIBDEFSINC) \
1693     $(addprefix $(BD_INCDIR)/,$(%(modname)_INCLUDES))
1694 $(BD_DEPS) : $(BD_DFILE_DEPS)
1695 endif
1697 BD_TOCLEAN := $(BD_OBJS) $(BD_DEPS) \
1698     $(BD_MODULE) $(BD_LINKLIB) $(BD_KOBJ) \
1699     %(objdir)/Makefile.%(modname) \
1700     $(addprefix %(objdir)/include/,$(%(modname)_INCLUDES)) \
1701     $(addprefix $(GENINCDIR)/,$(%(modname)_INCLUDES)) \
1702     $(addprefix $(BD_INCDIR)/,$(%(modname)_INCLUDES)) \
1703     %(objdir)/%(modname)_geninc %(objdir)/%(modname)_incs \
1704     $(addsuffix .c,$(BD_LINKLIBFILES)) $(BD_LINKLIBOBJS) $(BD_LIBDEFSINC) \
1705     $(BD_DEFLIBDEFSINC) $(addsuffix .c,$(BD_STARTFILES) $(BD_ENDFILES)) \
1706     $(BD_ENDOBJS)
1707 %(mmake)-clean : FILES := $(BD_TOCLEAN)
1708 %(mmake)-clean ::
1709         @$(ECHO) "Cleaning up for module %(modname)"
1710         @$(RM) $(FILES)
1712 endif # $(TARGET) in $(BD_ALLTARGETS)
1713 %end
1714 #------------------------------------------------------------------------------
1717 #------------------------------------------------------------------------------
1718 # Build a module skeleton
1719 # This is a stripped-down version of build_module, it only creates include files,
1720 # but no actual object. This is used when for plugins or classes with the same
1721 # API, but no actual implementation here.
1722 %define build_module_skeleton mmake=/A modname=/A modtype=/A modsuffix= \
1723   conffile= \
1724   objdir=$(OBJDIR) prefix=$(AROSDIR)
1726 # Define metamake targets and their dependencies
1727 #MM- includes-all : %(mmake)-includes
1728 #MM %(mmake) : %(mmake)-includes core-linklibs
1729 #MM %(mmake)-kobj : %(mmake)-includes core-linklibs
1730 #MM %(mmake)-pkg  : %(mmake)-includes core-linklibs
1731 #MM %(mmake)-linklib : %(mmake)-includes
1732 #MM %(mmake)-quick : %(mmake)-includes-quick
1733 #MM %(mmake)-includes : %(mmake)-makefile %(mmake)-includes-dirs \
1734 #MM     includes-generate-deps
1735 #MM %(mmake)-includes-quick
1736 #MM %(mmake)-includes-dirs
1737 #MM %(mmake)-makefile
1738 #MM %(mmake)-clean
1740 # All MetaMake targets defined by this macro
1741 BD_ALLTARGETS := %(mmake) %(mmake)-quick %(mmake)-includes \
1742     %(mmake)-includes-quick %(mmake)-includes-dirs %(mmake)-clean \
1743     %(mmake)-kobj %(mmake)-pkg
1745 .PHONY : $(BD_ALLTARGETS) %(mmake)-makefile
1747 ifeq (%(modname),)
1748 $(error using %build_module_skeleton: modname may not be empty)
1749 endif
1750 ifeq (%(modtype),)
1751 $(error using %build_module_skeleton: $(MODTYPE) has to be defined with the type of the module)
1752 endif
1754 # Default values for variables and arguments
1755 BD_DEFLINKLIBNAME := %(modname)
1756 BD_DEFDFLAGS := %(cflags)
1757 OBJDIR ?= $(GENDIR)/$(CURDIR)
1759 ## Create genmodule include Makefile for the module
1761 %(mmake)-makefile : %(objdir)/Makefile.%(modname)
1763 %rule_genmodule_makefile \
1764     modname=%(modname) modtype=%(modtype) \
1765     modsuffix=%(modsuffix) targetdir=%(objdir) \
1766     conffile=%(conffile)
1768 %(objdir)/Makefile.%(modname) : | %(objdir)
1770 GLOB_MKDIRS += %(objdir)
1772 # Do not parse these statements if metatarget is not appropriate
1773 ifneq ($(filter $(TARGET),$(BD_ALLTARGETS)),)
1775 include %(objdir)/Makefile.%(modname)
1777 BD_DEFMODDIR := $(%(modname)_MODDIR)
1780 ## include files generation
1782 BD_INCDIR    := %(prefix)/$(AROS_DIR_INCLUDE)
1783 BD_LIBDEFSINC := %(objdir)/include/%(modname)_libdefs.h
1784 BD_DEFLIBDEFSINC := %(objdir)/include/%(modname)_deflibdefs.h
1786 %(mmake)-includes-quick : %(mmake)-includes
1787 %(mmake)-includes : $(addprefix $(GENINCDIR)/,$(%(modname)_INCLUDES)) \
1788     $(addprefix $(BD_INCDIR)/,$(%(modname)_INCLUDES)) \
1789     $(BD_LIBDEFSINC) $(BD_DEFLIBDEFSINC)
1791 ifneq ($(%(modname)_INCLUDES),)
1792 %rule_genmodule_includes modname=%(modname) modtype=%(modtype) \
1793                          modsuffix=%(modsuffix) targetdir=%(objdir)/include \
1794                          conffile=%(conffile)
1796 %rule_copy_diff_multi \
1797     files=$(%(modname)_INCLUDES) srcdir=%(objdir)/include targetdir=$(GENINCDIR) \
1798     stampfile=%(objdir)/%(modname)_geninc
1800 %rule_copy_diff_multi \
1801     files=$(%(modname)_INCLUDES) srcdir=%(objdir)/include targetdir=$(BD_INCDIR) \
1802     stampfile=%(objdir)/%(modname)_incs
1804 BD_INCDIRS := $(filter-out ./,$(sort $(dir $(%(modname)_INCLUDES))))
1806 TMP%(modname)_INCDIRS := \
1807     %(objdir)/include $(addprefix %(objdir)/include/,$(BD_INCDIRS)) \
1808     $(GENINCDIR) $(addprefix $(GENINCDIR)/,$(BD_INCDIRS)) \
1809     $(BD_INCDIR) $(addprefix $(BD_INCDIR)/,$(BD_INCDIRS))
1810 %rule_makedirs dirs=$(TMP%(modname)_INCDIRS) setuptarget=%(mmake)-includes-dirs
1812 endif
1814 %rule_genmodule_genlibdefs modname=%(modname) modtype=%(modtype) \
1815                            modsuffix=%(modsuffix) targetdir=%(objdir)/include \
1816                            conffile=%(conffile)
1818 $(BD_DEFLIBDEFSINC) : FILENAME := $(BD_LIBDEFSINC)
1819 $(BD_DEFLIBDEFSINC) :
1820         @$(ECHO) "generating $@"
1821         @$(ECHO) "#define LC_LIBDEFS_FILE \"$(FILENAME)\"" >$@
1823 $(BD_LIBDEFSINC) $(BD_DEFLIBDEFSINC) : | %(objdir)/include
1824 GLOB_MKDIRS += %(objdir)/include
1826 ## Extra genmodule src files generation
1827 ## 
1828 %rule_genmodule_files modname=%(modname) modtype=%(modtype) \
1829                       modsuffix=%(modsuffix) targetdir=%(objdir) \
1830                       conffile=%(conffile)
1832 BD_TOCLEAN := $(BD_OBJS) $(BD_DEPS) \
1833     $(BD_MODULE) $(BD_LINKLIB) $(BD_KOBJ) \
1834     %(objdir)/Makefile.%(modname) \
1835     $(addprefix %(objdir)/include/,$(%(modname)_INCLUDES)) \
1836     $(addprefix $(GENINCDIR)/,$(%(modname)_INCLUDES)) \
1837     $(addprefix $(BD_INCDIR)/,$(%(modname)_INCLUDES)) \
1838     %(objdir)/%(modname)_geninc %(objdir)/%(modname)_incs \
1839     $(addsuffix .c,$(BD_LINKLIBFILES)) $(BD_LINKLIBOBJS) $(BD_LIBDEFSINC) \
1840     $(BD_DEFLIBDEFSINC)
1841 %(mmake)-clean : FILES := $(BD_TOCLEAN)
1842 %(mmake)-clean ::
1843         @$(ECHO) "Cleaning up for module %(modname)"
1844         @$(RM) $(FILES)
1846 endif # $(TARGET) in $(BD_ALLTARGETS)
1847 %end
1848 #------------------------------------------------------------------------------
1851 #------------------------------------------------------------------------------
1852 # Build a linklib.
1853 # - mmake is the mmaketarget
1854 # - libname is the baselibname e.g. lib%(libname).a will be created
1855 # - files are the C source files to include in the lib. The list of files
1856 #   has to be given without the .c suffix
1857 # - asmfiles are the asm files to include in the lib. The list of files has to
1858 #   be given without the .s suffix
1859 # - objs additional object to link into the linklib. The objects have to be
1860 #   given with full absolute path and the .o suffix.
1861 # - cflags are the flags to compile the source (default $(CFLAGS))
1862 # - dflags are the flags use during makedepend (default equal to cflags)
1863 # - aflags are the flags use during assembling (default $(AFLAGS))
1864 # - objdir is where the .o are generated
1865 # - libdir is the directory where the linklib will be placed (default $(LIBDIR))
1866 %define build_linklib mmake=/A libname=/A \
1867   files="$(basename $(call WILDCARD, *.c))" \
1868   cxxfiles="$(basename $(call WILDCARD, *.cpp))" \
1869   asmfiles= objs= compiler=target \
1870   cflags=$(CFLAGS) dflags= aflags=$(AFLAGS) objdir=$(OBJDIR) libdir=$(LIBDIR)
1872 # assign and generate the local variables used in this macro
1873 OBJDIR        ?= $(GENDIR)/$(CURDIR)
1875 BD_FILES      := %(files)
1876 BD_CXXFILES   := %(cxxfiles)
1877 BD_ASMFILES   := %(asmfiles)
1879 BD_ARCHOBJS   := $(wildcard %(objdir)/arch/*.o)
1880 BD_ARCHFILES  := $(basename $(notdir $(BD_ARCHOBJS)))
1881 BD_NARCHFILES := $(filter-out $(BD_ARCHFILES),$(BD_FILES))
1883 BD_OBJS       := $(BD_ARCHOBJS) \
1884                  $(addsuffix .o,$(addprefix %(objdir)/,$(notdir $(BD_NARCHFILES) $(BD_CXXFILES) $(BD_ASMFILES)))) \
1885                  %(objs)
1886 BD_DEPS       := $(patsubst %.o,%.d,$(BD_OBJS))
1888 BD_CFLAGS     := %(cflags)
1889 ifeq (%(dflags),)
1890 BD_DFLAGS     := $(BD_CFLAGS)
1891 else
1892 BD_DFLAGS     := %(dflags)
1893 endif
1894 BD_AFLAGS     := %(aflags)
1896 BD_LINKLIB    := %(libdir)/lib%(libname).a
1898 .PHONY : %(mmake) %(mmake)-clean
1900 #MM %(mmake) : includes-generate-deps
1901 %(mmake) : $(BD_LINKLIB)
1904 %(mmake)-clean ::
1905         @$(RM) $(BD_OBJS) $(BD_DEPS)
1907 ifeq ($(TARGET),%(mmake))
1908 ifneq ($(dir $(BD_FILES)),./)
1909 TMP_SRCDIR := $(shell echo $(SRCDIR) | sed 's/^\(.\):\//\/\1\//')
1910 vpath %.c $(addprefix $(TMP_SRCDIR)/$(CURDIR)/,$(dir $(BD_FILES)))
1911 endif
1913 %rule_compile basename=% targetdir=%(objdir) \
1914     compiler=%(compiler) cflags=$(BD_CFLAGS) dflags=$(BD_DFLAGS)
1915 %rule_compile_cxx_multi basenames=$(BD_CXXFILES) targetdir=%(objdir) \
1916     compiler=%(compiler) cflags=$(BD_CFLAGS) dflags=$(BD_DFLAGS)
1917 %rule_assemble basename=% targetdir=%(objdir) \
1918     aflags=$(BD_AFLAGS)
1920 %rule_link_linklib libname=%(libname) objs=$(BD_OBJS) libdir=%(libdir) linker=%(compiler)
1921 endif
1923 %include_deps depstargets=%(mmake) deps=$(BD_DEPS)
1925 $(BD_OBJS) $(BD_DEPS) : | %(objdir)
1926 $(BD_LINKLIB) : | %(libdir)
1927 GLOB_MKDIRS += %(objdir) %(libdir)
1929 %end
1930 #------------------------------------------------------------------------------
1933 #------------------------------------------------------------------------------
1934 # Build catalogs.
1935 # - mmake is the mmaketarget
1936 # - catalogs is the list of catalogs, without the .ct suffix (default *.ct)
1937 # - description is the catalog description file (.cd), without the .ct suffix (default *.cd)
1938 # - subdir is the destination subdirectory of the catalogs
1939 # - name is the name of the destination catalog, without the .catalog suffix
1940 # - source is the path to the generated source code file
1941 # - dir is the base destination directory (default $(AROS_CATALOGS))
1942 # - sourcedescription is the path to the FlexCat's source description file, without the .sd suffix
1943 # - srcdir is the directory in which the *.cd and *.ct files are searched
1945 %define build_catalogs mmake=/A name=/A subdir=/A \
1946  catalogs= source="../strings.h" description= dir=$(AROS_CATALOGS) \
1947  sourcedescription="$(TOOLDIR)/C_h_aros" srcdir="$(SRCDIR)/$(CURDIR)"
1949 ifeq (%(description),)
1950 BD_DESC := $(basename $(wildcard %(srcdir)/*.cd))
1951 else
1952 BD_DESC := %(description)
1953 endif
1955 BD_SRC := $(shell echo %(sourcedescription) | sed 's/^\(.\):\//\/\1\//')
1957 ifeq (%(catalogs),)
1958 BD_LNGS := $(basename $(notdir $(call WILDCARD, %(srcdir)/*.ct)))
1959 else
1960 BD_LNGS := %(catalogs)
1961 endif
1963 BD_OBJS := $(addsuffix /%(subdir)/%(name).catalog, $(addprefix %(dir)/, $(BD_LNGS)))
1964 BD_DIRS := $(addsuffix /%(subdir), $(addprefix %(dir)/, $(BD_LNGS))) $(dir %(source))
1967 %(mmake) : $(BD_OBJS) %(source)
1969 $(BD_OBJS) : | $(BD_DIRS)
1970 GLOB_MKDIRS += $(BD_DIRS)
1972 %(dir)/%/%(subdir)/%(name).catalog : %(srcdir)/%.ct $(BD_DESC).cd
1973         @$(ECHO) "Creating   %(name) catalog for language $*."
1974         @$(FLEXCAT) $(BD_DESC).cd $< CATALOG=%(dir)/$*/%(subdir)/%(name).catalog || [ $$? -lt 10 ]
1976 ifneq (%(source),)
1977 %(source) : BD_DESC := $(BD_DESC)
1978 %(source) : BD_SRC := $(BD_SRC)
1979 %(source) : $(BD_DESC).cd $(BD_SRC).sd | $(dir %(source))
1980         @$(ECHO) "Creating   %(name) catalog source file $@"
1981         @$(FLEXCAT) $(BD_DESC).cd $@=$(BD_SRC).sd
1982 endif
1985 %(mmake)-clean ::
1986         $(RM) $(BD_OBJS) %(source)
1988 .PHONY: %(mmake) %(mmake)-clean
1990 %end
1991 #-----------------------------------------------------------------------------
1994 #-----------------------------------------------------------------------------
1995 # Build icons.
1996 # - mmake is the mmaketarget
1997 # - icons is a list of icon base names (ie. without the .info suffix)
1998 # - dir is the destination directory
1999 # - srcdir is where *.png and *.info.src are searched
2000 #-----------------------------------------------------------------------------
2002 %define build_icons mmake=/A icons=/A dir=/A srcdir="$(SRCDIR)/$(CURDIR)" image=
2004 BD_OBJS := $(addprefix  %(dir)/, $(addsuffix .info,%(icons)))
2007 %(mmake) : $(BD_OBJS)
2009 ifeq (%(image),)
2011 %(dir)/%.info : %(srcdir)/%.info.src %(srcdir)/%.png
2012         @$(ECHO) "Creating   $(subst $(TARGETDIR)/,,$@)..."
2013         @$(ILBMTOICON) $+ $@
2015 else
2017 %(dir)/%.info : %(srcdir)/%.info.src %(srcdir)/%(image)
2018         @$(ECHO) "Creating   $(subst $(TARGETDIR)/,,$@)..."
2019         @$(ILBMTOICON) $+ $@
2021 endif
2023 $(BD_OBJS) : | %(dir)
2024 GLOB_MKDIRS += %(dir)
2026 %(mmake)-clean : FILES := $(BD_OBJS)
2028 %(mmake)-clean ::
2029         @$(RM) $(FILES)
2031 .PHONY: %(mmake) %(mmake)-clean
2033 %end
2034 #-----------------------------------------------------------------------------
2037 #------------------------------------------------------------------------------
2038 # Compile files for an arch-specific replacement of code for a module
2039 # - files: the basenames of the C files to compile.
2040 # - asmfiles: the basenames of the asm files to assemble.
2041 # - mainmmake: the mmake of the module in the main directory to compile these
2042 #   arch specific files for.
2043 # - maindir: the object directory for the main module
2044 # - arch: the arch for which to compile these files. It can have the form
2045 #   of ARCH, CPU or ARCH-CPU, e.g. linux, i386 or linux-i386
2046 # - cflags (default $(CFLAGS)): the C flags to use for compilation
2047 # - dflags: the flags used during creation of dependency file. If not specified
2048 #   the same value as cflags will be used
2049 # - aflags: the flags used during assembling
2050 # - compiler: (host, kernel or target) specifies which compiler to use. By default
2051 #   the target compiler is used
2052 %define build_archspecific files= asmfiles= mainmmake=/A maindir=/A arch=/A \
2053 cflags=$(CFLAGS) dflags= aflags=$(AFLAGS) compiler=target modulename=
2055 ifeq (%(files) %(asmfiles),)
2056   $(error no files or asmfiles given)
2057 endif
2059 %buildid targets="%(mainmmake)-%(arch)"
2061 #MM- %(mainmmake) :         %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH)-$(CPU) \
2062 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH) \
2063 #MM                         %(mainmmake)-$(FAMILY) %(mainmmake)-$(CPU)
2064 #MM- %(mainmmake)-linklib : %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH)-$(CPU) \
2065 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH) \
2066 #MM                         %(mainmmake)-$(FAMILY) %(mainmmake)-$(CPU)
2067 #MM- %(mainmmake)-kobj :    %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH)-$(CPU) \
2068 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH) \
2069 #MM                         %(mainmmake)-$(FAMILY) %(mainmmake)-$(CPU)
2070 #MM- %(mainmmake)-kobj-quick : %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT)-quick %(mainmmake)-$(ARCH)-$(CPU)-quick \
2071 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT)-quick %(mainmmake)-$(ARCH)-quick \
2072 #MM                         %(mainmmake)-$(FAMILY)-quick %(mainmmake)-$(CPU)-quick
2073 #MM- %(mainmmake)-pkg :     %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH)-$(CPU) \
2074 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH) \
2075 #MM                         %(mainmmake)-$(FAMILY) %(mainmmake)-$(CPU)
2076 #MM- %(mainmmake)-pkg-quick : %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT)-quick %(mainmmake)-$(ARCH)-$(CPU)-quick \
2077 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT)-quick %(mainmmake)-$(ARCH)-quick \
2078 #MM                         %(mainmmake)-$(FAMILY)-quick %(mainmmake)-$(CPU)-quick
2079 #MM- %(mainmmake)-quick :   %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT)-quick %(mainmmake)-$(ARCH)-$(CPU)-quick \
2080 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT)-quick %(mainmmake)-$(ARCH)-quick \
2081 #MM                         %(mainmmake)-$(FAMILY)-quick %(mainmmake)-$(CPU)-quick
2083 #MM %(mainmmake)-%(arch) : %(mainmmake)-includes
2085 BD_OBJDIR$(BDID)  := $(GENDIR)/%(maindir)/arch
2086 BD_COBJS$(BDID)   := $(addsuffix .o,$(addprefix $(BD_OBJDIR$(BDID))/,$(notdir %(files))))
2087 BD_ASMOBJS$(BDID) := $(addsuffix .o,$(addprefix $(BD_OBJDIR$(BDID))/,$(notdir %(asmfiles))))
2088 BD_OBJS$(BDID)    := $(BD_COBJS$(BDID)) $(BD_ASMOBJS$(BDID))
2089 BD_DEPS$(BDID)    := $(addsuffix .d,$(addprefix $(BD_OBJDIR$(BDID))/,$(notdir %(files))))
2091 ifneq (%(modulename),)
2092 BD_DEFLIBDEFSINC$(BDID) := -include $(GENDIR)/%(maindir)/include/%(modulename)_deflibdefs.h
2093 endif
2095 ifeq ($(TARGET),%(mainmmake)-%(arch)-quick)
2096     BD_TARGET := %(mainmmake)-%(arch)-quick
2097 else
2098     BD_TARGET := %(mainmmake)-%(arch)
2099 endif
2102 ifeq ($(TARGET),$(BD_TARGET))
2103 TMP_SRCDIR := $(shell echo $(SRCDIR) | sed 's/^\(.\):\//\/\1\//')
2104 vpath %.c $(addprefix $(TMP_SRCDIR)/$(CURDIR)/,$(dir %(files)))
2105 vpath %.s $(addprefix $(TMP_SRCDIR)/$(CURDIR)/,$(dir %(asmfiles)))
2106 vpath %.S $(addprefix $(TMP_SRCDIR)/$(CURDIR)/,$(dir %(asmfiles)))
2107 endif
2109 $(BD_OBJS$(BDID)) : | $(BD_OBJDIR$(BDID))
2110 GLOB_MKDIRS += $(BD_OBJDIR$(BDID))
2113 %(mainmmake)-%(arch) :: $(BD_OBJS$(BDID))
2116 %(mainmmake)-%(arch)-quick :: $(BD_OBJS$(BDID))
2118 ifeq ($(findstring %(compiler),host kernel target),)
2119   $(error unknown compiler %(compiler))
2120 endif
2121 ifeq (%(compiler),target)
2122 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
2123 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
2124 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
2125 endif
2126 ifeq (%(compiler),host)
2127 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_CMD:=$(HOST_CC)
2128 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_IQUOTE:=$(HOST_IQUOTE)
2129 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
2130 endif
2131 ifeq (%(compiler),kernel)
2132 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
2133 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_IQUOTE:=$(KERNEL_IQUOTE)
2134 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
2135 endif
2136 ifneq (%(modulename),)
2137 $(BD_COBJS$(BDID)) : TMP_CFLAGS:=%(cflags) -I$(GENDIR)/%(maindir) $(BD_DEFLIBDEFSINC$(BDID))
2138 else
2139 $(BD_COBJS$(BDID)) : TMP_CFLAGS:=%(cflags)
2140 endif
2141 ifeq ($(TARGET),$(BD_TARGET))
2142 $(BD_OBJDIR$(BDID))/%.o : $(SRCDIR)/$(CURDIR)/%.c
2143         %compile_q opt=$(TMP_CFLAGS) cmd=$(TMP_CMD) iquote=$(TMP_IQUOTE) iquote_end=$(TMP_IQUOTE_END)
2144 endif
2146 ifeq (%(dflags),)
2147 $(BD_DEPS$(BDID)) : TMP_DFLAGS:=%(cflags) $(BD_DEFLIBDEFSINC$(BDID))
2148 else
2149 $(BD_DEPS$(BDID)) : TMP_DFLAGS:=%(dflags)
2150 endif
2151 ifeq ($(TARGET),$(BD_TARGET))
2152 $(BD_OBJDIR$(BDID))/%.d : $(SRCDIR)/$(CURDIR)/%.c
2153         %mkdepend_q cc=$(TMP_CMD) flags=$(TMP_DFLAGS)
2154 endif
2156 $(BD_ASMOBJS$(BDID)) : AFLAGS:=%(aflags)
2158 ifeq ($(TARGET),$(BD_TARGET))
2159 $(BD_OBJDIR$(BDID))/%.o : %.s
2160         %assemble_q opt=$(AFLAGS)
2161 $(BD_OBJDIR$(BDID))/%.o : %.S
2162         %assemble_q opt=$(AFLAGS)
2163 endif
2165 %include_deps depstargets=$(BD_TARGET) deps=$(BD_DEPS$(BDID))
2166 %end
2167 #------------------------------------------------------------------------------
2170 #------------------------------------------------------------------------------
2171 # generate asm files from c files (for debugging purposes)
2172 %define ctoasm_q
2173 %.s : %.c
2174         @$(ECHO) "Generating $(CURDIR)/$(notdir $@)..."
2175         @$(TARGET_CC) -S $(CFLAGS) $(TARGET_CFLAGS) $< -c -o $@
2176 %end
2177 #------------------------------------------------------------------------------
2180 #------------------------------------------------------------------------------
2181 # Copy files from one directory to another.
2183 %define copy_files_q mmake=/A files=$(FILES) src=. dst=/A
2185 %(mmake)_SRC := $(shell echo %(src) | sed 's/^\(.\):\//\/\1\//')
2187 GLOB_MKDIRS += %(dst)
2189 .PHONY : %(mmake)
2192 %(mmake) : | %(dst) 
2193         $(foreach file, %(files), $(shell $(CP) $(addprefix $(if $(filter /%,$(%(mmake)_SRC)),$(%(mmake)_SRC),$(SRCDIR)/$(CURDIR)/$(%(mmake)_SRC))/, $(file)) $(addprefix %(dst)/, $(file))))
2195 %end
2196 #------------------------------------------------------------------------------
2199 #------------------------------------------------------------------------------
2200 # Copy a directory recursively to another place, preserving the original 
2201 # hierarchical structure
2203 # src: the source directory whose content will be copied
2204 # dst: the directory where to copy src's content. If not existing, it will be made.
2206 %define copy_dir_recursive mmake=/A src=. dst=/A excludefiles=
2208 %(mmake)_SRC   := $(shell echo %(src) | sed 's/^\(.\):\//\/\1\//')
2209 %(mmake)_FILES := $(shell cd $(if $(filter /%,$(%(mmake)_SRC)),$(%(mmake)_SRC),$(SRCDIR)/$(CURDIR)/$(%(mmake)_SRC)); find . -path '*/CVS' -prune -o -path '*/.svn' -prune -o -name .cvsignore -prune -o -name mmakefile -prune -o -name mmakefile.src -prune $(%(mmake)_FILTER) -o -type f -print)
2210 %(mmake)_DIRS  := $(sort $(dir $(%(mmake)_FILES)))
2212 %(mmake)_EXCLUDEFILES := $(addprefix ./,%(excludefiles))
2213 %(mmake)_FILES := $(filter-out $(%(mmake)_EXCLUDEFILES),$(%(mmake)_FILES))
2215 GLOB_MKDIRS += $(GENDIR)/$(CURDIR)
2217 .PHONY : %(mmake)
2220 %(mmake): | $(GENDIR)/$(CURDIR)
2221         @m="$(GENDIR)/$(CURDIR)/%(mmake)-auxiliary.mak";        \
2222         $(ECHO) "all: $(addprefix \$$(DST)/,$(%(mmake)_FILES))" > $$m 
2223         @m="$(GENDIR)/$(CURDIR)/%(mmake)-auxiliary.mak";    \
2224         for d in $(%(mmake)_DIRS); do                      \
2225             $(ECHO) "\$$(DST)/$$d: ; $(MKDIR) \$$@" >> $$m;  \
2226         done
2227         @m="$(GENDIR)/$(CURDIR)/%(mmake)-auxiliary.mak";                           \
2228         for f in $(%(mmake)_FILES); do                                            \
2229             $(ECHO) "\$$(DST)/$$f: \$$(SRC)/$$f | \$$(dir \$$(DST)/$$f); $(CP) \$$< \$$@" >> $$m; \
2230         done;  \
2231         for dst in %(dst); do \
2232             $(MAKE) -f $$m DST=$$dst SRC=$(if $(filter /%,$(%(mmake)_SRC)),$(%(mmake)_SRC),$(SRCDIR)/$(CURDIR)/$(%(mmake)_SRC)) all; \
2233         done
2235 %end
2236 #------------------------------------------------------------------------------
2239 #------------------------------------------------------------------------------
2240 #   Copy include files into the includes directories. There are currently
2241 #   two include directories. One for building AROS $(AROS_INCLUDES) and one
2242 #   for building tools that need to run on the host system $(GENINCDIR). The
2243 #   $(GENINCDIR) path must not contain any references to the C runtime
2244 #   library header files.
2246 %define copy_includes mmake=includes-copy includes=$(INCLUDE_FILES) path=. \
2247     dir= compiler=target
2249 ifeq ($(findstring %(compiler),host kernel target),)
2250 $(error %copy_includes: compiler argument (%(compiler)) has to be host, kernel or target)
2251 endif
2253 ifneq (%(dir),)
2254 BD_INCL_FILES := $(subst %(dir),$(GENINCDIR)/%(path),$(dir %(includes)))
2255 BD_INCL_FILES := $(addprefix $(GENINCDIR)/%(path)/,$(notdir %(includes)))
2256 BD_INC_PATH := $(SRCDIR)/$(CURDIR)/%(dir)/
2257 else
2258 BD_INCL_FILES := $(addprefix $(GENINCDIR)/%(path)/,%(includes))
2259 BD_INC_PATH := $(SRCDIR)/$(CURDIR)/
2260 endif
2262 $(BD_INCL_FILES) : $(GENINCDIR)/%(path)/% : $(BD_INC_PATH)%
2263         @$(CP) $< $@
2266 ifeq (%(compiler),target)
2268 ifneq (%(dir),)
2269 BD_INCL_FILES2 := $(subst %(dir),$(AROS_INCLUDES)/%(path),$(dir %(includes)))
2270 BD_INCL_FILES2 := $(addprefix $(AROS_INCLUDES)/%(path)/,$(notdir %(includes)))
2271 else
2272 BD_INCL_FILES2 := $(addprefix $(AROS_INCLUDES)/%(path)/,%(includes))
2273 endif
2275 BD_INCL_FILES += $(BD_INCL_FILES2)
2277 $(BD_INCL_FILES2) : $(AROS_INCLUDES)/%(path)/% : $(BD_INC_PATH)%
2278         @$(CP) $< $@
2279 endif
2282 %(mmake) : $(BD_INCL_FILES)
2284 .PHONY: %(mmake)
2286 $(BD_INCL_FILES) : | $(dir $(BD_INCL_FILES))
2287 GLOB_MKDIRS += $(dir $(BD_INCL_FILES))
2288 %end
2289 #------------------------------------------------------------------------------
2292 #------------------------------------------------------------------------------
2293 %define make_hidd_stubs hidd=/A cflags=$(CFLAGS) dflags=$(CFLAGS) parenttarget=linklibs
2294 STUBS_SRC := $(addprefix $(SRCDIR)/$(CURDIR)/,$(addsuffix .c,$(STUBS)))
2295 STUBS_MEM := $(addsuffix .o,$(STUBS))
2296 STUBS_OBJ := $(addprefix $(OBJDIR)/,$(STUBS_MEM))
2297 STUBS_DEP := $(addprefix $(OBJDIR)/,$(addsuffix .d,$(STUBS)))
2298 HIDD_LIB := $(AROS_LIB)/libhiddstubs.a
2300 #MM- linklibs : hidd-%(hidd)-stubs
2301 #MM- %(parenttarget): hidd-%(hidd)-stubs
2302 #MM hidd-%(hidd)-stubs : includes includes-copy
2303 hidd-%(hidd)-stubs : setup $(HIDD_LIB)($(STUBS_MEM))
2305 $(HIDD_LIB)($(STUBS_MEM)) : $(STUBS_OBJ)
2306         %mklib_q from=$^
2308 $(STUBS_OBJ) : $(STUBS_SRC) 
2309         %compile_q cmd="$(TARGET_CC) $(TARGET_CFLAGS)" opt=%(cflags) iquote=$(CFLAGS_IQUOTE) iquote_end=$(CFLAGS_IQUOTE_END)
2311 $(STUBS_DEP) : $(STUBS_SRC)
2312         %mkdepend_q flags=%(dflags)
2314 setup ::
2315         %mkdirs_q $(OBJDIR) $(LIBDIR)
2318 clean ::
2319         -@$(RM) $(HIDD_LIB) $(OBJDIR)
2321 DEPS := $(DEPS) $(STUBS_DEP)
2323 %end
2324 #------------------------------------------------------------------------------
2327 #------------------------------------------------------------------------------
2328 # Build an imported source tree which uses the configure script from the
2329 # autoconf package.  This rule will try to "integrate" the produced files as
2330 # much as possible in the AROS build, for example by putting libraries in the
2331 # standard library directory, includes in the standard include directory, and
2332 # so on. You can however override this behaviour.
2334 # As a special "bonus" for you, the PROGDIR environment variable is defined to
2335 # be %(bindir) (or its deduced value) when running "make install", and
2336 # "PROGDIR:" when running "make" alone; you can use this feature to pass the
2337 # configure script some more parameters whose value depends upon the PROGDIR
2338 # env var, so that the program gets all its stuff installed in the proper place
2339 # when building it, but when running it from inside AROS it can also find that
2340 # stuff by simply opening PROGDIR:, which it will do automatically if it uses
2341 # the configuration parameters set when running ./configure
2343 # *NOTICE*: DO NOT put a trailing '/' (slash) after $PROGDIR, as the variable
2344 # already contains either a '/' (slash) or a ':' (colon), thus simply attach it
2345 # to the name which has to follow it.
2347 # Arguments:
2349 #     - mmake           = the meta make target.
2350 #     - package         = name of the package to be built.
2351 #     - srcdir          = the location of the unpacked source code. Defaults
2352 #                         to $(SRCDIR)/$(CURDIR).
2353 #     - prefix          = the target directory. Must be an absolute path of the
2354 #                         host system. Defaults to $(AROS_CONTRIB).
2355 #     - aros_prefix     = set a path which is valid within the AROS filesystem.
2356 #                         Defaults to the value of the prefix option.
2357 #     - extraoptions    = additional options for the configure script.
2358 #     - extracflags     = additional flags which are used for both C and C++.
2359 #     - nix_dir_layout  = if yes the binary will be stored in a bin subdirectory.
2360 #                         Defaults to the value of the nix argument.
2361 #     - nix             = enable u*nix path handling, i.e. a path like
2362 #                         /progdir//./file will be translated to
2363 #                         progdir:file during run-time. Defaults to no.
2364 #     - compiler        = target, host or kernel. Defaults to target.
2365 #     - install_target  = the command used for installing. Defaults to install. Leave
2366 #                         it empty if you want to suppress installing.
2367 #     - preconfigure    = a metatarget which is executed before configure is called.
2368 #     - postconfigure   = a metatarget which is executed after configure is called.
2369 #     - postinstall     = a metatarget which is executed after installing.
2370 #     - install_env     = set additional options for installing.
2371 #     - use_build_env   = if yes the configuration environment is used for
2372 #                         installing, too. Defaults to no.
2374 # The arguments aros_prefix, nix and nix_dir_layout are related. The logic is
2375 # like this:
2377 # if nix_dir_layout
2378 #    --prefix = $(aros_prefix)
2379 #    progdir = $(aros_prefix)/bin
2380 # else
2381 #    if nix
2382 #        --prefix = /PROGDIR
2383 #        --bindir = /PROGDIR
2384 #        --sbindir = /PROGDIR
2385 #        --libdir = /LIB
2386 #        --includedir = /INCLUDE
2387 #        --oldincludedir = /INCLUDE   
2388 #    else
2389 #        --prefix = $(aros_prefix)
2390 #    endif
2392 #    progdir = $(aros_prefix)
2394 #    # Install options
2395 #    bindir = $(prefix)
2396 #    sbindir = $(prefix)
2397 #    libdir = $(AROS_LIB)
2398 #    includedir = $(AROS_INCLUDES)
2399 #    oldincludedir = $(AROS_INCLUDES)
2400 # endif
2403 %define build_with_configure mmake=/A package= srcdir=$(SRCDIR)/$(CURDIR) prefix= \
2404     aros_prefix= extraoptions= extracflags= nix_dir_layout= nix=no compiler=target \
2405     install_target=install preconfigure= postconfigure= postinstall= \
2406     install_env= use_build_env=no
2408 ifneq (%(prefix),)
2409     %(mmake)-prefix := %(prefix)
2410 else
2411     %(mmake)-prefix := $(AROS_CONTRIB)
2412 endif
2414 ifneq (%(aros_prefix),)
2415     %(mmake)-aros_prefix := %(aros_prefix)
2416 else
2417     %(mmake)-aros_prefix := $(%(mmake)-prefix)
2418 endif
2420 ifeq (%(nix),yes)
2421     %(mmake)-nix    := -nix
2422     %(mmake)-volpfx := /
2423     %(mmake)-volsfx := /
2424     
2425     ifeq (%(nix_dir_layout),)
2426         %(mmake)-nix_dir_layout := yes
2427     endif
2428 else
2429     %(mmake)-volsfx := :
2430     
2431     ifeq (%(nix_dir_layout),)
2432         %(mmake)-nix_dir_layout := no
2433     endif
2434 endif
2436 %(mmake)-volfunc = $(%(mmake)-volpfx)$(notdir $1)$(%(mmake)-volsfx)
2438 %(mmake)-install_opts := prefix=$(%(mmake)-prefix) \
2439         exec_prefix=$(%(mmake)-prefix) %(install_env)
2441 # Check if chosen compiler is valid
2442 ifeq ($(findstring %(compiler),host target kernel),)
2443   $(error unknown compiler %(compiler))
2444 endif
2446 # Set legacy 'host' variable based on chosen compiler
2447 ifeq (%(compiler),host)
2448     host := yes
2449         ifeq (%(package),)
2450                 %(mmake)-pkgdir := $(HOSTGENDIR)/$(CURDIR)
2451         else
2452                 %(mmake)-pkgdir := $(HOSTGENDIR)/$(CURDIR)/%(package)
2453         endif
2454 else
2455     host := no
2456         ifeq (%(package),)
2457                 %(mmake)-pkgdir := $(GENDIR)/$(CURDIR)
2458         else
2459                 %(mmake)-pkgdir := $(GENDIR)/$(CURDIR)/%(package)
2460         endif
2461 endif
2463 %(mmake)-configflag := $(%(mmake)-pkgdir)/.configured
2464 %(mmake)-installflag := $(%(mmake)-pkgdir)/.installed
2466 ifeq ($(filter yes, $(%(mmake)-nix_dir_layout) $(host)),yes)
2467     %(mmake)-PROGDIR      := $(%(mmake)-aros_prefix)/bin
2468     %(mmake)-config_opts  := --prefix=$(%(mmake)-aros_prefix)
2469 else
2470     ifeq (%(nix),yes)
2471         %(mmake)-config_opts := --prefix=/PROGDIR  --bindir=/PROGDIR --sbindir=/PROGDIR \
2472         --libdir=/LIB --includedir=/INCLUDE --oldincludedir=/INCLUDE   
2473     else
2474         %(mmake)-config_opts  := --prefix=$(%(mmake)-aros_prefix)
2475     endif
2477     %(mmake)-PROGDIR := $(%(mmake)-aros_prefix)
2478     
2479     %(mmake)-install_opts := bindir=$(%(mmake)-prefix) \
2480         sbindir=$(%(mmake)-prefix) \
2481         libdir=$(AROS_LIB) includedir=$(AROS_INCLUDES) \
2482         oldincludedir=$(AROS_INCLUDES) %(install_env)
2483 endif
2485 ifneq ($(DEBUG),yes)
2486     %(mmake)-s_flag = -s
2487 endif
2489 # Set up build environment, and options for configure script
2490 ifeq (%(compiler),host)
2491     CONFIG_ENV := \
2492         CPP="$(HOST_CPP)" \
2493         CXXCPP="$(HOST_CPP)" \
2494         CC="$(HOST_CC) $(HOST_CFLAGS) -L$(CROSSTOOLSDIR)/lib -I$(CROSSTOOLSDIR)/include" \
2495         CXX="$(HOST_CXX) $(HOST_CXXFLAGS) -L$(CROSSTOOLSDIR)/lib -I$(CROSSTOOLSDIR)/include" \
2496         TARGET_CC="$(KERNEL_CC) $(KERNEL_CFLAGS) $(%(mmake)-s_flag)" \
2497         TARGET_AS="$(TARGET_AS)" OBJCOPY="$(OBJCOPY)" \
2498         TARGET_RANLIB="$(RANLIB)" TARGET_STRIP="$(STRIP_PLAIN)" \
2499         TARGET_NM="$(NM_PLAIN)"
2500 endif
2501 ifeq (%(compiler),target)
2502     CONFIG_ENV := \
2503         PKG_CONFIG_LIBDIR="$(AROS_DEVELOPMENT)/lib/pkgconfig" \
2504         PKG_CONFIG_SYSROOT_DIR="$(AROSDIR)" \
2505         CPP="$(TARGET_CPP)" \
2506         CXXCPP="$(TARGET_CPP)" \
2507         CC="$(TARGET_CC) $(TARGET_CFLAGS) -L$(AROS_DEVELOPMENT)/lib -I$(AROS_DEVELOPMENT)/include %(extracflags) $(LDFLAGS) $(%(mmake)-nix) $(%(mmake)-s_flag)"\
2508         CXX="$(TARGET_CXX) $(TARGET_CFLAGS) -L$(AROS_DEVELOPMENT)/lib -I$(AROS_DEVELOPMENT)/include %(extracflags) $(LDFLAGS) $(%(mmake)-nix) $(%(mmake)-s_flag)"\
2509         AS="$(TARGET_AS)" CC_FOR_BUILD="$(HOST_CC)" RANLIB="$(RANLIB)" AR="$(AR_PLAIN)" STRIP="$(STRIP_PLAIN)"\
2510         TARGET_CC="$(KERNEL_CC) $(KERNEL_CFLAGS) $(%(mmake)-s_flag)"\
2511         TARGET_AS="$(TARGET_AS)" OBJCOPY="$(OBJCOPY)"\
2512         TARGET_RANLIB="$(RANLIB)" TARGET_STRIP="$(STRIP_PLAIN)"\
2513         TARGET_NM="$(NM_PLAIN)" \
2514         CC_FOR_TARGET="$(TARGET_CC) $(TARGET_CFLAGS) -L$(AROS_DEVELOPMENT)/lib -I$(AROS_DEVELOPMENT)/include %(extracflags) $(LDFLAGS) $(%(mmake)-nix) $(%(mmake)-s_flag)"\
2515         CXX_FOR_TARGET="$(TARGET_CXX) $(TARGET_CFLAGS) -L$(AROS_DEVELOPMENT)/lib -I$(AROS_DEVELOPMENT)/include %(extracflags) $(LDFLAGS) $(%(mmake)-nix) $(%(mmake)-s_flag)"
2516     %(mmake)-config_opts += --build=$(AROS_HOST_CPU)-$(AROS_HOST_ARCH)\
2517         --host=$(AROS_TARGET_CPU)-aros\
2518         --target=$(AROS_TARGET_CPU)-aros\
2519         --disable-nls\
2520         --without-x --without-pic --disable-shared
2521 endif
2522 ifeq (%(compiler),kernel)
2523     CONFIG_ENV := \
2524         CPP="$(KERNEL_CPP)" \
2525         CXXCPP="$(KERNEL_CPP)" \
2526         CC="$(KERNEL_CC) $(KERNEL_CFLAGS) %(extracflags) $(%(mmake)-s_flag)"\
2527         CXX="$(KERNEL_CXX) $(KERNEL_CFLAGS) %(extracflags) $(%(mmake)-s_flag)"\
2528         AS="$(KERNEL_AS)" CC_FOR_BUILD="$(HOST_CC)" RANLIB="$(RANLIB)"\
2529         TARGET_RANLIB="$(RANLIB)" TARGET_STRIP="$(STRIP_PLAIN)" \
2530         TARGET_NM="$(NM_PLAIN)"
2531     %(mmake)-config_opts += --build=$(AROS_HOST_CPU)-$(AROS_HOST_ARCH)\
2532         --host=$(AROS_TARGET_CPU)-aros\
2533         --target=$(AROS_TARGET_CPU)-aros --disable-nls\
2534         --without-x --without-pic --disable-shared
2535 endif
2537 ifeq (%(use_build_env),yes)
2538     BUILD_ENV := $(CONFIG_ENV)
2539 endif
2542 .PHONY : %(mmake) %(mmake)-clean %(mmake)-build_and_install-quick
2544 # When building for the host, we don't need to build the
2545 # linklibs - this is especially true when building the
2546 # crosstool toolchain on 'foreign' architectures (such as
2547 # building PPC on x86)
2549 #MM- %(mmake)-host : setup includes %(mmake)-quick
2550 #MM- %(mmake)-target : setup includes core-linklibs %(mmake)-quick
2551 #MM- %(mmake): %(mmake)-%(compiler)
2553 # Using -j1 in install_command may result in a warning but finally
2554 # it does its job. make install for gcc does not work reliably for -jN
2555 # where N > 1.
2556 ifneq (%(install_target),)
2557     %(mmake)-install_command = \
2558         $(MAKE) PROGDIR="$(%(mmake)-PROGDIR)/" $(%(mmake)-install_opts) \
2559         -C $(%(mmake)-pkgdir) %(install_target) -j1
2561     %(mmake)-uninstall_command = \
2562     $(RM) $(%(mmake)-installflag) && \
2563     $(MAKE) PROGDIR="$(%(mmake)-PROGDIR)/" \
2564     $(%(mmake)-install_opts) -C $(%(mmake)-pkgdir) uninstall
2565 else
2566     %(mmake)-install_command   := true
2567     %(mmake)-uninstall_command := true
2568 endif
2570 #MM- %(mmake)-quick : %(preconfigure) %(mmake)-configure %(postconfigure) %(mmake)-build_and_install-quick %(postinstall)
2573 %(mmake)-build_and_install-quick :  $(%(mmake)-installflag)
2575 $(%(mmake)-installflag) : $(%(mmake)-configflag)
2576         if ! $(MAKE) PROGDIR="$(call %(mmake)-volfunc, PROGDIR)" -q -C $(%(mmake)-pkgdir); then \
2577             $(RM)  $(%(mmake)-installflag) && \
2578             $(BUILD_ENV) $(MAKE) PROGDIR="$(call %(mmake)-volfunc, PROGDIR)"\
2579              -C $(%(mmake)-pkgdir) && \
2580             $(%(mmake)-install_command) && \
2581             $(TOUCH) $@ -r $^; \
2582         fi
2584 $(%(mmake)-pkgdir)/.files-touched:
2585         %mkdirs_q $(%(mmake)-pkgdir)
2586         find %(srcdir) -exec $(TOUCH) -c -r %(srcdir)/configure '{}' \; && \
2587         $(TOUCH) $@
2590 %(mmake)-uninstall :
2591         $(%(mmake)-uninstall_command)
2594 %(mmake)-configure : $(%(mmake)-configflag)
2596 $(%(mmake)-configflag) : TMP_SRCDIR := $(shell echo %(srcdir) | sed 's/^\(.\):\//\/\1\//')
2597 $(%(mmake)-configflag) : $(%(mmake)-pkgdir)/.files-touched $(TOP)/$(CURDIR)/mmakefile
2598         $(RM) $@
2599         %mkdirs_q $(%(mmake)-pkgdir)
2600         cd $(%(mmake)-pkgdir) && \
2601         find . -name config.cache -exec $(RM) '{}' \; && \
2602         $(CONFIG_ENV) $(TMP_SRCDIR)/configure $(%(mmake)-config_opts) \
2603             %(extraoptions) && \
2604         $(TOUCH) $@
2607 %(mmake)-clean : %(mmake)-uninstall
2608         @$(RM) $(%(mmake)-pkgdir)
2609 %end
2610 #------------------------------------------------------------------------------
2613 #------------------------------------------------------------------------------
2614 # Given an archive name, patches names and locations where to find them, fetch
2615 # the archive and the patches from any of those locations, unpack the archive
2616 # and then apply the patches.
2618 # Locations currently supported are http and ftp sites, plus local filesystem
2619 # directories. Supported archives are .tar.bz2 and .tar.gz. To modify this,
2620 # the fetch.sh script needs to be modified, since this macro relies on that script.
2622 # Arguments:
2624 #     - mmake           = mmaketarget
2625 #     - archive_origins = list of locations where to find the archive. They are tried
2626 #                         in sequence, until the archive is found and fetching it 
2627 #                         succeeded. If not specified, the current directory is assumed.
2628 #     - archive         = the archive name. Mandatory.
2629 #     - suffixes        = a list of suffixes to append to the the package name plus the
2630 #                         version. Each one of them is tried until a matching archive is
2631 #                         found. They are appended to patches and these are tried the
2632 #                         same way as packages are.
2633 #     - location        = the local directory where to put the fetched archive and patches.
2634 #                         If not specified, the directory specified by destination is used.
2635 #     - destination     = the directory to unpack the archive to.
2636 #                         If not specified, the current directory is assumed.
2637 #     - patches_origins = list of locations where to find the patches. They are tried
2638 #                         in sequence, until a patch is found and fetching it 
2639 #                         succeeded. If not specified, the current directory is assumed.
2640 #     - patches_specs   = list of "patch specs". A patch spec is of the form
2641 #                         patch_name[:[patch_subdir][:patch_opt]].
2643 #                             - patch_name   = the name of the patch file
2644 #                             - patch_subdir = the directory within \destination\ where to
2645 #                                              apply the patch.
2646 #                             - patch_opt    = any options to pass to the `patch' command
2647 #                                              when applying the patch.
2648 #                         
2649 #                         The patch_subdir and patch_opt fields are optional.
2651 %define fetch mmake=/A archive_origins=. archive=/A suffixes= location= destination=. \
2652     patches_origins=$(SRCDIR)/$(CURDIR) patches_specs=::
2654 .PHONY: %(mmake)
2656 ifneq (%(location),)
2657     %(mmake)-location := %(location)
2658 else
2659     %(mmake)-location := %(destination)
2660 endif
2663 %(mmake) :
2664         $(FETCH) -ao "%(archive_origins)" -a %(archive) -s "%(suffixes)" -l $(%(mmake)-location) \
2665         -d %(destination) -po "%(patches_origins)" -p "%(patches_specs)"
2666 %end
2667 #------------------------------------------------------------------------------
2670 #------------------------------------------------------------------------------
2671 # This macro can aid in patch creation for fetched ports. It temporarily creates another
2672 # unpatched source tree and runs diff against this and a previously fetched and possibly
2673 # patched tree. Depending on what happens after patching during a normal build it might
2674 # give best results if the new patch is created directly after fetch.
2676 # Arguments:
2678 #     - mmake       = mmaketarget
2679 #     - archive     = archive base name
2680 #     - srcdir      = directory the package is unpacked to, useful if archive unpacks to
2681 #                     a directory other than its name suggests.
2682 #     - suffixes    = a list of suffixes to append to the the package name plus the
2683 #                     version. Each one of them is tried until a matching archive is
2684 #                     found.
2685 #     - destination = the directory to unpack the archive to.
2686 #     - excludes    = diff patterns to exclude files or directories from the patch
2688 %define create_patch mmake=/A archive=/A srcdir= suffixes="tar.bz2 tar.gz" destination=/A excludes=
2690 .PHONY: %(mmake)
2692 ifneq (%(excludes),)
2693     %(mmake)-exclude := -X ./exclude.patterns
2694 endif
2696 ifneq (%srcdir),)
2697     %(mmake)-srcdir := %(srcdir)
2698 else
2699     %(mmake)-srcdir := %(archive)
2700 endif
2703 %(mmake):
2704         @$(FETCH) -a %(archive) -s "%(suffixes)" -l $(PORTSSOURCEDIR) -d %(destination)/tmp ; \
2705         $(MV) %(destination)/$(%(mmake)-srcdir) %(destination)/tmp/$(%(mmake)-srcdir).aros ; \
2706         cd %(destination)/tmp ; \
2707         $(FOR) f in %(excludes) ; do \
2708             $(ECHO) $$f >> ./exclude.patterns ; \
2709         done ; \
2710         diff -ruN $(%(mmake)-exclude) \
2711             $(%(mmake)-srcdir) \
2712             $(%(mmake)-srcdir).aros \
2713             >$(SRCDIR)/$(CURDIR)/%(archive)-aros-new.diff ; \
2714         $(MV) %(destination)/tmp/$(%(mmake)-srcdir).aros %(destination)/$(%(mmake)-srcdir) ; \
2715         $(RM) %(destination)/tmp
2716 %end
2717 #------------------------------------------------------------------------------
2720 #------------------------------------------------------------------------------
2721 # Joins the features of %fetch and %build_with_configure.
2723 # If a patch is provided, it *must* be named the following way:
2725 #    <package name>-<version number>-aros.diff
2727 # Moreover, it *must* be appliable with the -p1 option of the `patch' command after
2728 # CD'ing into the archive's extracted directory.
2730 # Note that whilst the %fetch macro accepts a list of patches for any given archive,
2731 # the %fetch_and_build macro only accepts *one* patch for each package. It's up to you
2732 # to make that patch fully comprehensive.
2734 # Arguments:
2736 #    - mmake            = the meta make target.
2737 #    - package          = the GNU package name, sans version and archive format suffixes.
2738 #    - subpackage       = ???
2739 #    - compiler         = same meaning as the one for the %build_with_configure macro.
2740 #    - install_target   = same meaning as the one for the %build_with_configure macro.
2741 #    - version          = the package's version number, or otherwise any other version string.
2742 #                         It gets appended to the package name to form the basename of the archive.
2743 #    - suffixes         = a list of suffixes to apped to the the package name plus the
2744 #                         version. Each one of them is tried until a matching archive is found.
2745 #                         Defaults to "tar.bz2 tar.gz".
2746 #    - srcdir           = ???
2747 #    - package_repo     = same meaning as the one of the %fetch macro's %(archive_origins) argument
2748 #    - patch            = "yes" or "no", depending on whether a patch for this package needs to be
2749 #                         fetched or not. Default to no.
2750 #    - patch_repo       = same meaning as the one of the %fetch macro's %(patches_origins) argument
2751 #    - prefix           = same meaning as the one for the %build_with_configure macro.
2752 #    - aros_prefix      = same meaning as the one for the %build_with_configure macro.
2753 #    - extraoptions     = same meaning as the one for the %build_with_configure macro.
2754 #    - extracflags      = same meaning as the one for the %build_with_configure macro.
2755 #    - preconfigure     = same meaning as the one for the %build_with_configure macro.
2756 #    - postconfigure    = same meaning as the one for the %build_with_configure macro.
2757 #    - postinstall      = same meaning as the one for the %build_with_configure macro.
2758 #    - install_env      = same meaning as the one for the %build_with_configure macro.
2759 #    - use_build_env    = same meaning as the one for the %build_with_configure macro.
2760 #    - nix              = same meaning as the one for the %build_with_configure macro.
2761 #    - nix_dir_layout   = same meaning as the one for the %build_with_configure macro.
2762 #    - create_pkg       = create a distributable package of the compiled sources, defaults to no
2764 %define fetch_and_build mmake=/A package=/A subpackage= compiler=target install_target=install \
2765     version=/A suffixes="tar.bz2 tar.gz" srcdir= package_repo= patch=no patch_repo= \
2766     prefix= aros_prefix= extraoptions= extracflags= preconfigure= postconfigure= postinstall= \
2767     install_env= use_build_env=no nix=no nix_dir_layout= create_pkg=no
2769 #MM- %(mmake)-quick : %(mmake)-%(subpackage)-quick
2770 #MM- %(mmake)-%(subpackage)-quick : %(mmake)-%(subpackage)-fetch
2771 #MM- %(mmake)-fetch : %(mmake)-%(subpackage)-fetch
2772 #MM- %(mmake)-create-patch : %(mmake)-%(subpackage)-create-patch
2774 %(mmake)-archbase  := %(package)-%(version)
2776 ifeq (%(compiler),host)
2777     %(mmake)-portdir  := $(HOSTDIR)/Ports/%(package)
2778 else
2779     %(mmake)-portdir  := $(PORTSDIR)/%(package)
2780 endif
2782 ifeq (%(prefix),)
2783     %(mmake)-prefix := $(CONTRIB_DIR)/%(package)
2784 else
2785     %(mmake)-prefix := %(prefix)
2786 endif
2788 ifneq (%(subpackage),)
2789     %(mmake)-%(subpackage)-archbase  := %(package)-%(subpackage)-%(version)
2790 else
2791     %(mmake)-%(subpackage)-archbase  := %(package)-%(version)
2792 endif
2794 ifneq (%(srcdir),)
2795     %(mmake)-%(subpackage)-srcdir  := %(srcdir)
2796 else
2797     %(mmake)-%(subpackage)-srcdir  := $(%(mmake)-archbase)
2798 endif
2800 ifeq (%(patch),yes)
2801     %(mmake)-%(subpackage)-patches_specs := $(%(mmake)-%(subpackage)-archbase)-aros.diff:$(%(mmake)-%(subpackage)-srcdir):-f,-p1
2802 else
2803     %(mmake)-%(subpackage)-patches_specs := ::
2804 endif
2806 %fetch mmake=%(mmake)-%(subpackage)-fetch archive=$(%(mmake)-%(subpackage)-archbase) suffixes="%(suffixes)" \
2807     location=$(PORTSSOURCEDIR) destination=$(%(mmake)-portdir) \
2808     archive_origins=". %(package_repo)" \
2809     patches_specs="$(%(mmake)-%(subpackage)-patches_specs)" patches_origins="$(SRCDIR)/$(CURDIR) %(patch_repo)"
2811 %create_patch mmake=%(mmake)-%(subpackage)-create-patch \
2812     archive=$(%(mmake)-%(subpackage)-archbase) \
2813     srcdir=$(%(mmake)-%(subpackage)-srcdir) \
2814     suffixes="%(suffixes)" \
2815     destination=$(%(mmake)-portdir)
2817 #MM- %(mmake) : %(mmake)-%(subpackage)
2819 %(mmake)-%(subpackage)-package-dir := $(%(mmake)-portdir)/$(%(mmake)-%(subpackage)-archbase)
2821 %(mmake)-%(subpackage)-package-basename := \
2822     $(DISTDIR)/Packages/$(%(mmake)-%(subpackage)-archbase)-aros.$(AROS_TARGET_CPU)
2824 ifneq (%(create_pkg),no)
2825     %(mmake)-%(subpackage)-package := $(%(mmake)-%(subpackage)-package-basename).tar.bz2
2826 endif
2828 %build_with_configure mmake=%(mmake)-%(subpackage) package=%(package) compiler=%(compiler) install_target=%(install_target) \
2829      srcdir=$(%(mmake)-portdir)/$(%(mmake)-%(subpackage)-srcdir) install_env=%(install_env) use_build_env=%(use_build_env) \
2830      nix=%(nix) nix_dir_layout=%(nix_dir_layout) prefix="$(%(mmake)-prefix)" \
2831      aros_prefix="%(aros_prefix)" preconfigure="%(preconfigure)" postconfigure="%(postconfigure)" postinstall="%(postinstall) \
2832      %(mmake)-%(subpackage)-make-package"  extraoptions="%(extraoptions)" extracflags="%(extracflags)"
2834 .PHONY : %(mmake)-%(subpackage)-make-package %(mmake)-%(subpackage)-create-patch
2835 #MM %(mmake)-%(subpackage)-make-package : %(mmake)-%(subpackage)-quick
2838 %(mmake)-%(subpackage)-make-package : $(%(mmake)-%(subpackage)-package)
2840 #There seems to be a bug, either with my clock or with make, 'cause it may happen
2841 #that $^ and $@ have exactly the same mtime, and in that case make tries
2842 #to rebuild $@ again, which would fail because the directory where
2843 #the package got installed would not exist anymore. 
2844 #We work this around by using an if statement to manually check the mtimes.
2845 $(%(mmake)-%(subpackage)-package-basename).tar.bz2 :
2846         @$(IF) test $(%(mmake)-installflag) -nt $@ || ! test -f $@; then \
2847         $(RM) $@ ; \
2848         $(ECHO) "Building   \`$(%(mmake)-%(subpackage)-package-basename).tar.bz2'" ; \
2849         mkdir -p "$(DISTDIR)/Packages" ; \
2850         mkdir -p "$(%(mmake)-prefix)" ; \
2851         cd $(%(mmake)-%(subpackage)-package-dir) ; \
2852         tar -cvf $(%(mmake)-%(subpackage)-package-basename).tar * ; \
2853         bzip2 -9 -f $(%(mmake)-%(subpackage)-package-basename).tar ; \
2854     fi
2855 %end
2856 #------------------------------------------------------------------------------
2859 #------------------------------------------------------------------------------
2860 # Joins the features of %fetch and %build_with_configure, taking advantage of
2861 # the naming scheme of GNU packages. GNU packages names are in the form
2863 #     <package name>-<version number>.<archive format suffix>
2865 # If a patch is provided, it *must* be named the following way:
2867 #    <package name>-<version number>-aros.diff
2869 # Moreover, it *must* be appliable with the -p1 option of the `patch' command after
2870 # CD'ing into the archive's extracted directory.
2872 # Note that whilst the %fetch macro accepts a list of patches for any given archive,
2873 # the %fetch_and_build macro only accepts *one* patch for each package. It's up to you
2874 # to make that patch fully comprehensive.
2876 # NOTE: GNU packages are always compiled with *nix semantics turned on.
2878 # Arguments:
2880 #    Arguments have the same meaning as the one for the %fetch_and_build macro, except:
2882 #    - prefix           = defaults to $(GNUDIR).
2883 #    - aros_prefix      = defaults to /GNU.
2885 %define fetch_and_build_gnu mmake=/A package=/A subpackage= version=/A suffixes="tar.bz2 tar.gz" \
2886     srcdir= package_repo= patch=no patch_repo= prefix=$(GNUDIR) \
2887     aros_prefix=/GNU extraoptions= extracflags= preconfigure= postconfigure= postinstall= 
2889 GNU_REPOSITORY := gnu://
2891 %fetch_and_build mmake="%(mmake)" package="%(package)" subpackage="%(subpackage)" version="%(version)" \
2892     suffixes="%(suffixes)" srcdir="%(srcdir)" \
2893     package_repo="%(package_repo) $(GNU_REPOSITORY)%(package)" \
2894     patch="%(patch)" patch_repo="%(patch_repo)" \
2895     prefix="%(prefix)" aros_prefix="%(aros_prefix)" extraoptions="%(extraoptions)" extracflags="%(extracflags)" \
2896     preconfigure="%(preconfigure)" postconfigure="%(postconfigure)" postinstall="%(postinstall)" nix=yes
2898 %end
2899 #------------------------------------------------------------------------------
2902 #------------------------------------------------------------------------------
2903 # Same job as the one of %fetch_and_build_gnu, except that this one assumes
2904 # that the package is a "Development" package, and as such it needs to be placed
2905 # under the $(AROS_DEVELOPMENT) directory, as a default. 
2907 # All the arguments have the same meaning as the ones of the %fetch_and_build_gnu 
2908 # macro, but notice that %fetch_and_build_gnu_development *doesn't* have a
2909 # "mmake" argument, because the metatarget is implicitely defined as
2911 #     #MM- development-%(package)
2913 %define fetch_and_build_gnu_development package=/A subpackage= version=/A suffixes="tar.bz2 tar.gz" \
2914     srcdir= package_repo= patch=no patch_repo= prefix=$(AROS_DEVELOPMENT) \
2915     aros_prefix=/Development preconfigure= postconfigure= postinstall=  extraoptions= extracflags=
2917 #MM- development : development-%(package)
2920 %fetch_and_build_gnu mmake=development-%(package) package=%(package) subpackage="%(subpackage)" \
2921    version=%(version) suffixes="%(suffixes)" srcdir="%(srcdir)"  \
2922    package_repo="%(package_repo)" patch="%(patch)" patch_repo="%(patch_repo)" prefix=%(prefix) \
2923    aros_prefix="%(aros_prefix)" preconfigure="%(preconfigure)" postconfigure="%(postconfigure)" postinstall="postinstall-%(package)-delete-la-files %(postinstall)" \
2924    extraoptions="%(extraoptions)" extracflags="%(extracflags)"
2927 postinstall-%(package)-delete-la-files:
2928         $(RM) $(AROS_DEVELOPMENT)/lib/*.la
2930 %end
2931 #------------------------------------------------------------------------------
2933 # Builds a kickstart package in PKG format
2935 # Arguments:
2937 #    - mmake   = target name
2938 #    - file    = destination file name with path
2939 #    - startup = the file which will be put first
2941 # Other arguments are self-explanatory
2943 %define make_package mmake=/A file=/A classes= devs= handlers= hidds= libs= res= startup=
2945 PKG_CLASSES   := $(addsuffix .class, %(classes))
2946 PKG_DEVICES   := $(addsuffix .device, %(devs))
2947 PKG_HANDLERS  := $(addsuffix -handler, %(handlers))
2948 PKG_HIDD      := $(addsuffix .hidd, %(hidds))
2949 PKG_LIBS      := $(addsuffix .library, %(libs))
2950 PKG_RESOURCES := $(addsuffix .resource, %(res))
2952 PKG_FILES := %(startup) $(PKG_CLASSES) $(PKG_DEVICES) $(PKG_HANDLERS) $(PKG_HIDD) $(PKG_LIBS) $(PKG_RESOURCES)
2953 PKG_DIR   := $(dir %(file))
2954 PKG_DEPS  := $(addprefix $(PKGDIR)/, $(PKG_FILES))
2957 %(mmake) : %(file)
2960 %(mmake)-quick : %(file)
2962 %(file): PKG_FILES := $(PKG_FILES)
2963 %(file): $(PKG_DEPS) | $(PKG_DIR)
2964         @$(ECHO) Packaging $@...
2965         @$(SRCDIR)/tools/package/pkg c $@ $(PKGDIR) $(PKG_FILES)
2967 %compress_file mmake=%(mmake) file=%(file)
2969 GLOB_MKDIRS += $(PKG_DIR)
2971 %end
2973 #------------------------------------------------------------------------------
2974 # Compresses %(file) with a gzip.
2975 # Good in conjunction with for example %build_prog
2977 %define compress_file mmake=/A file=/A
2979 #MM- %(mmake)-gz : %(mmake) %(mmake)-gz-quick
2982 %(mmake)-gz-quick : %(file).gz
2984 %(file).gz: %(file)
2985         @$(ECHO) Compressing $(subst $(TARGETDIR)/,,$^)...
2986         @gzip -9 -f $^
2988 %end
2990 #------------------------------------------------------------------------------
2991 # Links a kickstart module in ELF format
2992 # Arguments are similar to make_package
2994 %define link_kickstart mmake=/A file=/A classes= devs= handlers= hidds= libs= res= \
2995     startup= uselibs= ldflags=$(LDFLAGS) map= deps=
2997 KOBJ_CLASSES  := $(addprefix $(KOBJSDIR)/, $(addsuffix _class.o, %(classes)))
2998 KOBJ_DEVICES  := $(addprefix $(KOBJSDIR)/, $(addsuffix _device.o, %(devs)))
2999 KOBJ_HANDLERS := $(addprefix $(KOBJSDIR)/, $(addsuffix _handler.o, %(handlers)))
3000 KOBJ_HIDD     := $(addprefix $(KOBJSDIR)/, $(addsuffix _hidd.o, %(hidds)))
3001 KOBJ_LIBS     := $(addprefix $(KOBJSDIR)/, $(addsuffix _library.o, %(libs)))
3002 KOBJ_RES      := $(addprefix $(KOBJSDIR)/, $(addsuffix _resource.o, %(res)))
3004 ifeq (%(startup),)
3005     KOBJ_STARTUP := $(GENDIR)/$(RESIDENT_BEGIN).o
3006 else
3007     KOBJ_STARTUP := %(startup)
3008 endif
3010 KOBJS        := $(KOBJ_STARTUP) $(KOBJ_CLASSES) $(KOBJ_HANDLERS) $(KOBJ_LIBS) $(KOBJ_DEVICES) $(KOBJ_HIDD) $(KOBJ_RES)
3012 TMP_LDFLAGS := %(ldflags)
3014 # Make a list of the lib files this program depends on.
3015 # In LDFLAGS remove white space between -L and directory
3016 TMP_DIRS := $(subst -L ,-L,$(strip $(TMP_LDFLAGS)))
3017 # Filter out only the libdirs and remove -L
3018 TMP_DIRS := $(patsubst -L%,%,$(filter -L%,$(TMP_DIRS)))
3019 # Add trailing /
3020 TMP_DIRS := $(subst //,/,$(addsuffix /,$(TMP_DIRS)))
3021 # Add normal linklib path
3022 TMP_DIRS += $(LIBDIR)/
3023 # add lib and .a to static linklib names
3024 TMP_LIBS := $(addprefix lib,$(addsuffix .a,%(uselibs) libinit autoinit))
3025 # search for the linklibs in the given path, ignore ones not found
3026 TMP_DEPLIBS := $(foreach lib,$(TMP_LIBS), \
3027     $(firstword $(wildcard $(addsuffix $(lib),$(TMP_DIRS)))) \
3030 TMP_DIRS += $(dir %(file))
3031 ifneq (%(map),)
3032     TMP_LDFLAGS += $(GENMAP) %(map)
3033     TMP_DIRS    += $(dir %(map))
3034 endif
3036 #MM %(mmake) : %(deps)
3039 %(mmake) : %(file)
3042 %(mmake)-quick : %(file)
3044 %(file): KOBJS := $(KOBJS)
3045 %(file): LDFLAGS := $(TMP_LDFLAGS) $(NOSTARTUP_LDFLAGS) \
3046                     -noarosc -nosysbase -Wl,-Ur
3047 %(file): LDLIBS := $(addprefix -l, %(uselibs))
3048 %(file): $(KOBJS) $(DEPLIBS) | $(TMP_DIRS)
3049         @$(ECHO) "Kickstart  $(subst $(TARGETDIR)/,,$@)..."
3050         @$(TARGET_CC) -o $@ $(KOBJS) $(LDFLAGS) $(LDLIBS)
3051         @$(STRIP) $@
3053 %compress_file mmake=%(mmake) file=%(file)
3055 GLOB_MKDIRS += $(TMP_DIRS)
3057 %end