arosc.library: Fix bug in __vcscan where junk characters were accepted as floats
[AROS.git] / config / make.tmpl
blobe758635b19e4e5cccc81329c5a80b555defbb207
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 %(cflags)
396   else
397     $(TMP_TARGETBASE).d : TMP_DFLAGS:=%(cflags)
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:=%(cflags)
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) $(%(module)_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                  uselibs="%(uselibs) $(%(modname)_LIBS)" usehostlibs="%(usehostlibs)"
1332 %rule_linkmodule module=$(BD_PKGMOD) objs=$(BD_OBJS) \
1333                  endobj= err=$(BD_ERR) objdir=%(objdir) \
1334                  uselibs="%(uselibs) $(%(modname)_LIBS)" usehostlibs="%(usehostlibs)"
1336 # Link kernel object file
1337 BD_KAUTOLIB := dos intuition layers graphics oop utility expansion keymap
1339 # Make these symbols local
1340 BD_KBASE := DOSBase IntuitionBase LayersBase GfxBase OOPBase \
1341             UtilityBase ExpansionBase KeymapBase KernelBase
1343 BD_SYMBOLS := $(BD_KBASE)
1345 BD_KLIB := hiddstubs amiga arossupport arosc.static arosm autoinit libinit
1346 BD_KOBJ_LIBS := $(filter-out $(BD_KLIB),%(uselibs)) $(BD_KAUTOLIB)
1347 $(BD_KOBJ) : LINKLIBS:=$(BD_KOBJ_LIBS)
1348 $(BD_KOBJ) : FILTBASES:=$(addprefix -L ,$(BD_SYMBOLS))
1349 $(BD_KOBJ) : USER_LDFLAGS := $(USER_LDFLAGS)
1350 $(BD_KOBJ) : $(BD_OBJS) $(BD_ENDOBJS)
1351         @$(ECHO) "Linking    $(subst $(TARGETDIR)/,,$@)"
1352         @$(AROS_LD) -Ur -o $@ $^ $(USER_LDFLAGS) -L$(AROS_LIB) $(addprefix -l,$(LINKLIBS))
1353         @$(OBJCOPY) $@ $(FILTBASES) `$(NM_PLAIN) $@ | $(AWK) '($$3 ~ /^__.*_(LIST|END)__\r?$$/) || ($$3 ~ /^__aros_lib.*\r?$$/) {print "-L " $$3;}'`
1356 ## Dependency fine-tuning
1358 BD_DEPS       := $(addprefix %(objdir)/, $(addsuffix .d,%(files)))
1359 %include_deps depstargets="%(mmake) %(mmake)-quick %(mmake)-kobj %(mmake)-pkg" deps=$(BD_DEPS)
1361 $(BD_OBJS) $(BD_DEPS) : | %(objdir)
1362 $(BD_MODULE) : | $(BD_MODDIR)
1363 $(BD_KOBJ) : | $(KOBJSDIR)
1364 GLOB_MKDIRS += %(objdir) $(BD_MODDIR) $(KOBJSDIR)
1366 %(mmake)-clean : FILES := $(BD_OBJS) $(BD_MODULE) $(BD_KOBJ) $(BD_DEPS)
1367 %(mmake)-clean ::
1368         @$(ECHO) "Cleaning up for module %(modname)"
1369         @$(RM) $(FILES)
1370 %end
1371 #------------------------------------------------------------------------------
1374 #------------------------------------------------------------------------------
1375 # Build a module
1376 # Explanation of this macro is done in the developer's manual
1377 %define build_module mmake=/A modname=/A modtype=/A modsuffix= version= \
1378   conffile= files="$(basename $(call WILDCARD, *.c))" \
1379   linklibfiles= linklibobjs= cflags=$(CFLAGS) dflags=$(BD_DEFDFLAGS) \
1380   objdir=$(OBJDIR) moduledir=$(BD_DEFMODDIR) prefix=$(AROSDIR) \
1381   linklibname=$(BD_DEFLINKLIBNAME) uselibs= usehostlibs= \
1382   compiler=target nostartup=yes
1384 # Define metamake targets and their dependencies
1385 #MM- includes-all : %(mmake)-includes
1386 #MM- linklibs-%(modname): %(mmake)-linklib
1387 #MM- linklibs-%(modname)_rel : %(mmake)-linklib
1388 #MM- includes-%(modname): %(mmake)-includes
1389 #MM- includes-%(modname)_rel : %(mmake)-includes
1390 #MM %(mmake) : %(mmake)-includes core-linklibs linklibs-%(uselibs)
1391 #MM %(mmake)-kobj : %(mmake)-includes core-linklibs linklibs-%(uselibs)
1392 #MM %(mmake)-kobj-quick : %(mmake)-includes-quick
1393 #MM %(mmake)-pkg : %(mmake)-includes core-linklibs linklibs-%(uselibs)
1394 #MM %(mmake)-pkg-quick : %(mmake)-includes-quick
1395 #MM %(mmake)-linklib : %(mmake)-includes includes-%(uselibs)
1396 #MM %(mmake)-quick : %(mmake)-includes-quick
1397 #MM %(mmake)-includes : %(mmake)-makefile %(mmake)-includes-dirs \
1398 #MM     includes-generate-deps %(mmake)-fd
1399 #MM %(mmake)-includes-quick
1400 #MM %(mmake)-includes-dirs
1401 #MM %(mmake)-fd
1402 #MM %(mmake)-makefile
1403 #MM %(mmake)-clean
1405 # All MetaMake targets defined by this macro
1406 BD_ALLTARGETS := %(mmake) %(mmake)-quick %(mmake)-includes \
1407     %(mmake)-includes-quick %(mmake)-includes-dirs %(mmake)-clean \
1408     %(mmake)-kobj %(mmake)-kobj-quick %(mmake)-pkg %(mmake)-pkg-quick \
1409     %(mmake)-linklib %(mmake)-fd
1411 .PHONY : $(BD_ALLTARGETS) %(mmake)-makefile
1413 ifeq (%(modname),)
1414 $(error using %build_module: modname may not be empty)
1415 endif
1416 ifeq (%(modtype),)
1417 $(error using %build_module: $(MODTYPE) has to be defined with the type of the module)
1418 endif
1420 # Default values for variables and arguments
1421 BD_DEFLINKLIBNAME := %(modname)
1422 BD_DEFDFLAGS := %(cflags)
1423 OBJDIR ?= $(GENDIR)/$(CURDIR)
1425 ## Create genmodule include Makefile for the module
1427 %(mmake)-makefile : %(objdir)/Makefile.%(modname)
1429 %rule_genmodule_makefile \
1430     modname=%(modname) modtype=%(modtype) \
1431     modsuffix=%(modsuffix) targetdir=%(objdir) \
1432     conffile=%(conffile)
1434 %(objdir)/Makefile.%(modname) : | %(objdir)
1436 GLOB_MKDIRS += %(objdir)
1438 # Do not parse these statements if metatarget is not appropriate
1439 ifneq ($(filter $(TARGET),$(BD_ALLTARGETS)),)
1441 include %(objdir)/Makefile.%(modname)
1443 BD_DEFMODDIR := $(%(modname)_MODDIR)
1446 ## include files generation
1448 BD_INCDIR    := %(prefix)/$(AROS_DIR_INCLUDE)
1449 BD_LIBDEFSINC := %(objdir)/include/%(modname)_libdefs.h
1450 BD_DEFLIBDEFSINC := %(objdir)/include/%(modname)_deflibdefs.h
1452 %(mmake)-includes-quick : %(mmake)-includes
1453 %(mmake)-includes : $(addprefix $(GENINCDIR)/,$(%(modname)_INCLUDES)) \
1454     $(addprefix $(BD_INCDIR)/,$(%(modname)_INCLUDES)) \
1455     $(BD_LIBDEFSINC) $(BD_DEFLIBDEFSINC)
1457 ifneq ($(%(modname)_INCLUDES),)
1458 %rule_genmodule_includes modname=%(modname) modtype=%(modtype) \
1459                          modsuffix=%(modsuffix) targetdir=%(objdir)/include \
1460                          conffile=%(conffile)
1462 %rule_copy_diff_multi \
1463     files=$(%(modname)_INCLUDES) srcdir=%(objdir)/include targetdir=$(GENINCDIR) \
1464     stampfile=%(objdir)/%(modname)_geninc
1466 %rule_copy_diff_multi \
1467     files=$(%(modname)_INCLUDES) srcdir=%(objdir)/include targetdir=$(BD_INCDIR) \
1468     stampfile=%(objdir)/%(modname)_incs
1470 BD_INCDIRS := $(filter-out ./,$(sort $(dir $(%(modname)_INCLUDES))))
1472 TMP%(modname)_INCDIRS := \
1473     %(objdir)/include $(addprefix %(objdir)/include/,$(BD_INCDIRS)) \
1474     $(GENINCDIR) $(addprefix $(GENINCDIR)/,$(BD_INCDIRS)) \
1475     $(BD_INCDIR) $(addprefix $(BD_INCDIR)/,$(BD_INCDIRS))
1476 %rule_makedirs dirs=$(TMP%(modname)_INCDIRS) setuptarget=%(mmake)-includes-dirs
1478 endif
1480 %rule_genmodule_genlibdefs modname=%(modname) modtype=%(modtype) \
1481                            modsuffix=%(modsuffix) targetdir=%(objdir)/include \
1482                            conffile=%(conffile) version=%(version)
1484 $(BD_DEFLIBDEFSINC) : FILENAME := $(BD_LIBDEFSINC)
1485 $(BD_DEFLIBDEFSINC) :
1486         @$(ECHO) "generating $@"
1487         @$(ECHO) "#define LC_LIBDEFS_FILE \"$(FILENAME)\"" >$@
1489 $(BD_LIBDEFSINC) $(BD_DEFLIBDEFSINC) : | %(objdir)/include
1490 GLOB_MKDIRS += %(objdir)/include
1492 ## Extra genmodule src files generation
1493 ## 
1494 %rule_genmodule_files modname=%(modname) modtype=%(modtype) \
1495                       modsuffix=%(modsuffix) targetdir=%(objdir) \
1496                       conffile=%(conffile)
1499 ## Create FD file
1500 BD_FDDIR := $(AROS_DEVELOPMENT)/fd
1501 %(mmake)-fd : $(BD_FDDIR)/%(modname)_lib.fd
1503 %rule_genmodule_fd modname=%(modname) modtype=%(modtype) \
1504                    modsuffix=%(modsuffix) targetdir=$(BD_FDDIR) conffile=%(conffile)
1506 $(BD_FDDIR)/%(modname)_lib.fd : | $(BD_FDDIR)
1508 GLOB_MKDIRS += $(BD_FDDIR)
1511 ## Compilation
1513 BD_FILES      := %(files)
1514 BD_FDIRS      := $(sort $(dir $(BD_FILES)))
1515 BD_STARTFILES := $(addprefix %(objdir)/,$(%(modname)_STARTFILES))
1516 BD_ENDFILES   := $(addprefix %(objdir)/,$(%(modname)_ENDFILES))
1518 BD_ARCHOBJS   := $(wildcard %(objdir)/arch/*.o)
1519 BD_ARCHFILES  := $(basename $(notdir $(BD_ARCHOBJS)))
1520 BD_NARCHFILES := $(filter-out $(BD_ARCHFILES),$(BD_FILES))
1522 BD_CFLAGS     := %(cflags) -I%(objdir)/include -include $(BD_DEFLIBDEFSINC) $(%(modname)_CFLAGS)
1523 BD_DFLAGS     := %(dflags) -I%(objdir)/include -include $(BD_DEFLIBDEFSINC) $(%(modname)_DFLAGS)
1525 ifeq (%(modtype),library)
1526     BD_LIBSUFFIX := 
1527 else
1528     BD_LIBSUFFIX := .%(modtype)
1529 endif
1531 BD_LINKLIBCFILES := $(addprefix %(objdir)/,$(%(modname)_LINKLIBFILES))
1532 BD_LINKLIBAFILES := $(addprefix %(objdir)/,$(%(modname)_LINKLIBAFILES))
1533 ifeq ($(strip $(%(modname)_LINKLIBFILES) $(%(modname)_LINKLIBAFILES) %(linklibfiles)),)
1534     BD_LINKLIB :=
1535 else
1536     BD_LINKLIB := %(prefix)/$(AROS_DIR_LIB)/lib%(modname)$(BD_LIBSUFFIX).a
1537     ifneq (%(modname),%(linklibname))
1538         BD_LINKLIB += %(prefix)/$(AROS_DIR_LIB)/lib%(linklibname)$(BD_LIBSUFFIX).a
1539     endif
1540 endif
1541 BD_LINKLIBFILES := $(BD_LINKLIBCFILES) $(BD_LINKLIBAFILES)
1543 BD_RELLINKLIBCFILES := $(addprefix %(objdir)/,$(%(modname)_RELLINKLIBFILES))
1544 BD_RELLINKLIBAFILES := $(addprefix %(objdir)/,$(%(modname)_RELLINKLIBAFILES))
1545 ifeq ($(strip $(%(modname)_RELLINKLIBFILES) $(%(modname)_RELLINKLIBAFILES) %(linklibfiles)),)
1546     BD_RELLINKLIB :=
1547 else
1548     BD_RELLINKLIB := %(prefix)/$(AROS_DIR_LIB)/lib%(modname)_rel$(BD_LIBSUFFIX).a
1549     ifneq (%(modname),%(linklibname))
1550         BD_RELLINKLIB += %(prefix)/$(AROS_DIR_LIB)/lib%(linklibname)_rel$(BD_LIBSUFFIX).a
1551     endif
1552 endif
1553 BD_RELLINKLIBFILES := $(BD_RELLINKLIBCFILES) $(BD_RELLINKLIBAFILES)
1555 BD_CCFILES := $(BD_NARCHFILES) %(linklibfiles)
1556 BD_TARGETCCFILES := $(BD_STARTFILES) $(BD_ENDFILES) $(BD_LINKLIBCFILES) \
1557     $(BD_RELLINKLIBCFILES)
1559 %rule_compile_multi \
1560     basenames=$(BD_CCFILES) targetdir=%(objdir) \
1561     cflags=$(BD_CFLAGS) dflags=$(BD_DFLAGS) \
1562     compiler=%(compiler)
1563 %rule_compile_multi \
1564     basenames=$(BD_TARGETCCFILES) targetdir=%(objdir) \
1565     cflags="$(BD_CFLAGS) -D__AROS__" dflags=$(BD_DFLAGS) \
1566     compiler=%(compiler)
1568 ifneq ($(BD_LINKLIBAFILES),)
1569 %rule_assemble_multi \
1570     basenames="$(BD_LINKLIBAFILES) $(BD_RELLINKLIBAFILES)" targetdir=%(objdir) suffix=.S
1571 endif
1573 ## Linking
1575 ifeq (%(modsuffix),)
1576 BD_SUFFIX := %(modtype)
1577 else
1578 BD_SUFFIX := %(modsuffix)
1579 endif
1581 # Handlers use dash instead of dot in their names
1582 ifeq ($(BD_SUFFIX),handler)
1583 BD_MODULE := %(prefix)/%(moduledir)/%(modname)-$(BD_SUFFIX)
1584 BD_PKGMOD := $(PKGDIR)/%(modname)-$(BD_SUFFIX)
1585 else
1586 BD_MODULE := %(prefix)/%(moduledir)/%(modname).$(BD_SUFFIX)
1587 BD_PKGMOD := $(PKGDIR)/%(modname).$(BD_SUFFIX)
1588 endif
1589 BD_KOBJ   := $(KOBJSDIR)/%(modname)_$(BD_SUFFIX).o
1591 %(mmake)-quick      : %(mmake)
1592 %(mmake)            : $(BD_MODULE) $(BD_LINKLIB) $(BD_RELLINKLIB)
1593 %(mmake)-pkg        : $(BD_PKGMOD) $(BD_LINKLIB) $(BD_RELLINKLIB)
1594 %(mmake)-pkg-quick  : $(BD_PKGMOD) $(BD_LINKLIB) $(BD_RELLINKLIB)
1595 %(mmake)-kobj       : $(BD_KOBJ) $(BD_LINKLIB) $(BD_RELLINKLIB)
1596 %(mmake)-kobj-quick : $(BD_KOBJ) $(BD_LINKLIB) $(BD_RELLINKLIB)
1597 %(mmake)-linklib    : $(BD_LINKLIB) $(BD_RELLINKLIB)
1599 BD_OBJS       := $(addsuffix .o,$(BD_STARTFILES)) $(BD_ARCHOBJS) \
1600                  $(addsuffix .o, $(addprefix %(objdir)/,$(notdir $(BD_NARCHFILES))))
1602 ifeq (%(nostartup),yes)
1603 # Handlers always have entry point
1604 ifneq (%(modtype),handler)
1605 BD_STARTOBJS  := $(addsuffix .o,$(addprefix $(GENDIR)/,$(RESIDENT_BEGIN)))
1606 endif
1607 endif
1609 BD_ENDOBJS    := $(addsuffix .o,$(BD_ENDFILES))
1610 BD_LINKLIBOBJS:= $(addsuffix .o,$(addprefix %(objdir)/,$(notdir %(linklibfiles))) $(BD_LINKLIBFILES)) \
1611                  %(linklibobjs)
1612 BD_RELLINKLIBOBJS \
1613               := $(addsuffix .o,$(addprefix %(objdir)/,$(notdir %(linklibfiles))) $(BD_RELLINKLIBFILES)) \
1614                  %(linklibobjs)
1616 # Under Windows con* is a reserved name, it refers to console. Files with such names can't be created.
1617 # This breaks con-handler build. Here we work around this
1618 ifeq (%(modname),con)
1619     BD_ERR := $(notdir $(BD_MODULE)).err
1620 else
1621     BD_ERR := %(modname).err
1622 endif
1624 # The module is linked from all the compiled .o files
1625 %rule_linkmodule module=$(BD_MODULE) objs="$(BD_STARTOBJS) $(BD_OBJS) $(USER_OBJS)" \
1626                  endobj=$(BD_ENDOBJS) err=$(BD_ERR) objdir=%(objdir) \
1627                  uselibs="%(uselibs) $(%(modname)_LIBS)" usehostlibs="%(usehostlibs)"
1629 %rule_linkmodule module=$(BD_PKGMOD) objs="$(BD_STARTOBJS) $(BD_OBJS) $(USER_OBJS)" \
1630                  endobj=$(BD_ENDOBJS) err=$(BD_ERR) objdir=%(objdir) \
1631                  uselibs="%(uselibs) $(%(modname)_LIBS)" usehostlibs="%(usehostlibs)"
1633 # Link static lib
1634 ifneq ($(BD_LINKLIB),)
1635 %rule_link_linklib libname=%(modname)$(BD_LIBSUFFIX) objs=$(BD_LINKLIBOBJS) libdir=%(prefix)/$(AROS_DIR_LIB)
1637 ifneq (%(modname),%(linklibname))
1638 %rule_link_linklib libname=%(linklibname)$(BD_LIBSUFFIX) objs=$(BD_LINKLIBOBJS) libdir=%(prefix)/$(AROS_DIR_LIB)
1639 endif
1641 $(BD_LINKLIB) : | %(prefix)/$(AROS_DIR_LIB)
1642 GLOB_MKDIRS += %(prefix)/$(AROS_DIR_LIB)
1643 endif
1645 ifneq ($(BD_RELLINKLIB),)
1646 %rule_link_linklib libname=%(modname)_rel$(BD_LIBSUFFIX) objs=$(BD_RELLINKLIBOBJS) libdir=%(prefix)/$(AROS_DIR_LIB)
1647 ifneq (%(modname),%(linklibname))
1648 %rule_link_linklib libname=%(linklibname)_rel$(BD_LIBSUFFIX) objs=$(BD_RELLINKLIBOBJS) libdir=%(prefix)/$(AROS_DIR_LIB)
1649 endif
1651 $(BD_RELLINKLIB) : | %(prefix)/$(AROS_DIR_LIB)
1652 GLOB_MKDIRS += %(prefix)/$(AROS_DIR_LIB)
1653 endif
1655 # Link kernel object file
1656 BD_KAUTOLIB := dos intuition layers graphics oop utility expansion keymap
1658 # Make these symbols local
1659 BD_KBASE := DOSBase IntuitionBase LayersBase GfxBase OOPBase \
1660             UtilityBase ExpansionBase KeymapBase KernelBase
1662 BD_SYMBOLS := $(BD_KBASE)
1664 BD_KLIB := hiddstubs amiga arossupport arosc.static arosm autoinit libinit
1665 BD_KOBJ_LIBS := $(filter-out $(BD_KLIB),%(uselibs)) $(BD_KAUTOLIB)
1666 $(BD_KOBJ) : LINKLIBS:=$(BD_KOBJ_LIBS) $(%(modname)_LIBS)
1667 $(BD_KOBJ) : FILTBASES:=$(addprefix -L ,$(BD_SYMBOLS))
1668 $(BD_KOBJ) : USER_LDFLAGS:=$(USER_LDFLAGS)
1669 $(BD_KOBJ) : $(BD_OBJS) $(USER_OBJS) $(BD_ENDOBJS)
1670         @$(ECHO) "Linking    $(subst $(TARGETDIR)/,,$@)"
1671         @$(AROS_LD) -Ur -o $@ $^ $(USER_LDFLAGS) -L$(AROS_LIB) $(addprefix -l,$(LINKLIBS))
1672         @$(OBJCOPY) $@ $(FILTBASES) `$(NM_PLAIN) $@ | $(AWK) '($$3 ~ /^__.*_(LIST|END)__\r?$$/) || ($$3 ~ /^__aros_lib.*\r?$$/) {print "-L " $$3;}'`
1674 ## Dependency fine-tuning
1676 BD_DEPS := $(addsuffix .d,$(addprefix %(objdir)/,$(notdir $(BD_CCFILES) $(BD_TARGETCCFILES))))
1677 %include_deps depstargets="%(mmake) %(mmake)-quick %(mmake)-kobj %(mmake)-kobj-quick %(mmake)-pkg %(mmake)-pkg-quick" deps=$(BD_DEPS)
1679 $(BD_OBJS) $(BD_DEPS) : | %(objdir)
1680 $(BD_MODULE) : | %(prefix)/%(moduledir)
1681 $(BD_PKGMOD) : | $(PKGDIR)
1682 $(BD_KOBJ)   : | $(KOBJSDIR)
1683 GLOB_MKDIRS += %(objdir) %(prefix)/%(moduledir) $(KOBJSDIR) $(PKGDIR)
1685 # Some include files need to be generated before the .c can be parsed.
1686 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
1688 BD_DFILE_DEPS := $(BD_LIBDEFSINC) $(BD_DEFLIBDEFSINC) \
1689     $(addprefix $(BD_INCDIR)/,$(%(modname)_INCLUDES))
1690 $(BD_DEPS) : $(BD_DFILE_DEPS)
1691 endif
1693 BD_TOCLEAN := $(BD_OBJS) $(BD_DEPS) \
1694     $(BD_MODULE) $(BD_LINKLIB) $(BD_KOBJ) \
1695     %(objdir)/Makefile.%(modname) \
1696     $(addprefix %(objdir)/include/,$(%(modname)_INCLUDES)) \
1697     $(addprefix $(GENINCDIR)/,$(%(modname)_INCLUDES)) \
1698     $(addprefix $(BD_INCDIR)/,$(%(modname)_INCLUDES)) \
1699     %(objdir)/%(modname)_geninc %(objdir)/%(modname)_incs \
1700     $(addsuffix .c,$(BD_LINKLIBFILES)) $(BD_LINKLIBOBJS) $(BD_LIBDEFSINC) \
1701     $(BD_DEFLIBDEFSINC) $(addsuffix .c,$(BD_STARTFILES) $(BD_ENDFILES)) \
1702     $(BD_ENDOBJS)
1703 %(mmake)-clean : FILES := $(BD_TOCLEAN)
1704 %(mmake)-clean ::
1705         @$(ECHO) "Cleaning up for module %(modname)"
1706         @$(RM) $(FILES)
1708 endif # $(TARGET) in $(BD_ALLTARGETS)
1709 %end
1710 #------------------------------------------------------------------------------
1713 #------------------------------------------------------------------------------
1714 # Build a module skeleton
1715 # This is a stripped-down version of build_module, it only creates include files,
1716 # but no actual object. This is used when for plugins or classes with the same
1717 # API, but no actual implementation here.
1718 %define build_module_skeleton mmake=/A modname=/A modtype=/A modsuffix= \
1719   conffile= \
1720   objdir=$(OBJDIR) prefix=$(AROSDIR)
1722 # Define metamake targets and their dependencies
1723 #MM- includes-all : %(mmake)-includes
1724 #MM %(mmake) : %(mmake)-includes core-linklibs
1725 #MM %(mmake)-kobj : %(mmake)-includes core-linklibs
1726 #MM %(mmake)-pkg  : %(mmake)-includes core-linklibs
1727 #MM %(mmake)-linklib : %(mmake)-includes
1728 #MM %(mmake)-quick : %(mmake)-includes-quick
1729 #MM %(mmake)-includes : %(mmake)-makefile %(mmake)-includes-dirs \
1730 #MM     includes-generate-deps
1731 #MM %(mmake)-includes-quick
1732 #MM %(mmake)-includes-dirs
1733 #MM %(mmake)-makefile
1734 #MM %(mmake)-clean
1736 # All MetaMake targets defined by this macro
1737 BD_ALLTARGETS := %(mmake) %(mmake)-quick %(mmake)-includes \
1738     %(mmake)-includes-quick %(mmake)-includes-dirs %(mmake)-clean \
1739     %(mmake)-kobj %(mmake)-pkg
1741 .PHONY : $(BD_ALLTARGETS) %(mmake)-makefile
1743 ifeq (%(modname),)
1744 $(error using %build_module_skeleton: modname may not be empty)
1745 endif
1746 ifeq (%(modtype),)
1747 $(error using %build_module_skeleton: $(MODTYPE) has to be defined with the type of the module)
1748 endif
1750 # Default values for variables and arguments
1751 BD_DEFLINKLIBNAME := %(modname)
1752 BD_DEFDFLAGS := %(cflags)
1753 OBJDIR ?= $(GENDIR)/$(CURDIR)
1755 ## Create genmodule include Makefile for the module
1757 %(mmake)-makefile : %(objdir)/Makefile.%(modname)
1759 %rule_genmodule_makefile \
1760     modname=%(modname) modtype=%(modtype) \
1761     modsuffix=%(modsuffix) targetdir=%(objdir) \
1762     conffile=%(conffile)
1764 %(objdir)/Makefile.%(modname) : | %(objdir)
1766 GLOB_MKDIRS += %(objdir)
1768 # Do not parse these statements if metatarget is not appropriate
1769 ifneq ($(filter $(TARGET),$(BD_ALLTARGETS)),)
1771 include %(objdir)/Makefile.%(modname)
1773 BD_DEFMODDIR := $(%(modname)_MODDIR)
1776 ## include files generation
1778 BD_INCDIR    := %(prefix)/$(AROS_DIR_INCLUDE)
1779 BD_LIBDEFSINC := %(objdir)/include/%(modname)_libdefs.h
1780 BD_DEFLIBDEFSINC := %(objdir)/include/%(modname)_deflibdefs.h
1782 %(mmake)-includes-quick : %(mmake)-includes
1783 %(mmake)-includes : $(addprefix $(GENINCDIR)/,$(%(modname)_INCLUDES)) \
1784     $(addprefix $(BD_INCDIR)/,$(%(modname)_INCLUDES)) \
1785     $(BD_LIBDEFSINC) $(BD_DEFLIBDEFSINC)
1787 ifneq ($(%(modname)_INCLUDES),)
1788 %rule_genmodule_includes modname=%(modname) modtype=%(modtype) \
1789                          modsuffix=%(modsuffix) targetdir=%(objdir)/include \
1790                          conffile=%(conffile)
1792 %rule_copy_diff_multi \
1793     files=$(%(modname)_INCLUDES) srcdir=%(objdir)/include targetdir=$(GENINCDIR) \
1794     stampfile=%(objdir)/%(modname)_geninc
1796 %rule_copy_diff_multi \
1797     files=$(%(modname)_INCLUDES) srcdir=%(objdir)/include targetdir=$(BD_INCDIR) \
1798     stampfile=%(objdir)/%(modname)_incs
1800 BD_INCDIRS := $(filter-out ./,$(sort $(dir $(%(modname)_INCLUDES))))
1802 TMP%(modname)_INCDIRS := \
1803     %(objdir)/include $(addprefix %(objdir)/include/,$(BD_INCDIRS)) \
1804     $(GENINCDIR) $(addprefix $(GENINCDIR)/,$(BD_INCDIRS)) \
1805     $(BD_INCDIR) $(addprefix $(BD_INCDIR)/,$(BD_INCDIRS))
1806 %rule_makedirs dirs=$(TMP%(modname)_INCDIRS) setuptarget=%(mmake)-includes-dirs
1808 endif
1810 %rule_genmodule_genlibdefs modname=%(modname) modtype=%(modtype) \
1811                            modsuffix=%(modsuffix) targetdir=%(objdir)/include \
1812                            conffile=%(conffile)
1814 $(BD_DEFLIBDEFSINC) : FILENAME := $(BD_LIBDEFSINC)
1815 $(BD_DEFLIBDEFSINC) :
1816         @$(ECHO) "generating $@"
1817         @$(ECHO) "#define LC_LIBDEFS_FILE \"$(FILENAME)\"" >$@
1819 $(BD_LIBDEFSINC) $(BD_DEFLIBDEFSINC) : | %(objdir)/include
1820 GLOB_MKDIRS += %(objdir)/include
1822 ## Extra genmodule src files generation
1823 ## 
1824 %rule_genmodule_files modname=%(modname) modtype=%(modtype) \
1825                       modsuffix=%(modsuffix) targetdir=%(objdir) \
1826                       conffile=%(conffile)
1828 BD_TOCLEAN := $(BD_OBJS) $(BD_DEPS) \
1829     $(BD_MODULE) $(BD_LINKLIB) $(BD_KOBJ) \
1830     %(objdir)/Makefile.%(modname) \
1831     $(addprefix %(objdir)/include/,$(%(modname)_INCLUDES)) \
1832     $(addprefix $(GENINCDIR)/,$(%(modname)_INCLUDES)) \
1833     $(addprefix $(BD_INCDIR)/,$(%(modname)_INCLUDES)) \
1834     %(objdir)/%(modname)_geninc %(objdir)/%(modname)_incs \
1835     $(addsuffix .c,$(BD_LINKLIBFILES)) $(BD_LINKLIBOBJS) $(BD_LIBDEFSINC) \
1836     $(BD_DEFLIBDEFSINC)
1837 %(mmake)-clean : FILES := $(BD_TOCLEAN)
1838 %(mmake)-clean ::
1839         @$(ECHO) "Cleaning up for module %(modname)"
1840         @$(RM) $(FILES)
1842 endif # $(TARGET) in $(BD_ALLTARGETS)
1843 %end
1844 #------------------------------------------------------------------------------
1847 #------------------------------------------------------------------------------
1848 # Build a linklib.
1849 # - mmake is the mmaketarget
1850 # - libname is the baselibname e.g. lib%(libname).a will be created
1851 # - files are the C source files to include in the lib. The list of files
1852 #   has to be given without the .c suffix
1853 # - asmfiles are the asm files to include in the lib. The list of files has to
1854 #   be given without the .s suffix
1855 # - objs additional object to link into the linklib. The objects have to be
1856 #   given with full absolute path and the .o suffix.
1857 # - cflags are the flags to compile the source (default $(CFLAGS))
1858 # - dflags are the flags use during makedepend (default equal to cflags)
1859 # - aflags are the flags use during assembling (default $(AFLAGS))
1860 # - objdir is where the .o are generated
1861 # - libdir is the directory where the linklib will be placed (default $(LIBDIR))
1862 %define build_linklib mmake=/A libname=/A \
1863   files="$(basename $(call WILDCARD, *.c))" \
1864   cxxfiles="$(basename $(call WILDCARD, *.cpp))" \
1865   asmfiles= objs= compiler=target \
1866   cflags=$(CFLAGS) dflags= aflags=$(AFLAGS) objdir=$(OBJDIR) libdir=$(LIBDIR)
1868 # assign and generate the local variables used in this macro
1869 OBJDIR        ?= $(GENDIR)/$(CURDIR)
1871 BD_FILES      := %(files)
1872 BD_CXXFILES   := %(cxxfiles)
1873 BD_ASMFILES   := %(asmfiles)
1875 BD_ARCHOBJS   := $(wildcard %(objdir)/arch/*.o)
1876 BD_ARCHFILES  := $(basename $(notdir $(BD_ARCHOBJS)))
1877 BD_NARCHFILES := $(filter-out $(BD_ARCHFILES),$(BD_FILES))
1879 BD_OBJS       := $(BD_ARCHOBJS) \
1880                  $(addsuffix .o,$(addprefix %(objdir)/,$(notdir $(BD_NARCHFILES) $(BD_CXXFILES) $(BD_ASMFILES)))) \
1881                  %(objs)
1882 BD_DEPS       := $(patsubst %.o,%.d,$(BD_OBJS))
1884 BD_CFLAGS     := %(cflags)
1885 ifeq (%(dflags),)
1886 BD_DFLAGS     := $(BD_CFLAGS)
1887 else
1888 BD_DFLAGS     := %(dflags)
1889 endif
1890 BD_AFLAGS     := %(aflags)
1892 BD_LINKLIB    := %(libdir)/lib%(libname).a
1894 .PHONY : %(mmake) %(mmake)-clean
1896 #MM %(mmake) : includes-generate-deps
1897 %(mmake) : $(BD_LINKLIB)
1900 %(mmake)-clean ::
1901         @$(RM) $(BD_OBJS) $(BD_DEPS)
1903 ifeq ($(TARGET),%(mmake))
1904 ifneq ($(dir $(BD_FILES)),./)
1905 TMP_SRCDIR := $(shell echo $(SRCDIR) | sed 's/^\(.\):\//\/\1\//')
1906 vpath %.c $(addprefix $(TMP_SRCDIR)/$(CURDIR)/,$(dir $(BD_FILES)))
1907 endif
1909 %rule_compile basename=% targetdir=%(objdir) \
1910     compiler=%(compiler) cflags=$(BD_CFLAGS) dflags=$(BD_DFLAGS)
1911 %rule_compile_cxx_multi basenames=$(BD_CXXFILES) targetdir=%(objdir) \
1912     compiler=%(compiler) cflags=$(BD_CFLAGS) dflags=$(BD_DFLAGS)
1913 %rule_assemble basename=% targetdir=%(objdir) \
1914     aflags=$(BD_AFLAGS)
1916 %rule_link_linklib libname=%(libname) objs=$(BD_OBJS) libdir=%(libdir) linker=%(compiler)
1917 endif
1919 %include_deps depstargets=%(mmake) deps=$(BD_DEPS)
1921 $(BD_OBJS) $(BD_DEPS) : | %(objdir)
1922 $(BD_LINKLIB) : | %(libdir)
1923 GLOB_MKDIRS += %(objdir) %(libdir)
1925 %end
1926 #------------------------------------------------------------------------------
1929 #------------------------------------------------------------------------------
1930 # Build catalogs.
1931 # - mmake is the mmaketarget
1932 # - catalogs is the list of catalogs, without the .ct suffix (default *.ct)
1933 # - description is the catalog description file (.cd), without the .ct suffix (default *.cd)
1934 # - subdir is the destination subdirectory of the catalogs
1935 # - name is the name of the destination catalog, without the .catalog suffix
1936 # - source is the path to the generated source code file
1937 # - dir is the base destination directory (default $(AROS_CATALOGS))
1938 # - sourcedescription is the path to the FlexCat's source description file, without the .sd suffix
1939 # - srcdir is the directory in which the *.cd and *.ct files are searched
1941 %define build_catalogs mmake=/A name=/A subdir=/A \
1942  catalogs= source="../strings.h" description= dir=$(AROS_CATALOGS) \
1943  sourcedescription="$(TOOLDIR)/C_h_aros" srcdir="$(SRCDIR)/$(CURDIR)"
1945 ifeq (%(description),)
1946 BD_DESC := $(basename $(wildcard %(srcdir)/*.cd))
1947 else
1948 BD_DESC := %(description)
1949 endif
1951 BD_SRC := $(shell echo %(sourcedescription) | sed 's/^\(.\):\//\/\1\//')
1953 ifeq (%(catalogs),)
1954 BD_LNGS := $(basename $(notdir $(call WILDCARD, %(srcdir)/*.ct)))
1955 else
1956 BD_LNGS := %(catalogs)
1957 endif
1959 BD_OBJS := $(addsuffix /%(subdir)/%(name).catalog, $(addprefix %(dir)/, $(BD_LNGS)))
1960 BD_DIRS := $(addsuffix /%(subdir), $(addprefix %(dir)/, $(BD_LNGS))) $(dir %(source))
1963 %(mmake) : $(BD_OBJS) %(source)
1965 $(BD_OBJS) : | $(BD_DIRS)
1966 GLOB_MKDIRS += $(BD_DIRS)
1968 %(dir)/%/%(subdir)/%(name).catalog : %(srcdir)/%.ct $(BD_DESC).cd
1969         @$(ECHO) "Creating   %(name) catalog for language $*."
1970         @$(FLEXCAT) $(BD_DESC).cd $< CATALOG=%(dir)/$*/%(subdir)/%(name).catalog || [ $$? -lt 10 ]
1972 ifneq (%(source),)
1973 %(source) : BD_DESC := $(BD_DESC)
1974 %(source) : BD_SRC := $(BD_SRC)
1975 %(source) : $(BD_DESC).cd $(BD_SRC).sd | $(dir %(source))
1976         @$(ECHO) "Creating   %(name) catalog source file $@"
1977         @$(FLEXCAT) $(BD_DESC).cd $@=$(BD_SRC).sd
1978 endif
1981 %(mmake)-clean ::
1982         $(RM) $(BD_OBJS) %(source)
1984 .PHONY: %(mmake) %(mmake)-clean
1986 %end
1987 #-----------------------------------------------------------------------------
1990 #-----------------------------------------------------------------------------
1991 # Build icons.
1992 # - mmake is the mmaketarget
1993 # - icons is a list of icon base names (ie. without the .info suffix)
1994 # - dir is the destination directory
1995 # - srcdir is where *.png and *.info.src are searched
1996 #-----------------------------------------------------------------------------
1998 %define build_icons mmake=/A icons=/A dir=/A srcdir="$(SRCDIR)/$(CURDIR)" image=
2000 BD_OBJS := $(addprefix  %(dir)/, $(addsuffix .info,%(icons)))
2003 %(mmake) : $(BD_OBJS)
2005 ifeq (%(image),)
2007 %(dir)/%.info : %(srcdir)/%.info.src %(srcdir)/%.png
2008         @$(ECHO) "Creating   $(subst $(TARGETDIR)/,,$@)..."
2009         @$(ILBMTOICON) $+ $@
2011 else
2013 %(dir)/%.info : %(srcdir)/%.info.src %(srcdir)/%(image)
2014         @$(ECHO) "Creating   $(subst $(TARGETDIR)/,,$@)..."
2015         @$(ILBMTOICON) $+ $@
2017 endif
2019 $(BD_OBJS) : | %(dir)
2020 GLOB_MKDIRS += %(dir)
2022 %(mmake)-clean : FILES := $(BD_OBJS)
2024 %(mmake)-clean ::
2025         @$(RM) $(FILES)
2027 .PHONY: %(mmake) %(mmake)-clean
2029 %end
2030 #-----------------------------------------------------------------------------
2033 #------------------------------------------------------------------------------
2034 # Compile files for an arch-specific replacement of code for a module
2035 # - files: the basenames of the C files to compile.
2036 # - asmfiles: the basenames of the asm files to assemble.
2037 # - mainmmake: the mmake of the module in the main directory to compile these
2038 #   arch specific files for.
2039 # - maindir: the object directory for the main module
2040 # - arch: the arch for which to compile these files. It can have the form
2041 #   of ARCH, CPU or ARCH-CPU, e.g. linux, i386 or linux-i386
2042 # - cflags (default $(CFLAGS)): the C flags to use for compilation
2043 # - dflags: the flags used during creation of dependency file. If not specified
2044 #   the same value as cflags will be used
2045 # - aflags: the flags used during assembling
2046 # - compiler: (host, kernel or target) specifies which compiler to use. By default
2047 #   the target compiler is used
2048 %define build_archspecific files= asmfiles= mainmmake=/A maindir=/A arch=/A \
2049 cflags=$(CFLAGS) dflags= aflags=$(AFLAGS) compiler=target modulename=
2051 ifeq (%(files) %(asmfiles),)
2052   $(error no files or asmfiles given)
2053 endif
2055 %buildid targets="%(mainmmake)-%(arch)"
2057 #MM- %(mainmmake) :         %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH)-$(CPU) \
2058 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH) \
2059 #MM                         %(mainmmake)-$(FAMILY) %(mainmmake)-$(CPU)
2060 #MM- %(mainmmake)-linklib : %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH)-$(CPU) \
2061 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH) \
2062 #MM                         %(mainmmake)-$(FAMILY) %(mainmmake)-$(CPU)
2063 #MM- %(mainmmake)-kobj :    %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH)-$(CPU) \
2064 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH) \
2065 #MM                         %(mainmmake)-$(FAMILY) %(mainmmake)-$(CPU)
2066 #MM- %(mainmmake)-kobj-quick : %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT)-quick %(mainmmake)-$(ARCH)-$(CPU)-quick \
2067 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT)-quick %(mainmmake)-$(ARCH)-quick \
2068 #MM                         %(mainmmake)-$(FAMILY)-quick %(mainmmake)-$(CPU)-quick
2069 #MM- %(mainmmake)-pkg :     %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH)-$(CPU) \
2070 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT) %(mainmmake)-$(ARCH) \
2071 #MM                         %(mainmmake)-$(FAMILY) %(mainmmake)-$(CPU)
2072 #MM- %(mainmmake)-pkg-quick : %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT)-quick %(mainmmake)-$(ARCH)-$(CPU)-quick \
2073 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT)-quick %(mainmmake)-$(ARCH)-quick \
2074 #MM                         %(mainmmake)-$(FAMILY)-quick %(mainmmake)-$(CPU)-quick
2075 #MM- %(mainmmake)-quick :   %(mainmmake)-$(ARCH)-$(CPU)-$(AROS_TARGET_VARIANT)-quick %(mainmmake)-$(ARCH)-$(CPU)-quick \
2076 #MM                         %(mainmmake)-$(ARCH)-$(AROS_TARGET_VARIANT)-quick %(mainmmake)-$(ARCH)-quick \
2077 #MM                         %(mainmmake)-$(FAMILY)-quick %(mainmmake)-$(CPU)-quick
2079 #MM %(mainmmake)-%(arch) : %(mainmmake)-includes
2081 BD_OBJDIR$(BDID)  := $(GENDIR)/%(maindir)/arch
2082 BD_COBJS$(BDID)   := $(addsuffix .o,$(addprefix $(BD_OBJDIR$(BDID))/,$(notdir %(files))))
2083 BD_ASMOBJS$(BDID) := $(addsuffix .o,$(addprefix $(BD_OBJDIR$(BDID))/,$(notdir %(asmfiles))))
2084 BD_OBJS$(BDID)    := $(BD_COBJS$(BDID)) $(BD_ASMOBJS$(BDID))
2085 BD_DEPS$(BDID)    := $(addsuffix .d,$(addprefix $(BD_OBJDIR$(BDID))/,$(notdir %(files))))
2087 ifneq (%(modulename),)
2088 BD_DEFLIBDEFSINC$(BDID) := -include $(GENDIR)/%(maindir)/include/%(modulename)_deflibdefs.h
2089 endif
2091 ifeq ($(TARGET),%(mainmmake)-%(arch)-quick)
2092     BD_TARGET := %(mainmmake)-%(arch)-quick
2093 else
2094     BD_TARGET := %(mainmmake)-%(arch)
2095 endif
2098 ifeq ($(TARGET),$(BD_TARGET))
2099 TMP_SRCDIR := $(shell echo $(SRCDIR) | sed 's/^\(.\):\//\/\1\//')
2100 vpath %.c $(addprefix $(TMP_SRCDIR)/$(CURDIR)/,$(dir %(files)))
2101 vpath %.s $(addprefix $(TMP_SRCDIR)/$(CURDIR)/,$(dir %(asmfiles)))
2102 vpath %.S $(addprefix $(TMP_SRCDIR)/$(CURDIR)/,$(dir %(asmfiles)))
2103 endif
2105 $(BD_OBJS$(BDID)) : | $(BD_OBJDIR$(BDID))
2106 GLOB_MKDIRS += $(BD_OBJDIR$(BDID))
2109 %(mainmmake)-%(arch) :: $(BD_OBJS$(BDID))
2112 %(mainmmake)-%(arch)-quick :: $(BD_OBJS$(BDID))
2114 ifeq ($(findstring %(compiler),host kernel target),)
2115   $(error unknown compiler %(compiler))
2116 endif
2117 ifeq (%(compiler),target)
2118 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
2119 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
2120 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
2121 endif
2122 ifeq (%(compiler),host)
2123 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_CMD:=$(HOST_CC)
2124 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_IQUOTE:=$(HOST_IQUOTE)
2125 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
2126 endif
2127 ifeq (%(compiler),kernel)
2128 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
2129 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_IQUOTE:=$(KERNEL_IQUOTE)
2130 $(BD_COBJS$(BDID)) $(BD_DEPS$(BDID)) : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
2131 endif
2132 ifneq (%(modulename),)
2133 $(BD_COBJS$(BDID)) : TMP_CFLAGS:=%(cflags) -I$(GENDIR)/%(maindir) $(BD_DEFLIBDEFSINC$(BDID))
2134 else
2135 $(BD_COBJS$(BDID)) : TMP_CFLAGS:=%(cflags)
2136 endif
2137 ifeq ($(TARGET),$(BD_TARGET))
2138 $(BD_OBJDIR$(BDID))/%.o : $(SRCDIR)/$(CURDIR)/%.c
2139         %compile_q opt=$(TMP_CFLAGS) cmd=$(TMP_CMD) iquote=$(TMP_IQUOTE) iquote_end=$(TMP_IQUOTE_END)
2140 endif
2142 ifeq (%(dflags),)
2143 $(BD_DEPS$(BDID)) : TMP_DFLAGS:=%(cflags) $(BD_DEFLIBDEFSINC$(BDID))
2144 else
2145 $(BD_DEPS$(BDID)) : TMP_DFLAGS:=%(dflags)
2146 endif
2147 ifeq ($(TARGET),$(BD_TARGET))
2148 $(BD_OBJDIR$(BDID))/%.d : $(SRCDIR)/$(CURDIR)/%.c
2149         %mkdepend_q cc=$(TMP_CMD) flags=$(TMP_DFLAGS)
2150 endif
2152 $(BD_ASMOBJS$(BDID)) : AFLAGS:=%(aflags)
2154 ifeq ($(TARGET),$(BD_TARGET))
2155 $(BD_OBJDIR$(BDID))/%.o : %.s
2156         %assemble_q opt=$(AFLAGS)
2157 $(BD_OBJDIR$(BDID))/%.o : %.S
2158         %assemble_q opt=$(AFLAGS)
2159 endif
2161 %include_deps depstargets=$(BD_TARGET) deps=$(BD_DEPS$(BDID))
2162 %end
2163 #------------------------------------------------------------------------------
2166 #------------------------------------------------------------------------------
2167 # generate asm files from c files (for debugging purposes)
2168 %define ctoasm_q
2169 %.s : %.c
2170         @$(ECHO) "Generating $(CURDIR)/$(notdir $@)..."
2171         @$(TARGET_CC) -S $(CFLAGS) $(TARGET_CFLAGS) $< -c -o $@
2172 %end
2173 #------------------------------------------------------------------------------
2176 #------------------------------------------------------------------------------
2177 # Copy files from one directory to another.
2179 %define copy_files_q mmake=/A files=$(FILES) src=. dst=/A
2181 %(mmake)_SRC := $(shell echo %(src) | sed 's/^\(.\):\//\/\1\//')
2183 GLOB_MKDIRS += %(dst)
2185 .PHONY : %(mmake)
2188 %(mmake) : | %(dst) 
2189         $(foreach file, %(files), $(shell $(CP) $(addprefix $(if $(filter /%,$(%(mmake)_SRC)),$(%(mmake)_SRC),$(SRCDIR)/$(CURDIR)/$(%(mmake)_SRC))/, $(file)) $(addprefix %(dst)/, $(file))))
2191 %end
2192 #------------------------------------------------------------------------------
2195 #------------------------------------------------------------------------------
2196 # Copy a directory recursively to another place, preserving the original 
2197 # hierarchical structure
2199 # src: the source directory whose content will be copied
2200 # dst: the directory where to copy src's content. If not existing, it will be made.
2202 %define copy_dir_recursive mmake=/A src=. dst=/A excludefiles=
2204 %(mmake)_SRC   := $(shell echo %(src) | sed 's/^\(.\):\//\/\1\//')
2205 %(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)
2206 %(mmake)_DIRS  := $(sort $(dir $(%(mmake)_FILES)))
2208 %(mmake)_EXCLUDEFILES := $(addprefix ./,%(excludefiles))
2209 %(mmake)_FILES := $(filter-out $(%(mmake)_EXCLUDEFILES),$(%(mmake)_FILES))
2211 GLOB_MKDIRS += $(GENDIR)/$(CURDIR)
2213 .PHONY : %(mmake)
2216 %(mmake): | $(GENDIR)/$(CURDIR)
2217         @m="$(GENDIR)/$(CURDIR)/%(mmake)-auxiliary.mak";        \
2218         $(ECHO) "all: $(addprefix \$$(DST)/,$(%(mmake)_FILES))" > $$m 
2219         @m="$(GENDIR)/$(CURDIR)/%(mmake)-auxiliary.mak";    \
2220         for d in $(%(mmake)_DIRS); do                      \
2221             $(ECHO) "\$$(DST)/$$d: ; $(MKDIR) \$$@" >> $$m;  \
2222         done
2223         @m="$(GENDIR)/$(CURDIR)/%(mmake)-auxiliary.mak";                           \
2224         for f in $(%(mmake)_FILES); do                                            \
2225             $(ECHO) "\$$(DST)/$$f: \$$(SRC)/$$f | \$$(dir \$$(DST)/$$f); $(CP) \$$< \$$@" >> $$m; \
2226         done;  \
2227         for dst in %(dst); do \
2228             $(MAKE) -f $$m DST=$$dst SRC=$(if $(filter /%,$(%(mmake)_SRC)),$(%(mmake)_SRC),$(SRCDIR)/$(CURDIR)/$(%(mmake)_SRC)) all; \
2229         done
2231 %end
2232 #------------------------------------------------------------------------------
2235 #------------------------------------------------------------------------------
2236 #   Copy include files into the includes directories. There are currently
2237 #   two include directories. One for building AROS $(AROS_INCLUDES) and one
2238 #   for building tools that need to run on the host system $(GENINCDIR). The
2239 #   $(GENINCDIR) path must not contain any references to the C runtime
2240 #   library header files.
2242 %define copy_includes mmake=includes-copy includes=$(INCLUDE_FILES) path=. \
2243     dir= compiler=target
2245 ifeq ($(findstring %(compiler),host kernel target),)
2246 $(error %copy_includes: compiler argument (%(compiler)) has to be host, kernel or target)
2247 endif
2249 ifneq (%(dir),)
2250 BD_INCL_FILES := $(subst %(dir),$(GENINCDIR)/%(path),$(dir %(includes)))
2251 BD_INCL_FILES := $(addprefix $(GENINCDIR)/%(path)/,$(notdir %(includes)))
2252 BD_INC_PATH := $(SRCDIR)/$(CURDIR)/%(dir)/
2253 else
2254 BD_INCL_FILES := $(addprefix $(GENINCDIR)/%(path)/,%(includes))
2255 BD_INC_PATH := $(SRCDIR)/$(CURDIR)/
2256 endif
2258 $(BD_INCL_FILES) : $(GENINCDIR)/%(path)/% : $(BD_INC_PATH)%
2259         @$(CP) $< $@
2262 ifeq (%(compiler),target)
2264 ifneq (%(dir),)
2265 BD_INCL_FILES2 := $(subst %(dir),$(AROS_INCLUDES)/%(path),$(dir %(includes)))
2266 BD_INCL_FILES2 := $(addprefix $(AROS_INCLUDES)/%(path)/,$(notdir %(includes)))
2267 else
2268 BD_INCL_FILES2 := $(addprefix $(AROS_INCLUDES)/%(path)/,%(includes))
2269 endif
2271 BD_INCL_FILES += $(BD_INCL_FILES2)
2273 $(BD_INCL_FILES2) : $(AROS_INCLUDES)/%(path)/% : $(BD_INC_PATH)%
2274         @$(CP) $< $@
2275 endif
2278 %(mmake) : $(BD_INCL_FILES)
2280 .PHONY: %(mmake)
2282 $(BD_INCL_FILES) : | $(dir $(BD_INCL_FILES))
2283 GLOB_MKDIRS += $(dir $(BD_INCL_FILES))
2284 %end
2285 #------------------------------------------------------------------------------
2288 #------------------------------------------------------------------------------
2289 %define make_hidd_stubs hidd=/A cflags=$(CFLAGS) dflags=$(CFLAGS) parenttarget=linklibs
2290 STUBS_SRC := $(addprefix $(SRCDIR)/$(CURDIR)/,$(addsuffix .c,$(STUBS)))
2291 STUBS_MEM := $(addsuffix .o,$(STUBS))
2292 STUBS_OBJ := $(addprefix $(OBJDIR)/,$(STUBS_MEM))
2293 STUBS_DEP := $(addprefix $(OBJDIR)/,$(addsuffix .d,$(STUBS)))
2294 HIDD_LIB := $(AROS_LIB)/libhiddstubs.a
2296 #MM- linklibs : hidd-%(hidd)-stubs
2297 #MM- %(parenttarget): hidd-%(hidd)-stubs
2298 #MM hidd-%(hidd)-stubs : includes includes-copy
2299 hidd-%(hidd)-stubs : setup $(HIDD_LIB)($(STUBS_MEM))
2301 $(HIDD_LIB)($(STUBS_MEM)) : $(STUBS_OBJ)
2302         %mklib_q from=$^
2304 $(STUBS_OBJ) : $(STUBS_SRC) 
2305         %compile_q cmd="$(TARGET_CC) $(TARGET_CFLAGS)" opt=%(cflags) iquote=$(CFLAGS_IQUOTE) iquote_end=$(CFLAGS_IQUOTE_END)
2307 $(STUBS_DEP) : $(STUBS_SRC)
2308         %mkdepend_q flags=%(dflags)
2310 setup ::
2311         %mkdirs_q $(OBJDIR) $(LIBDIR)
2314 clean ::
2315         -@$(RM) $(HIDD_LIB) $(OBJDIR)
2317 DEPS := $(DEPS) $(STUBS_DEP)
2319 %end
2320 #------------------------------------------------------------------------------
2323 #------------------------------------------------------------------------------
2324 # Build an imported source tree which uses the configure script from the
2325 # autoconf package.  This rule will try to "integrate" the produced files as
2326 # much as possible in the AROS build, for example by putting libraries in the
2327 # standard library directory, includes in the standard include directory, and
2328 # so on. You can however override this behaviour.
2330 # As a special "bonus" for you, the PROGDIR environment variable is defined to
2331 # be %(bindir) (or its deduced value) when running "make install", and
2332 # "PROGDIR:" when running "make" alone; you can use this feature to pass the
2333 # configure script some more parameters whose value depends upon the PROGDIR
2334 # env var, so that the program gets all its stuff installed in the proper place
2335 # when building it, but when running it from inside AROS it can also find that
2336 # stuff by simply opening PROGDIR:, which it will do automatically if it uses
2337 # the configuration parameters set when running ./configure
2339 # *NOTICE*: DO NOT put a trailing '/' (slash) after $PROGDIR, as the variable
2340 # already contains either a '/' (slash) or a ':' (colon), thus simply attach it
2341 # to the name which has to follow it.
2343 # Arguments:
2345 #     - mmake           = the meta make target.
2346 #     - package         = name of the package to be built.
2347 #     - srcdir          = the location of the unpacked source code. Defaults
2348 #                         to $(SRCDIR)/$(CURDIR).
2349 #     - prefix          = the target directory. Must be an absolute path of the
2350 #                         host system. Defaults to $(AROS_CONTRIB).
2351 #     - aros_prefix     = set a path which is valid within the AROS filesystem.
2352 #                         Defaults to the value of the prefix option.
2353 #     - extraoptions    = additional options for the configure script.
2354 #     - extracflags     = additional flags which are used for both C and C++.
2355 #     - nix_dir_layout  = if yes the binary will be stored in a bin subdirectory.
2356 #                         Defaults to the value of the nix argument.
2357 #     - nix             = enable u*nix path handling, i.e. a path like
2358 #                         /progdir//./file will be translated to
2359 #                         progdir:file during run-time. Defaults to no.
2360 #     - compiler        = target, host or kernel. Defaults to target.
2361 #     - install_target  = the command used for installing. Defaults to install. Leave
2362 #                         it empty if you want to suppress installing.
2363 #     - preconfigure    = a metatarget which is executed before configure is called.
2364 #     - postconfigure   = a metatarget which is executed after configure is called.
2365 #     - postinstall     = a metatarget which is executed after installing.
2366 #     - install_env     = set additional options for installing.
2367 #     - use_build_env   = if yes the configuration environment is used for
2368 #                         installing, too. Defaults to no.
2370 # The arguments aros_prefix, nix and nix_dir_layout are related. The logic is
2371 # like this:
2373 # if nix_dir_layout
2374 #    --prefix = $(aros_prefix)
2375 #    progdir = $(aros_prefix)/bin
2376 # else
2377 #    if nix
2378 #        --prefix = /PROGDIR
2379 #        --bindir = /PROGDIR
2380 #        --sbindir = /PROGDIR
2381 #        --libdir = /LIB
2382 #        --includedir = /INCLUDE
2383 #        --oldincludedir = /INCLUDE   
2384 #    else
2385 #        --prefix = $(aros_prefix)
2386 #    endif
2388 #    progdir = $(aros_prefix)
2390 #    # Install options
2391 #    bindir = $(prefix)
2392 #    sbindir = $(prefix)
2393 #    libdir = $(AROS_LIB)
2394 #    includedir = $(AROS_INCLUDES)
2395 #    oldincludedir = $(AROS_INCLUDES)
2396 # endif
2399 %define build_with_configure mmake=/A package= srcdir=$(SRCDIR)/$(CURDIR) prefix= \
2400     aros_prefix= extraoptions= extracflags= nix_dir_layout= nix=no compiler=target \
2401     install_target=install preconfigure= postconfigure= postinstall= \
2402     install_env= use_build_env=no
2404 ifneq (%(prefix),)
2405     %(mmake)-prefix := %(prefix)
2406 else
2407     %(mmake)-prefix := $(AROS_CONTRIB)
2408 endif
2410 ifneq (%(aros_prefix),)
2411     %(mmake)-aros_prefix := %(aros_prefix)
2412 else
2413     %(mmake)-aros_prefix := $(%(mmake)-prefix)
2414 endif
2416 ifeq (%(nix),yes)
2417     %(mmake)-nix    := -nix
2418     %(mmake)-volpfx := /
2419     %(mmake)-volsfx := /
2420     
2421     ifeq (%(nix_dir_layout),)
2422         %(mmake)-nix_dir_layout := yes
2423     endif
2424 else
2425     %(mmake)-volsfx := :
2426     
2427     ifeq (%(nix_dir_layout),)
2428         %(mmake)-nix_dir_layout := no
2429     endif
2430 endif
2432 %(mmake)-volfunc = $(%(mmake)-volpfx)$(notdir $1)$(%(mmake)-volsfx)
2434 %(mmake)-install_opts := prefix=$(%(mmake)-prefix) \
2435         exec_prefix=$(%(mmake)-prefix) %(install_env)
2437 # Check if chosen compiler is valid
2438 ifeq ($(findstring %(compiler),host target kernel),)
2439   $(error unknown compiler %(compiler))
2440 endif
2442 # Set legacy 'host' variable based on chosen compiler
2443 ifeq (%(compiler),host)
2444     host := yes
2445         ifeq (%(package),)
2446                 %(mmake)-pkgdir := $(HOSTGENDIR)/$(CURDIR)
2447         else
2448                 %(mmake)-pkgdir := $(HOSTGENDIR)/$(CURDIR)/%(package)
2449         endif
2450 else
2451     host := no
2452         ifeq (%(package),)
2453                 %(mmake)-pkgdir := $(GENDIR)/$(CURDIR)
2454         else
2455                 %(mmake)-pkgdir := $(GENDIR)/$(CURDIR)/%(package)
2456         endif
2457 endif
2459 %(mmake)-configflag := $(%(mmake)-pkgdir)/.configured
2460 %(mmake)-installflag := $(%(mmake)-pkgdir)/.installed
2462 ifeq ($(filter yes, $(%(mmake)-nix_dir_layout) $(host)),yes)
2463     %(mmake)-PROGDIR      := $(%(mmake)-aros_prefix)/bin
2464     %(mmake)-config_opts  := --prefix=$(%(mmake)-aros_prefix)
2465 else
2466     ifeq (%(nix),yes)
2467         %(mmake)-config_opts := --prefix=/PROGDIR  --bindir=/PROGDIR --sbindir=/PROGDIR \
2468         --libdir=/LIB --includedir=/INCLUDE --oldincludedir=/INCLUDE   
2469     else
2470         %(mmake)-config_opts  := --prefix=$(%(mmake)-aros_prefix)
2471     endif
2473     %(mmake)-PROGDIR := $(%(mmake)-aros_prefix)
2474     
2475     %(mmake)-install_opts := bindir=$(%(mmake)-prefix) \
2476         sbindir=$(%(mmake)-prefix) \
2477         libdir=$(AROS_LIB) includedir=$(AROS_INCLUDES) \
2478         oldincludedir=$(AROS_INCLUDES) %(install_env)
2479 endif
2481 ifneq ($(DEBUG),yes)
2482     %(mmake)-s_flag = -s
2483 endif
2485 # Set up build environment, and options for configure script
2486 ifeq (%(compiler),host)
2487     CONFIG_ENV := \
2488         CPP="$(HOST_CPP)" \
2489         CXXCPP="$(HOST_CPP)" \
2490         CC="$(HOST_CC) $(HOST_CFLAGS) -L$(CROSSTOOLSDIR)/lib -I$(CROSSTOOLSDIR)/include" \
2491         CXX="$(HOST_CXX) $(HOST_CXXFLAGS) -L$(CROSSTOOLSDIR)/lib -I$(CROSSTOOLSDIR)/include" \
2492         TARGET_CC="$(KERNEL_CC) $(KERNEL_CFLAGS) $(%(mmake)-s_flag)" \
2493         TARGET_AS="$(TARGET_AS)" OBJCOPY="$(OBJCOPY)" \
2494         TARGET_RANLIB="$(RANLIB)" TARGET_STRIP="$(STRIP_PLAIN)" \
2495         TARGET_NM="$(NM_PLAIN)"
2496 endif
2497 ifeq (%(compiler),target)
2498     CONFIG_ENV := \
2499         PKG_CONFIG_LIBDIR="$(AROS_DEVELOPMENT)/lib/pkgconfig" \
2500         PKG_CONFIG_SYSROOT_DIR="$(AROSDIR)" \
2501         CPP="$(TARGET_CPP)" \
2502         CXXCPP="$(TARGET_CPP)" \
2503         CC="$(TARGET_CC) $(TARGET_CFLAGS) -L$(AROS_DEVELOPMENT)/lib -I$(AROS_DEVELOPMENT)/include %(extracflags) $(LDFLAGS) $(%(mmake)-nix) $(%(mmake)-s_flag)"\
2504         CXX="$(TARGET_CXX) $(TARGET_CFLAGS) -L$(AROS_DEVELOPMENT)/lib -I$(AROS_DEVELOPMENT)/include %(extracflags) $(LDFLAGS) $(%(mmake)-nix) $(%(mmake)-s_flag)"\
2505         AS="$(TARGET_AS)" CC_FOR_BUILD="$(HOST_CC)" RANLIB="$(RANLIB)" AR="$(AR_PLAIN)" STRIP="$(STRIP_PLAIN)"\
2506         TARGET_CC="$(KERNEL_CC) $(KERNEL_CFLAGS) $(%(mmake)-s_flag)"\
2507         TARGET_AS="$(TARGET_AS)" OBJCOPY="$(OBJCOPY)"\
2508         TARGET_RANLIB="$(RANLIB)" TARGET_STRIP="$(STRIP_PLAIN)"\
2509         TARGET_NM="$(NM_PLAIN)" \
2510         CC_FOR_TARGET="$(TARGET_CC) $(TARGET_CFLAGS) -L$(AROS_DEVELOPMENT)/lib -I$(AROS_DEVELOPMENT)/include %(extracflags) $(LDFLAGS) $(%(mmake)-nix) $(%(mmake)-s_flag)"\
2511         CXX_FOR_TARGET="$(TARGET_CXX) $(TARGET_CFLAGS) -L$(AROS_DEVELOPMENT)/lib -I$(AROS_DEVELOPMENT)/include %(extracflags) $(LDFLAGS) $(%(mmake)-nix) $(%(mmake)-s_flag)"
2512     %(mmake)-config_opts += --build=$(AROS_HOST_CPU)-$(AROS_HOST_ARCH)\
2513         --host=$(AROS_TARGET_CPU)-aros\
2514         --target=$(AROS_TARGET_CPU)-aros\
2515         --disable-nls\
2516         --without-x --without-pic --disable-shared
2517 endif
2518 ifeq (%(compiler),kernel)
2519     CONFIG_ENV := \
2520         CPP="$(KERNEL_CPP)" \
2521         CXXCPP="$(KERNEL_CPP)" \
2522         CC="$(KERNEL_CC) $(KERNEL_CFLAGS) %(extracflags) $(%(mmake)-s_flag)"\
2523         CXX="$(KERNEL_CXX) $(KERNEL_CFLAGS) %(extracflags) $(%(mmake)-s_flag)"\
2524         AS="$(KERNEL_AS)" CC_FOR_BUILD="$(HOST_CC)" RANLIB="$(RANLIB)"\
2525         TARGET_RANLIB="$(RANLIB)" TARGET_STRIP="$(STRIP_PLAIN)" \
2526         TARGET_NM="$(NM_PLAIN)"
2527     %(mmake)-config_opts += --build=$(AROS_HOST_CPU)-$(AROS_HOST_ARCH)\
2528         --host=$(AROS_TARGET_CPU)-aros\
2529         --target=$(AROS_TARGET_CPU)-aros --disable-nls\
2530         --without-x --without-pic --disable-shared
2531 endif
2533 ifeq (%(use_build_env),yes)
2534     BUILD_ENV := $(CONFIG_ENV)
2535 endif
2538 .PHONY : %(mmake) %(mmake)-clean %(mmake)-build_and_install-quick
2540 # When building for the host, we don't need to build the
2541 # linklibs - this is especially true when building the
2542 # crosstool toolchain on 'foreign' architectures (such as
2543 # building PPC on x86)
2545 #MM- %(mmake)-host : setup includes %(mmake)-quick
2546 #MM- %(mmake)-target : setup includes core-linklibs %(mmake)-quick
2547 #MM- %(mmake): %(mmake)-%(compiler)
2549 # Using -j1 in install_command may result in a warning but finally
2550 # it does its job. make install for gcc does not work reliably for -jN
2551 # where N > 1.
2552 ifneq (%(install_target),)
2553     %(mmake)-install_command = \
2554         $(MAKE) PROGDIR="$(%(mmake)-PROGDIR)/" $(%(mmake)-install_opts) \
2555         -C $(%(mmake)-pkgdir) %(install_target) -j1
2557     %(mmake)-uninstall_command = \
2558     $(RM) $(%(mmake)-installflag) && \
2559     $(MAKE) PROGDIR="$(%(mmake)-PROGDIR)/" \
2560     $(%(mmake)-install_opts) -C $(%(mmake)-pkgdir) uninstall
2561 else
2562     %(mmake)-install_command   := true
2563     %(mmake)-uninstall_command := true
2564 endif
2566 #MM- %(mmake)-quick : %(preconfigure) %(mmake)-configure %(postconfigure) %(mmake)-build_and_install-quick %(postinstall)
2569 %(mmake)-build_and_install-quick :  $(%(mmake)-installflag)
2571 $(%(mmake)-installflag) : $(%(mmake)-configflag)
2572         if ! $(MAKE) PROGDIR="$(call %(mmake)-volfunc, PROGDIR)" -q -C $(%(mmake)-pkgdir); then \
2573             $(RM)  $(%(mmake)-installflag) && \
2574             $(BUILD_ENV) $(MAKE) PROGDIR="$(call %(mmake)-volfunc, PROGDIR)"\
2575              -C $(%(mmake)-pkgdir) && \
2576             $(%(mmake)-install_command) && \
2577             $(TOUCH) $@ -r $^; \
2578         fi
2580 $(%(mmake)-pkgdir)/.files-touched:
2581         %mkdirs_q $(%(mmake)-pkgdir)
2582         find %(srcdir) -exec $(TOUCH) -c -r %(srcdir)/configure '{}' \; && \
2583         $(TOUCH) $@
2586 %(mmake)-uninstall :
2587         $(%(mmake)-uninstall_command)
2590 %(mmake)-configure : $(%(mmake)-configflag)
2592 $(%(mmake)-configflag) : TMP_SRCDIR := $(shell echo %(srcdir) | sed 's/^\(.\):\//\/\1\//')
2593 $(%(mmake)-configflag) : $(%(mmake)-pkgdir)/.files-touched $(TOP)/$(CURDIR)/mmakefile
2594         $(RM) $@
2595         %mkdirs_q $(%(mmake)-pkgdir)
2596         cd $(%(mmake)-pkgdir) && \
2597         find . -name config.cache -exec $(RM) '{}' \; && \
2598         $(CONFIG_ENV) $(TMP_SRCDIR)/configure $(%(mmake)-config_opts) \
2599             %(extraoptions) && \
2600         $(TOUCH) $@
2603 %(mmake)-clean : %(mmake)-uninstall
2604         @$(RM) $(%(mmake)-pkgdir)
2605 %end
2606 #------------------------------------------------------------------------------
2609 #------------------------------------------------------------------------------
2610 # Given an archive name, patches names and locations where to find them, fetch
2611 # the archive and the patches from any of those locations, unpack the archive
2612 # and then apply the patches.
2614 # Locations currently supported are http and ftp sites, plus local filesystem
2615 # directories. Supported archives are .tar.bz2 and .tar.gz. To modify this,
2616 # the fetch.sh script needs to be modified, since this macro relies on that script.
2618 # Arguments:
2620 #     - mmake           = mmaketarget
2621 #     - archive_origins = list of locations where to find the archive. They are tried
2622 #                         in sequence, until the archive is found and fetching it 
2623 #                         succeeded. If not specified, the current directory is assumed.
2624 #     - archive         = the archive name. Mandatory.
2625 #     - suffixes        = a list of suffixes to append to the the package name plus the
2626 #                         version. Each one of them is tried until a matching archive is
2627 #                         found. They are appended to patches and these are tried the
2628 #                         same way as packages are.
2629 #     - location        = the local directory where to put the fetched archive and patches.
2630 #                         If not specified, the directory specified by destination is used.
2631 #     - destination     = the directory to unpack the archive to.
2632 #                         If not specified, the current directory is assumed.
2633 #     - patches_origins = list of locations where to find the patches. They are tried
2634 #                         in sequence, until a patch is found and fetching it 
2635 #                         succeeded. If not specified, the current directory is assumed.
2636 #     - patches_specs   = list of "patch specs". A patch spec is of the form
2637 #                         patch_name[:[patch_subdir][:patch_opt]].
2639 #                             - patch_name   = the name of the patch file
2640 #                             - patch_subdir = the directory within \destination\ where to
2641 #                                              apply the patch.
2642 #                             - patch_opt    = any options to pass to the `patch' command
2643 #                                              when applying the patch.
2644 #                         
2645 #                         The patch_subdir and patch_opt fields are optional.
2647 %define fetch mmake=/A archive_origins=. archive=/A suffixes= location= destination=. \
2648     patches_origins=$(SRCDIR)/$(CURDIR) patches_specs=::
2650 .PHONY: %(mmake)
2652 ifneq (%(location),)
2653     %(mmake)-location := %(location)
2654 else
2655     %(mmake)-location := %(destination)
2656 endif
2659 %(mmake) :
2660         $(FETCH) -ao "%(archive_origins)" -a %(archive) -s "%(suffixes)" -l $(%(mmake)-location) \
2661         -d %(destination) -po "%(patches_origins)" -p "%(patches_specs)"
2662 %end
2663 #------------------------------------------------------------------------------
2666 #------------------------------------------------------------------------------
2667 # This macro can aid in patch creation for fetched ports. It temporarily creates another
2668 # unpatched source tree and runs diff against this and a previously fetched and possibly
2669 # patched tree. Depending on what happens after patching during a normal build it might
2670 # give best results if the new patch is created directly after fetch.
2672 # Arguments:
2674 #     - mmake       = mmaketarget
2675 #     - archive     = archive base name
2676 #     - srcdir      = directory the package is unpacked to, useful if archive unpacks to
2677 #                     a directory other than its name suggests.
2678 #     - suffixes    = a list of suffixes to append to the the package name plus the
2679 #                     version. Each one of them is tried until a matching archive is
2680 #                     found.
2681 #     - destination = the directory to unpack the archive to.
2682 #     - excludes    = diff patterns to exclude files or directories from the patch
2684 %define create_patch mmake=/A archive=/A srcdir= suffixes="tar.bz2 tar.gz" destination=/A excludes=
2686 .PHONY: %(mmake)
2688 ifneq (%(excludes),)
2689     %(mmake)-exclude := -X ./exclude.patterns
2690 endif
2692 ifneq (%srcdir),)
2693     %(mmake)-srcdir := %(srcdir)
2694 else
2695     %(mmake)-srcdir := %(archive)
2696 endif
2699 %(mmake):
2700         @$(FETCH) -a %(archive) -s "%(suffixes)" -l $(PORTSSOURCEDIR) -d %(destination)/tmp ; \
2701         $(MV) %(destination)/$(%(mmake)-srcdir) %(destination)/tmp/$(%(mmake)-srcdir).aros ; \
2702         cd %(destination)/tmp ; \
2703         $(FOR) f in %(excludes) ; do \
2704             $(ECHO) $$f >> ./exclude.patterns ; \
2705         done ; \
2706         diff -ruN $(%(mmake)-exclude) \
2707             $(%(mmake)-srcdir) \
2708             $(%(mmake)-srcdir).aros \
2709             >$(SRCDIR)/$(CURDIR)/%(archive)-aros-new.diff ; \
2710         $(MV) %(destination)/tmp/$(%(mmake)-srcdir).aros %(destination)/$(%(mmake)-srcdir) ; \
2711         $(RM) %(destination)/tmp
2712 %end
2713 #------------------------------------------------------------------------------
2716 #------------------------------------------------------------------------------
2717 # Joins the features of %fetch and %build_with_configure.
2719 # If a patch is provided, it *must* be named the following way:
2721 #    <package name>-<version number>-aros.diff
2723 # Moreover, it *must* be appliable with the -p1 option of the `patch' command after
2724 # CD'ing into the archive's extracted directory.
2726 # Note that whilst the %fetch macro accepts a list of patches for any given archive,
2727 # the %fetch_and_build macro only accepts *one* patch for each package. It's up to you
2728 # to make that patch fully comprehensive.
2730 # Arguments:
2732 #    - mmake            = the meta make target.
2733 #    - package          = the GNU package name, sans version and archive format suffixes.
2734 #    - subpackage       = ???
2735 #    - compiler         = same meaning as the one for the %build_with_configure macro.
2736 #    - install_target   = same meaning as the one for the %build_with_configure macro.
2737 #    - version          = the package's version number, or otherwise any other version string.
2738 #                         It gets appended to the package name to form the basename of the archive.
2739 #    - suffixes         = a list of suffixes to apped to the the package name plus the
2740 #                         version. Each one of them is tried until a matching archive is found.
2741 #                         Defaults to "tar.bz2 tar.gz".
2742 #    - srcdir           = ???
2743 #    - package_repo     = same meaning as the one of the %fetch macro's %(archive_origins) argument
2744 #    - patch            = "yes" or "no", depending on whether a patch for this package needs to be
2745 #                         fetched or not. Default to no.
2746 #    - patch_repo       = same meaning as the one of the %fetch macro's %(patches_origins) argument
2747 #    - prefix           = same meaning as the one for the %build_with_configure macro.
2748 #    - aros_prefix      = same meaning as the one for the %build_with_configure macro.
2749 #    - extraoptions     = same meaning as the one for the %build_with_configure macro.
2750 #    - extracflags      = same meaning as the one for the %build_with_configure macro.
2751 #    - preconfigure     = same meaning as the one for the %build_with_configure macro.
2752 #    - postconfigure    = same meaning as the one for the %build_with_configure macro.
2753 #    - postinstall      = same meaning as the one for the %build_with_configure macro.
2754 #    - install_env      = same meaning as the one for the %build_with_configure macro.
2755 #    - use_build_env    = same meaning as the one for the %build_with_configure macro.
2756 #    - nix              = same meaning as the one for the %build_with_configure macro.
2757 #    - nix_dir_layout   = same meaning as the one for the %build_with_configure macro.
2758 #    - create_pkg       = create a distributable package of the compiled sources, defaults to no
2760 %define fetch_and_build mmake=/A package=/A subpackage= compiler=target install_target=install \
2761     version=/A suffixes="tar.bz2 tar.gz" srcdir= package_repo= patch=no patch_repo= \
2762     prefix= aros_prefix= extraoptions= extracflags= preconfigure= postconfigure= postinstall= \
2763     install_env= use_build_env=no nix=no nix_dir_layout= create_pkg=no
2765 #MM- %(mmake)-quick : %(mmake)-%(subpackage)-quick
2766 #MM- %(mmake)-%(subpackage)-quick : %(mmake)-%(subpackage)-fetch
2767 #MM- %(mmake)-fetch : %(mmake)-%(subpackage)-fetch
2768 #MM- %(mmake)-create-patch : %(mmake)-%(subpackage)-create-patch
2770 %(mmake)-archbase  := %(package)-%(version)
2772 ifeq (%(compiler),host)
2773     %(mmake)-portdir  := $(HOSTDIR)/Ports/%(package)
2774 else
2775     %(mmake)-portdir  := $(PORTSDIR)/%(package)
2776 endif
2778 ifeq (%(prefix),)
2779     %(mmake)-prefix := $(CONTRIB_DIR)/%(package)
2780 else
2781     %(mmake)-prefix := %(prefix)
2782 endif
2784 ifneq (%(subpackage),)
2785     %(mmake)-%(subpackage)-archbase  := %(package)-%(subpackage)-%(version)
2786 else
2787     %(mmake)-%(subpackage)-archbase  := %(package)-%(version)
2788 endif
2790 ifneq (%(srcdir),)
2791     %(mmake)-%(subpackage)-srcdir  := %(srcdir)
2792 else
2793     %(mmake)-%(subpackage)-srcdir  := $(%(mmake)-archbase)
2794 endif
2796 ifeq (%(patch),yes)
2797     %(mmake)-%(subpackage)-patches_specs := $(%(mmake)-%(subpackage)-archbase)-aros.diff:$(%(mmake)-%(subpackage)-srcdir):-f,-p1
2798 else
2799     %(mmake)-%(subpackage)-patches_specs := ::
2800 endif
2802 %fetch mmake=%(mmake)-%(subpackage)-fetch archive=$(%(mmake)-%(subpackage)-archbase) suffixes="%(suffixes)" \
2803     location=$(PORTSSOURCEDIR) destination=$(%(mmake)-portdir) \
2804     archive_origins=". %(package_repo)" \
2805     patches_specs="$(%(mmake)-%(subpackage)-patches_specs)" patches_origins="$(SRCDIR)/$(CURDIR) %(patch_repo)"
2807 %create_patch mmake=%(mmake)-%(subpackage)-create-patch \
2808     archive=$(%(mmake)-%(subpackage)-archbase) \
2809     srcdir=$(%(mmake)-%(subpackage)-srcdir) \
2810     suffixes="%(suffixes)" \
2811     destination=$(%(mmake)-portdir)
2813 #MM- %(mmake) : %(mmake)-%(subpackage)
2815 %(mmake)-%(subpackage)-package-dir := $(%(mmake)-portdir)/$(%(mmake)-%(subpackage)-archbase)
2817 %(mmake)-%(subpackage)-package-basename := \
2818     $(DISTDIR)/Packages/$(%(mmake)-%(subpackage)-archbase)-aros.$(AROS_TARGET_CPU)
2820 ifneq (%(create_pkg),no)
2821     %(mmake)-%(subpackage)-package := $(%(mmake)-%(subpackage)-package-basename).tar.bz2
2822 endif
2824 %build_with_configure mmake=%(mmake)-%(subpackage) package=%(package) compiler=%(compiler) install_target=%(install_target) \
2825      srcdir=$(%(mmake)-portdir)/$(%(mmake)-%(subpackage)-srcdir) install_env=%(install_env) use_build_env=%(use_build_env) \
2826      nix=%(nix) nix_dir_layout=%(nix_dir_layout) prefix="$(%(mmake)-prefix)" \
2827      aros_prefix="%(aros_prefix)" preconfigure="%(preconfigure)" postconfigure="%(postconfigure)" postinstall="%(postinstall) \
2828      %(mmake)-%(subpackage)-make-package"  extraoptions="%(extraoptions)" extracflags="%(extracflags)"
2830 .PHONY : %(mmake)-%(subpackage)-make-package %(mmake)-%(subpackage)-create-patch
2831 #MM %(mmake)-%(subpackage)-make-package : %(mmake)-%(subpackage)-quick
2834 %(mmake)-%(subpackage)-make-package : $(%(mmake)-%(subpackage)-package)
2836 #There seems to be a bug, either with my clock or with make, 'cause it may happen
2837 #that $^ and $@ have exactly the same mtime, and in that case make tries
2838 #to rebuild $@ again, which would fail because the directory where
2839 #the package got installed would not exist anymore. 
2840 #We work this around by using an if statement to manually check the mtimes.
2841 $(%(mmake)-%(subpackage)-package-basename).tar.bz2 :
2842         @$(IF) test $(%(mmake)-installflag) -nt $@ || ! test -f $@; then \
2843         $(RM) $@ ; \
2844         $(ECHO) "Building   \`$(%(mmake)-%(subpackage)-package-basename).tar.bz2'" ; \
2845         mkdir -p "$(DISTDIR)/Packages" ; \
2846         mkdir -p "$(%(mmake)-prefix)" ; \
2847         cd $(%(mmake)-%(subpackage)-package-dir) ; \
2848         tar -cvf $(%(mmake)-%(subpackage)-package-basename).tar * ; \
2849         bzip2 -9 -f $(%(mmake)-%(subpackage)-package-basename).tar ; \
2850     fi
2851 %end
2852 #------------------------------------------------------------------------------
2855 #------------------------------------------------------------------------------
2856 # Joins the features of %fetch and %build_with_configure, taking advantage of
2857 # the naming scheme of GNU packages. GNU packages names are in the form
2859 #     <package name>-<version number>.<archive format suffix>
2861 # If a patch is provided, it *must* be named the following way:
2863 #    <package name>-<version number>-aros.diff
2865 # Moreover, it *must* be appliable with the -p1 option of the `patch' command after
2866 # CD'ing into the archive's extracted directory.
2868 # Note that whilst the %fetch macro accepts a list of patches for any given archive,
2869 # the %fetch_and_build macro only accepts *one* patch for each package. It's up to you
2870 # to make that patch fully comprehensive.
2872 # NOTE: GNU packages are always compiled with *nix semantics turned on.
2874 # Arguments:
2876 #    Arguments have the same meaning as the one for the %fetch_and_build macro, except:
2878 #    - prefix           = defaults to $(GNUDIR).
2879 #    - aros_prefix      = defaults to /GNU.
2881 %define fetch_and_build_gnu mmake=/A package=/A subpackage= version=/A suffixes="tar.bz2 tar.gz" \
2882     srcdir= package_repo= patch=no patch_repo= prefix=$(GNUDIR) \
2883     aros_prefix=/GNU extraoptions= extracflags= preconfigure= postconfigure= postinstall= 
2885 GNU_REPOSITORY := gnu://
2887 %fetch_and_build mmake="%(mmake)" package="%(package)" subpackage="%(subpackage)" version="%(version)" \
2888     suffixes="%(suffixes)" srcdir="%(srcdir)" \
2889     package_repo="%(package_repo) $(GNU_REPOSITORY)%(package)" \
2890     patch="%(patch)" patch_repo="%(patch_repo)" \
2891     prefix="%(prefix)" aros_prefix="%(aros_prefix)" extraoptions="%(extraoptions)" extracflags="%(extracflags)" \
2892     preconfigure="%(preconfigure)" postconfigure="%(postconfigure)" postinstall="%(postinstall)" nix=yes
2894 %end
2895 #------------------------------------------------------------------------------
2898 #------------------------------------------------------------------------------
2899 # Same job as the one of %fetch_and_build_gnu, except that this one assumes
2900 # that the package is a "Development" package, and as such it needs to be placed
2901 # under the $(AROS_DEVELOPMENT) directory, as a default. 
2903 # All the arguments have the same meaning as the ones of the %fetch_and_build_gnu 
2904 # macro, but notice that %fetch_and_build_gnu_development *doesn't* have a
2905 # "mmake" argument, because the metatarget is implicitely defined as
2907 #     #MM- development-%(package)
2909 %define fetch_and_build_gnu_development package=/A subpackage= version=/A suffixes="tar.bz2 tar.gz" \
2910     srcdir= package_repo= patch=no patch_repo= prefix=$(AROS_DEVELOPMENT) \
2911     aros_prefix=/Development preconfigure= postconfigure= postinstall=  extraoptions= extracflags=
2913 #MM- development : development-%(package)
2916 %fetch_and_build_gnu mmake=development-%(package) package=%(package) subpackage="%(subpackage)" \
2917    version=%(version) suffixes="%(suffixes)" srcdir="%(srcdir)"  \
2918    package_repo="%(package_repo)" patch="%(patch)" patch_repo="%(patch_repo)" prefix=%(prefix) \
2919    aros_prefix="%(aros_prefix)" preconfigure="%(preconfigure)" postconfigure="%(postconfigure)" postinstall="postinstall-%(package)-delete-la-files %(postinstall)" \
2920    extraoptions="%(extraoptions)" extracflags="%(extracflags)"
2923 postinstall-%(package)-delete-la-files:
2924         $(RM) $(AROS_DEVELOPMENT)/lib/*.la
2926 %end
2927 #------------------------------------------------------------------------------
2929 # Builds a kickstart package in PKG format
2931 # Arguments:
2933 #    - mmake   = target name
2934 #    - file    = destination file name with path
2935 #    - startup = the file which will be put first
2937 # Other arguments are self-explanatory
2939 %define make_package mmake=/A file=/A classes= devs= handlers= hidds= libs= res= startup=
2941 PKG_CLASSES   := $(addsuffix .class, %(classes))
2942 PKG_DEVICES   := $(addsuffix .device, %(devs))
2943 PKG_HANDLERS  := $(addsuffix -handler, %(handlers))
2944 PKG_HIDD      := $(addsuffix .hidd, %(hidds))
2945 PKG_LIBS      := $(addsuffix .library, %(libs))
2946 PKG_RESOURCES := $(addsuffix .resource, %(res))
2948 PKG_FILES := %(startup) $(PKG_CLASSES) $(PKG_DEVICES) $(PKG_HANDLERS) $(PKG_HIDD) $(PKG_LIBS) $(PKG_RESOURCES)
2949 PKG_DIR   := $(dir %(file))
2950 PKG_DEPS  := $(addprefix $(PKGDIR)/, $(PKG_FILES))
2953 %(mmake) : %(file)
2956 %(mmake)-quick : %(file)
2958 %(file): PKG_FILES := $(PKG_FILES)
2959 %(file): $(PKG_DEPS) | $(PKG_DIR)
2960         @$(ECHO) Packaging $@...
2961         @$(SRCDIR)/tools/package/pkg c $@ $(PKGDIR) $(PKG_FILES)
2963 %compress_file mmake=%(mmake) file=%(file)
2965 GLOB_MKDIRS += $(PKG_DIR)
2967 %end
2969 #------------------------------------------------------------------------------
2970 # Compresses %(file) with a gzip.
2971 # Good in conjunction with for example %build_prog
2973 %define compress_file mmake=/A file=/A
2975 #MM- %(mmake)-gz : %(mmake) %(mmake)-gz-quick
2978 %(mmake)-gz-quick : %(file).gz
2980 %(file).gz: %(file)
2981         @$(ECHO) Compressing $(subst $(TARGETDIR)/,,$^)...
2982         @gzip -9 -f $^
2984 %end
2986 #------------------------------------------------------------------------------
2987 # Links a kickstart module in ELF format
2988 # Arguments are similar to make_package
2990 %define link_kickstart mmake=/A file=/A classes= devs= handlers= hidds= libs= res= \
2991     startup= uselibs= ldflags=$(LDFLAGS) map= deps=
2993 KOBJ_CLASSES  := $(addprefix $(KOBJSDIR)/, $(addsuffix _class.o, %(classes)))
2994 KOBJ_DEVICES  := $(addprefix $(KOBJSDIR)/, $(addsuffix _device.o, %(devs)))
2995 KOBJ_HANDLERS := $(addprefix $(KOBJSDIR)/, $(addsuffix _handler.o, %(handlers)))
2996 KOBJ_HIDD     := $(addprefix $(KOBJSDIR)/, $(addsuffix _hidd.o, %(hidds)))
2997 KOBJ_LIBS     := $(addprefix $(KOBJSDIR)/, $(addsuffix _library.o, %(libs)))
2998 KOBJ_RES      := $(addprefix $(KOBJSDIR)/, $(addsuffix _resource.o, %(res)))
3000 ifeq (%(startup),)
3001     KOBJ_STARTUP := $(GENDIR)/$(RESIDENT_BEGIN).o
3002 else
3003     KOBJ_STARTUP := %(startup)
3004 endif
3006 KOBJS        := $(KOBJ_STARTUP) $(KOBJ_CLASSES) $(KOBJ_HANDLERS) $(KOBJ_LIBS) $(KOBJ_DEVICES) $(KOBJ_HIDD) $(KOBJ_RES)
3008 TMP_LDFLAGS := %(ldflags)
3010 # Make a list of the lib files this program depends on.
3011 # In LDFLAGS remove white space between -L and directory
3012 TMP_DIRS := $(subst -L ,-L,$(strip $(TMP_LDFLAGS)))
3013 # Filter out only the libdirs and remove -L
3014 TMP_DIRS := $(patsubst -L%,%,$(filter -L%,$(TMP_DIRS)))
3015 # Add trailing /
3016 TMP_DIRS := $(subst //,/,$(addsuffix /,$(TMP_DIRS)))
3017 # Add normal linklib path
3018 TMP_DIRS += $(LIBDIR)/
3019 # add lib and .a to static linklib names
3020 TMP_LIBS := $(addprefix lib,$(addsuffix .a,%(uselibs) libinit autoinit))
3021 # search for the linklibs in the given path, ignore ones not found
3022 TMP_DEPLIBS := $(foreach lib,$(TMP_LIBS), \
3023     $(firstword $(wildcard $(addsuffix $(lib),$(TMP_DIRS)))) \
3026 TMP_DIRS += $(dir %(file))
3027 ifneq (%(map),)
3028     TMP_LDFLAGS += $(GENMAP) %(map)
3029     TMP_DIRS    += $(dir %(map))
3030 endif
3032 #MM %(mmake) : %(deps)
3035 %(mmake) : %(file)
3038 %(mmake)-quick : %(file)
3040 %(file): KOBJS := $(KOBJS)
3041 %(file): LDFLAGS := $(TMP_LDFLAGS) $(NOSTARTUP_LDFLAGS) \
3042                     -noarosc -nosysbase -Wl,-Ur
3043 %(file): LDLIBS := $(addprefix -l, %(uselibs))
3044 %(file): $(KOBJS) $(DEPLIBS) | $(TMP_DIRS)
3045         @$(ECHO) "Kickstart  $(subst $(TARGETDIR)/,,$@)..."
3046         @$(TARGET_CC) -o $@ $(KOBJS) $(LDFLAGS) $(LDLIBS)
3047         @$(STRIP) $@
3049 %compress_file mmake=%(mmake) file=%(file)
3051 GLOB_MKDIRS += $(TMP_DIRS)
3053 %end