compiler/clib/__ctype_linklib.c: Use arosc libbase again to get lookup arrays for...
[AROS.git] / config / make.tmpl
blobc88a6c7de8b8c2fd3bc45d436c0c989c5fa4132b
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             cat %(objdir)/%(err); \
88             exit 1; \
89         fi
91         @if $(TEST) ! -s %(objdir)/%(err) ; then $(RM) %(objdir)/%(err) ; fi
92         @$(STRIP) $@
93 %end
94 #------------------------------------------------------------------------------
97 #------------------------------------------------------------------------------
98 # Create the library
99 %define mklib_q ar=$(AR) ranlib=$(RANLIB) to=$@ from=$(OBJS)
100         @$(ECHO) "Creating   $(subst $(TARGETDIR)/,,%(to))..."
101         @%(ar) %(to) %(from)
102         @%(ranlib) %(to)
103 %end
104 #------------------------------------------------------------------------------
107 #------------------------------------------------------------------------------
108 # Create the dependency file %(to) for %(from)
109 %define mkdepend_q flags=$(CFLAGS) from=$< to=$@ cc=$(AROS_CC)
110         %mkdir_q dir="$(dir %(to))"
111         @$(ECHO) "Makedepend $(CURDIR)/$(notdir %(from))..."
112         @AROS_CC="%(cc)" $(MKDEPEND) %(flags) -I$(TOP)/$(CURDIR) -I$(SRCDIR)/$(CURDIR) %(from) -o %(to)
113 %end
114 #------------------------------------------------------------------------------
117 #------------------------------------------------------------------------------
118 # Create one directory without any output
119 %define mkdir_q dir=.
120         @$(IF) $(TEST) ! -d %(dir) ; then $(MKDIR) %(dir) ; else $(NOP) ; fi
121 %end
122 #------------------------------------------------------------------------------
125 #------------------------------------------------------------------------------
126 # Create several directories without any output
127 %define mkdirs_q dirs=/M
128         @$(FOR) dir in %(dirs) ; do \
129             $(IF) $(TEST) ! -d $$dir ; then $(MKDIR) $$dir ; else $(NOP) ; fi ; \
130         done
131 %end
132 #------------------------------------------------------------------------------
135 #############################################################################
136 #############################################################################
137 ##                                                                         ##
138 ## Here are the mmakefile macros that are used to do certain tasks in a    ##
139 ## mmakefile. They consist of one or more full makefile rules.             ##
140 ## In general the files generated in these macros are also defined as      ##
141 ## make targets so that they can be used as a dependency in other rules    ##
142 ##                                                                         ##
143 #############################################################################
144 #############################################################################
146 #------------------------------------------------------------------------------
147 # Generate a unique id for each of the %build... rules
148 %define buildid targets=/A
149 BDID := $(BDID)_
150 ifneq ($(filter $(TARGET),%(targets)),)
151 BDTARGETID := $(BDID)
152 endif
153 %end
154 #------------------------------------------------------------------------------
157 #------------------------------------------------------------------------------
158 # Copy file %(from) to %(to) in a makefile rule
159 %define rule_copy from=/A to=/A
160 %(to) : %(from)
161         @$(CP) $< $@
162 %end
163 #------------------------------------------------------------------------------
166 #------------------------------------------------------------------------------
167 # Copy the files %(files) to %(targetdir). For each file in %(files),
168 # %(srcdir)/file is copied to %(targetdir)/file. The targetdir and the
169 # appropriate subdirs are not generated by this rule so they have to be
170 # present.
171 %define rule_copy_multi files=/A targetdir=/A srcdir=.
173 $(addprefix %(targetdir)/,%(files)) : %(targetdir)/% : %(srcdir)/%
174         @$(CP) $< $@
175 %end
176 #------------------------------------------------------------------------------
179 #------------------------------------------------------------------------------
180 # Copy the files %(files) to %(targetdir). For each file in %(files),
181 # %(srcdir)/file is copied to %(targetdir)/file if these files are different.
182 # %(stampfile) is used to keep track of when the last time the comparison has
183 # been done. The targetdir and the appropriate subdirs are not generated by 
184 # this rule so they have to be present.
185 %define rule_copy_diff_multi files=/A targetdir=/A srcdir=. \
186     stampfile=$(TMP_SRCDIR)/.copy_stamp
188 TMP_SRCDIR := %(srcdir)
190 $(addprefix %(targetdir)/,%(files)) : | %(stampfile)
192 %(stampfile) : COPYSRCDIR := %(srcdir)
193 %(stampfile) : TGTDIR := %(targetdir)
194 %(stampfile) : FILES := %(files)
195 %(stampfile) : $(addprefix %(srcdir)/,%(files))
196         @for f in $(FILES); do \
197              $(IF) ! $(CMP) -s $(COPYSRCDIR)/$$f $(TGTDIR)/$$f ; then \
198                  $(CP) $(COPYSRCDIR)/$$f $(TGTDIR)/$$f ; \
199              fi ; \
200         done
201         @$(TOUCH) $@
202 %end
203 #------------------------------------------------------------------------------
206 #------------------------------------------------------------------------------
207 # Will join all the files in %(from) to %(to). When text is specified it will
208 # be displayed.
209 # Restriction: at the moment when using a non-empty target dir %(from) may
210 # not have 
211 %define rule_join to=/A from=/A text=
213 %(to) : %(from)
214 ifneq (%(text),)
215         @$(ECHO) %(text)
216 endif
217         @$(CAT) $^ >$@
218 %end
219 #------------------------------------------------------------------------------
222 #------------------------------------------------------------------------------
223 # Include the dependency files and add some internal rules
224 # When depstargets is provided the depencies will only be included when one of
225 # these targets is the $(TARGET). Otherwise the dependencies will only be
226 # included when the $(TARGET) is not for setup or clean 
227 %define include_deps deps=$(DEPS)/M  depstargets=
228 ifneq (%(deps),)
229   ifneq (%(depstargets),)
230     ifneq ($(findstring $(TARGET),%(depstargets)),)
231       -include %(deps)
232     endif
233   else
234     ifeq (,$(filter clean% %clean %clean% setup% includes% %setup,$(TARGET)))
235       -include %(deps)
236     endif
237   endif
238 endif
239 %end
240 #------------------------------------------------------------------------------
243 #------------------------------------------------------------------------------
244 # Create the directories %(dirs). The creation will be done by adding rules to
245 # the %(setuptarget) make target with setup as the default. 
246 %define rule_makedirs dirs=/A setuptarget=setup
248 %(setuptarget) :: %(dirs)
250 GLOB_MKDIRS += %(dirs)
252 %end
253 #------------------------------------------------------------------------------
256 #------------------------------------------------------------------------------
257 # Generate a rule to compile a C source file to an object file and generate
258 # the dependency file. Basename may contain a directory part, then the source
259 # file has to be in that directory. The generated file will be put in the
260 # object directory without the directory.
261 # options
262 # - basename: the basename of the file to compile. Use % for a wildcard rule
263 # - cflags (default $(CFLAGS)): the C flags to use for compilation
264 # - dflags: the flags used during creation of dependency file. If not specified
265 #   the same value as cflags will be used
266 # - targetdir: the directory to put the .o file and the .d file. By default
267 #   it is put in the same directory as the .c file
268 %define rule_compile basename=/A cflags=$(CFLAGS) dflags= targetdir= compiler=target nix=no
270 ifeq (%(targetdir),)
271   TMP_TARGETBASE := %(basename)
272 else
273   TMP_TARGETBASE := %(targetdir)/$(notdir %(basename))
274 endif
276 ifeq ($(findstring %(compiler),host kernel target),)
277   $(error unknown compiler %(compiler))
278 endif
279 ifeq (%(compiler),target)
280 $(TMP_TARGETBASE).o : TMP_CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
281 $(TMP_TARGETBASE).d : TMP_CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
282 $(TMP_TARGETBASE).o : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
283 $(TMP_TARGETBASE).d : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
284 $(TMP_TARGETBASE).o : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
285 $(TMP_TARGETBASE).d : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
286 endif
287 ifeq (%(compiler),host)
288 $(TMP_TARGETBASE).o : TMP_CMD:=$(HOST_CC)
289 $(TMP_TARGETBASE).d : TMP_CMD:=$(HOST_CC)
290 $(TMP_TARGETBASE).o : TMP_IQUOTE:=$(HOST_IQUOTE)
291 $(TMP_TARGETBASE).d : TMP_IQUOTE:=$(HOST_IQUOTE)
292 $(TMP_TARGETBASE).o : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
293 $(TMP_TARGETBASE).d : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
294 endif
295 ifeq (%(compiler),kernel)
296 $(TMP_TARGETBASE).o : TMP_CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
297 $(TMP_TARGETBASE).d : TMP_CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
298 $(TMP_TARGETBASE).o : TMP_IQUOTE:=$(KERNEL_IQUOTE)
299 $(TMP_TARGETBASE).d : TMP_IQUOTE:=$(KERNEL_IQUOTE)
300 $(TMP_TARGETBASE).o : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
301 $(TMP_TARGETBASE).d : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
302 endif
304 ifeq (%(nix),yes)
305   $(TMP_TARGETBASE).o : CFLAGS := -nix %(cflags)
306 else
307   $(TMP_TARGETBASE).o : CFLAGS := %(cflags)
308 endif
309 $(TMP_TARGETBASE).o : %(basename).c
310         %compile_q cmd=$(TMP_CMD) iquote=$(TMP_IQUOTE) iquote_end=$(TMP_IQUOTE_END)
312 ifeq (%(dflags),)
313   ifeq (%(nix),yes)
314     $(TMP_TARGETBASE).d : TMP_DFLAGS:=-nix %(cflags)
315   else
316     $(TMP_TARGETBASE).d : TMP_DFLAGS:=%(cflags)
317   endif
318 else
319   ifeq (%(nix),yes)
320     $(TMP_TARGETBASE).d : TMP_DFLAGS:=-nix %(dflags)
321   else
322     $(TMP_TARGETBASE).d : TMP_DFLAGS:=%(dflags)
323   endif
324 endif
325 $(TMP_TARGETBASE).d : %(basename).c
326         %mkdepend_q cc=$(TMP_CMD) flags=$(TMP_DFLAGS)
327 %end
328 #------------------------------------------------------------------------------
331 #------------------------------------------------------------------------------
332 # Generate a rule to compile a C++ source file to an object file and generate
333 # the dependency file. Basename may contain a directory part, then the source
334 # file has to be in that directory. The generated file will be put in the
335 # object directory without the directory.
336 # options
337 # - basename: the basename of the file to compile. Use % for a wildcard rule
338 # - cflags (default $(CFLAGS)): the C flags to use for compilation
339 # - dflags: the flags used during creation of dependency file. If not specified
340 #   the same value as cflags will be used
341 # - targetdir: the directory to put the .o file and the .d file. By default
342 #   it is put in the same directory as the .c file
343 %define rule_compile_cxx basename=/A cflags=$(CFLAGS) dflags= targetdir= compiler=target nix=no
345 ifeq (%(targetdir),)
346   TMP_TARGETBASE := %(basename)
347 else
348   TMP_TARGETBASE := %(targetdir)/$(notdir %(basename))
349 endif
351 # Adjust compiler flags to suit C++
352 TMP_CXXFLAGS := %(cflags)
353 TMP_CXXFLAGS := $(TMP_CXXFLAGS) -fno-rtti -fno-exceptions -fno-check-new -isystem $(AROS_DEVELOPMENT)/include
354 TMP_CXXFLAGS := $(subst -Wno-pointer-sign,, $(subst -Werror-implicit-function-declaration,, $(TMP_CXXFLAGS)))
356 ifeq ($(findstring %(compiler),host kernel target),)
357   $(error unknown compiler %(compiler))
358 endif
359 ifeq (%(compiler),target)
360 $(TMP_TARGETBASE).o : TMP_CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
361 $(TMP_TARGETBASE).d : TMP_CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
362 $(TMP_TARGETBASE).o : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
363 $(TMP_TARGETBASE).d : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
364 $(TMP_TARGETBASE).o : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
365 $(TMP_TARGETBASE).d : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
366 endif
367 ifeq (%(compiler),host)
368 $(TMP_TARGETBASE).o : TMP_CMD:=$(HOST_CC)
369 $(TMP_TARGETBASE).d : TMP_CMD:=$(HOST_CC)
370 $(TMP_TARGETBASE).o : TMP_IQUOTE:=$(HOST_IQUOTE)
371 $(TMP_TARGETBASE).d : TMP_IQUOTE:=$(HOST_IQUOTE)
372 $(TMP_TARGETBASE).o : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
373 $(TMP_TARGETBASE).d : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
374 endif
375 ifeq (%(compiler),kernel)
376 $(TMP_TARGETBASE).o : TMP_CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
377 $(TMP_TARGETBASE).d : TMP_CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
378 $(TMP_TARGETBASE).o : TMP_IQUOTE:=$(KERNEL_IQUOTE)
379 $(TMP_TARGETBASE).d : TMP_IQUOTE:=$(KERNEL_IQUOTE)
380 $(TMP_TARGETBASE).o : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
381 $(TMP_TARGETBASE).d : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
382 endif
384 ifeq (%(nix),yes)
385   $(TMP_TARGETBASE).o : CFLAGS := -nix $(TMP_CXXFLAGS)
386 else
387   $(TMP_TARGETBASE).o : CFLAGS := $(TMP_CXXFLAGS)
388 endif
389 $(TMP_TARGETBASE).o : %(basename).cpp
390         %compile_q cmd=$(TMP_CMD) iquote=$(TMP_IQUOTE) iquote_end=$(TMP_IQUOTE_END)
392 ifeq (%(dflags),)
393   ifeq (%(nix),yes)
394     $(TMP_TARGETBASE).d : TMP_DFLAGS:=-nix %(cflags)
395   else
396     $(TMP_TARGETBASE).d : TMP_DFLAGS:=%(cflags)
397   endif
398 else
399   ifeq (%(nix),yes)
400     $(TMP_TARGETBASE).d : TMP_DFLAGS:=-nix %(dflags)
401   else
402     $(TMP_TARGETBASE).d : TMP_DFLAGS:=%(dflags)
403   endif
404 endif
405 $(TMP_TARGETBASE).d : %(basename).cpp
406         %mkdepend_q cc=$(TMP_CMD) flags=$(TMP_DFLAGS)
407 %end
408 #------------------------------------------------------------------------------
411 #------------------------------------------------------------------------------
412 # Generate a rule to compile multiple C source files to an object file and
413 # generate the corresponding dependency files. The generated file will be put
414 # in the object directory without the directory part of the source file.
415 # options
416 # - basenames: the basenames of the files to compile. The names may include
417 #   relative or absolute path names. No wildcard is allowed
418 # - cflags (default $(CFLAGS)): the C flags to use for compilation
419 # - dflags: the flags used during creation of dependency file. If not specified
420 #   the same value as cflags will be used
421 # - targetdir: the directory to put the .o file and the .d file. By default
422 #   it is put in the same directory as the .c file. When targetdir is not
423 #   empty, path names will be stripped from the file names so that all files
424 #   are in that dir and not in subdirectories.
425 # - compiler (default target): compiler to use, target, kernel or host
426 %define rule_compile_multi basenames=/A cflags=$(CFLAGS) dflags= targetdir= \
427     compiler=target
429 ifeq (%(targetdir),)
430 TMP_TARGETS := $(addsuffix .o,%(basenames))
431 TMP_DTARGETS := $(addsuffix .d,%(basenames))
432 TMP_WILDCARD := %
433 else
434 TMP_TARGETS := $(addsuffix .o,$(addprefix %(targetdir)/,$(notdir %(basenames))))
435 TMP_DTARGETS := $(addsuffix .d,$(addprefix %(targetdir)/,$(notdir %(basenames))))
436 TMP_WILDCARD := %(targetdir)/%
438 # Be sure that all .c files are generated
439 $(TMP_TARGETS) $(TMP_DTARGETS) : | $(addsuffix .c,%(basenames))
441 # Be sure that all .c files are found
442 TMP_SRCDIR := $(shell echo $(SRCDIR) | sed 's/^\(.\):\//\/\1\//')
443 TMP_BASEDIRS := $(shell echo $(sort $(dir %(basenames))) | sed 's/\(.\):\//\/\1\//g')
444 TMP_DIRS := $(foreach dir, $(TMP_BASEDIRS), $(if $(filter /%,$(dir)),$(dir),$(TMP_SRCDIR)/$(CURDIR)/$(dir)))
445 ifneq ($(TMP_DIRS),)
446     TMP_DIRS := $(shell echo $(TMP_DIRS) | sed 's/\(.\):\//\/\1\//g')
447     vpath %.c $(TMP_DIRS)
448 endif
450 endif
452 ifeq ($(findstring %(compiler),host kernel target),)
453   $(error unknown compiler %(compiler))
454 endif
455 ifeq (%(compiler),target)
456 $(TMP_TARGETS) $(TMP_DTARGETS) : CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
457 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
458 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
459 endif
460 ifeq (%(compiler),host)
461 $(TMP_TARGETS) $(TMP_DTARGETS) : CMD:=$(HOST_CC)
462 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE:=$(HOST_IQUOTE)
463 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
464 endif
465 ifeq (%(compiler),kernel)
466 $(TMP_TARGETS) $(TMP_DTARGETS) : CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
467 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE:=$(KERNEL_IQUOTE)
468 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
469 endif
471 $(TMP_TARGETS) : CFLAGS := %(cflags)
472 $(TMP_TARGETS) : $(TMP_WILDCARD).o : %.c
473         %compile_q cmd=$(CMD) iquote=$(TMP_IQUOTE) iquote_end=$(TMP_IQUOTE_END)
475 ifeq (%(dflags),)
476 $(TMP_DTARGETS) : DFLAGS:=%(cflags)
477 else
478 $(TMP_DTARGETS) : DFLAGS:=%(dflags)
479 endif
480 $(TMP_DTARGETS) : $(TMP_WILDCARD).d : %.c
481         %mkdepend_q cc=$(CMD) flags=$(DFLAGS)
482 %end
483 #------------------------------------------------------------------------------
486 #------------------------------------------------------------------------------
487 # Generate a rule to compile multiple C++ source files to an object file and
488 # generate the corresponding dependency files. The generated file will be put
489 # in the object directory without the directory part of the source file.
490 # options
491 # - basenames: the basenames of the files to compile. The names may include
492 #   relative or absolute path names. No wildcard is allowed
493 # - cflags (default $(CFLAGS)): the C flags to use for compilation
494 # - dflags: the flags used during creation of dependency file. If not specified
495 #   the same value as cflags will be used
496 # - targetdir: the directory to put the .o file and the .d file. By default
497 #   it is put in the same directory as the .c file. When targetdir is not
498 #   empty, path names will be stripped from the file names so that all files
499 #   are in that dir and not in subdirectories.
500 # - compiler (default target): compiler to use, target, kernel or host
501 %define rule_compile_cxx_multi basenames=/A cflags=$(CFLAGS) dflags= \
502     targetdir= compiler=target
504 # Adjust compiler flags to suit C++
505 TMP_CXXFLAGS := %(cflags)
506 TMP_CXXFLAGS := $(TMP_CXXFLAGS) -fno-rtti -fno-exceptions -fno-check-new -isystem $(AROS_DEVELOPMENT)/include
507 TMP_CXXFLAGS := $(subst -Wno-pointer-sign,, $(subst -Werror-implicit-function-declaration,, $(TMP_CXXFLAGS)))
509 ifeq (%(targetdir),)
510 TMP_TARGETS := $(addsuffix .o,%(basenames))
511 TMP_DTARGETS := $(addsuffix .d,%(basenames))
512 TMP_WILDCARD := %
513 else
514 TMP_TARGETS := $(addsuffix .o,$(addprefix %(targetdir)/,%(basenames)))
515 TMP_DTARGETS := $(addsuffix .d,$(addprefix %(targetdir)/,%(basenames)))
516 TMP_WILDCARD := %(targetdir)/%
518 # Be sure that all .cpp files are generated
519 $(TMP_TARGETS) $(TMP_DTARGETS) : | $(addsuffix .cpp,%(basenames))
521 # Be sure that all .cpp files are found
522 TMP_SRCDIR := $(shell echo $(SRCDIR) | sed 's/^\(.\):\//\/\1\//')
523 TMP_BASEDIRS := $(shell echo $(sort $(dir %(basenames))) | sed 's/\(.\):\//\/\1\//g')
524 TMP_DIRS := $(foreach dir, $(TMP_BASEDIRS), $(if $(filter /%,$(dir)),$(dir),$(TMP_SRCDIR)/$(CURDIR)/$(dir)))
525 ifneq ($(TMP_DIRS),)
526     TMP_DIRS := $(shell echo $(TMP_DIRS) | sed 's/\(.\):\//\/\1\//g')
527     vpath %.cpp $(TMP_DIRS)
528 endif
530 endif
532 # Define the use of cross compiler
533 ifeq ($(TARGET_CXX),)
534   TMP_CC := $(CROSSTOOLSDIR)/$(AROS_TARGET_CPU)-aros-g++
535 else
536   TMP_CC := $(TARGET_CXX)
537 endif
539 ifeq ($(findstring %(compiler),host kernel target),)
540   $(error unknown compiler %(compiler))
541 endif
542 ifeq (%(compiler),target)
543 $(TMP_TARGETS) $(TMP_DTARGETS) : CMD:=$(TMP_CC) $(TARGET_CFLAGS)
544 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
545 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
546 endif
547 ifeq (%(compiler),host)
548 $(TMP_TARGETS) $(TMP_DTARGETS) : CMD:=$(HOST_CXX)
549 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE:=$(HOST_IQUOTE)
550 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
551 endif
552 ifeq (%(compiler),kernel)
553 $(TMP_TARGETS) $(TMP_DTARGETS) : CMD:=$(KERNEL_CXX) $(KERNEL_CFLAGS)
554 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE:=$(KERNEL_IQUOTE)
555 $(TMP_TARGETS) $(TMP_DTARGETS) : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
556 endif
558 $(TMP_TARGETS) : CFLAGS := $(TMP_CXXFLAGS)
559 $(TMP_TARGETS) : $(TMP_WILDCARD).o : %.cpp
560         %compile_q cmd=$(CMD) iquote=$(TMP_IQUOTE) iquote_end=$(TMP_IQUOTE_END)
562 ifeq (%(dflags),)
563 $(TMP_DTARGETS) : DFLAGS:=%(cflags)
564 else
565 $(TMP_DTARGETS) : DFLAGS:=%(dflags)
566 endif
567 $(TMP_DTARGETS) : $(TMP_WILDCARD).d : %.cpp
568         %mkdepend_q cc=$(CMD) flags=$(DFLAGS)
569 %end
570 #------------------------------------------------------------------------------
573 #------------------------------------------------------------------------------
574 # Make an alias from one arch specific build to another arch.
575 # arguments:
576 # - mainmmake: the mmake of the module in the main tree
577 # - arch: the current arch
578 # - alias: the alias to which this should point
579 %define rule_archalias mainmmake=\A arch=\A alias=\A
581 #MM- %(mainmmake)-%(arch) : %(mainmmake)-%(alias)
582 %end
583 #------------------------------------------------------------------------------
586 #------------------------------------------------------------------------------
587 # Generate a rule to compile a C source file to a shared object file with a
588 # .so suffix. Basename may contain a directory part, then the source
589 # file has to be in that directory. The generated file will be put in the
590 # object directory without the directory.
591 # options
592 # - basename: the basename of the file to compile. Use % for a wildcard rule
593 # - cflags (default $(CFLAGS)): the C flags to use for compilation
594 # - targetdir: the directory to put the .o file and the .d file. By default
595 #   it is put in the same directory as the .c file
596 %define rule_compile_shared basename=/A cflags=$(CFLAGS) targetdir= compiler=target
598 ifeq (%(targetdir),)
599   TMP_TARGETBASE := %(basename)
600 else
601   TMP_TARGETBASE := %(targetdir)/$(notdir %(basename))
602 endif
604 ifeq ($(findstring %(compiler),host kernel target),)
605   $(error unknown compiler %(compiler))
606 endif
607 ifeq (%(compiler),target)
608 $(TMP_TARGETBASE).so : TMP_CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
609 $(TMP_TARGETBASE).so : TMP_IQUOTE:=$(CFLAGS_IQUOTE)
610 $(TMP_TARGETBASE).so : TMP_IQUOTE_END:=$(CFLAGS_IQUOTE_END)
611 endif
612 ifeq (%(compiler),host)
613 $(TMP_TARGETBASE).so : TMP_CMD:=$(HOST_CC)
614 $(TMP_TARGETBASE).so : TMP_IQUOTE:=$(HOST_IQUOTE)
615 $(TMP_TARGETBASE).so : TMP_IQUOTE_END:=$(HOST_IQUOTE_END)
616 endif
617 ifeq (%(compiler),kernel)
618 $(TMP_TARGETBASE).so : TMP_CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
619 $(TMP_TARGETBASE).so : TMP_IQUOTE:=$(KERNEL_IQUOTE)
620 $(TMP_TARGETBASE).so : TMP_IQUOTE_END:=$(KERNEL_IQUOTE_END)
621 endif
623 $(TMP_TARGETBASE).so : %(basename).c
624         %compile_q opt="$(SHARED_CFLAGS) %(cflags)" cmd=$(TMP_CMD) iquote=$(TMP_IQUOTE) iquote_end=$(TMP_IQUOTE_END)
625 %end
626 #------------------------------------------------------------------------------
629 #------------------------------------------------------------------------------
630 # Generate a rule to assemble a source file to an object file. Basename may
631 # contain a directory part, then the source file has to be in that directory.
632 # The generated file will be put in the object directory without the directory.
633 # options
634 # - basename: the basename of the file to compile. Use % for a wildcard rule
635 # - flags (default $(AFLAGS)): the asm flags to use for assembling
636 # - targetdir: the directory to put the .o file in. By default it is put in the
637 #   same directory as the .s file
638 %define rule_assemble basename=/A aflags=$(AFLAGS) targetdir=
640 ifeq (%(targetdir),)
641 %(basename).o : AFLAGS := %(aflags)
642 %(basename).o : %(basename).s
643         %assemble_q
644 %(basename).o : %(basename).S
645         %assemble_q
647 else
648 %(targetdir)/$(notdir %(basename)).o : AFLAGS := %(aflags)
649 %(targetdir)/$(notdir %(basename)).o : %(basename).s
650         %assemble_q
651 %(targetdir)/$(notdir %(basename)).o : %(basename).S
652         %assemble_q
654 endif
655 %end
656 #------------------------------------------------------------------------------
659 #------------------------------------------------------------------------------
660 # Generate a rule to assemble multiple source files to an object file. The
661 # generated file will be put in the object directory with the directory part
662 # of the source file stripped off.
663 # options
664 # - basenames: the basenames of the files to compile. The names may include
665 #   relative or absolute path names. No wildcard is allowed
666 # - aflags (default $(AFLAGS)): the flags to use for assembly
667 # - targetdir: the directory to put the .o file and the .d file. By default
668 #   it is put in the same directory as the .c file. When targetdir is not
669 #   empty, path names will be stripped from the file names so that all files
670 #   are in that dir and not in subdirectories.
671 %define rule_assemble_multi basenames=/A aflags=$(AFLAGS) targetdir= suffix=.s compiler=target
673 ifeq (%(targetdir),)
674 TMP_TARGETS := $(addsuffix .o,%(basenames))
675 TMP_WILDCARD := %
676 else
677 TMP_TARGETS := $(addsuffix .o,$(addprefix %(targetdir)/,$(notdir %(basenames))))
678 TMP_WILDCARD := %(targetdir)/%
680 # Be sure that all .s files are generated
681 $(TMP_TARGETS) : | $(addsuffix %(suffix),%(basenames))
683 # Be sure that all .c files are found
684 TMP_SRCDIR := $(shell echo $(SRCDIR) | sed 's/^\(.\):\//\/\1\//')
685 TMP_BASEDIRS := $(shell echo $(sort $(dir %(basenames))) | sed 's/\(.\):\//\/\1\//g')
686 TMP_DIRS := $(foreach dir, $(TMP_BASEDIRS), $(if $(filter /%,$(dir)),$(dir),$(TMP_SRCDIR)/$(CURDIR)/$(dir)))
687 ifneq ($(TMP_DIRS),)
688     TMP_DIRS := $(shell echo $(TMP_DIRS) | sed 's/\(.\):\//\/\1\//g')
689     vpath %%(suffix) $(TMP_DIRS)
690 endif
692 endif
694 ifeq ($(findstring %(compiler),host kernel target),)
695   $(error unknown compiler %(compiler))
696 endif
697 ifeq (%(compiler),target)
698 $(TMP_TARGETS) : TMP_CMD:=$(TARGET_CC) $(TARGET_CFLAGS)
699 endif
700 ifeq (%(compiler),host)
701 $(TMP_TARGETS) : TMP_CMD:=$(HOST_CC)
702 endif
703 ifeq (%(compiler),kernel)
704 $(TMP_TARGETS) : TMP_CMD:=$(KERNEL_CC) $(KERNEL_CFLAGS)
705 endif
707 $(TMP_TARGETS) : AFLAGS := %(aflags)
708 $(TMP_TARGETS) : $(TMP_WILDCARD).o : %%(suffix)
709         %assemble_q cmd=$(TMP_CMD) opt=$(AFLAGS)
710 %end
711 #------------------------------------------------------------------------------
714 #------------------------------------------------------------------------------
715 # Link %(objs) to %(prog) using the libraries in %(uselibs)
716 %define rule_link_prog prog=/A objs=/A ldflags=$(LDFLAGS) uselibs= \
717     usehostlibs= usestartup=yes detach=no nix=no linker=target
719 TMP_EXTRA_LDFLAGS := 
720 ifeq (%(nix),yes)
721     TMP_EXTRA_LDFLAGS += $(NIX_LDFLAGS)
722 endif
723 ifeq (%(usestartup),no)
724     TMP_EXTRA_LDFLAGS += $(NOSTARTUP_LDFLAGS)
725 endif
726 ifeq (%(detach),yes)
727     TMP_EXTRA_LDFLAGS += $(DETACH_LDFLAGS)
728 endif
730 # Make a list of the lib files this program depends on.
731 # In LDFLAGS remove white space between -L and directory
732 TMP_DIRS := $(subst -L ,-L,$(strip %(ldflags)))
733 # Filter out only the libdirs and remove -L
734 TMP_DIRS := $(patsubst -L%,%,$(filter -L%,$(TMP_DIRS)))
735 # Add trailing /
736 TMP_DIRS := $(subst //,/,$(addsuffix /,$(TMP_DIRS)))
737 # Add normal linklib path
738 TMP_DIRS += $(LIBDIR)/
739 # add lib and .a to static linklib names
740 TMP_LIBS := $(addprefix lib,$(addsuffix .a,%(uselibs) libinit autoinit))
741 # search for the linklibs in the given path, ignore ones not found
742 TMP_DEPLIBS := $(foreach lib,$(TMP_LIBS), \
743     $(firstword $(wildcard $(addsuffix $(lib),$(TMP_DIRS)))) \
746 ifeq (%(linker),target)
747 %(prog) : CMD:=$(TARGET_CC)
748 %(prog) : STRIPCMD:=$(TARGET_STRIP)
749 endif
750 ifeq (%(linker),host)
751 %(prog) : CMD:=$(HOST_CC)
752 %(prog) : STRIPCMD:=$(HOST_STRIP)
753 endif
754 ifeq (%(linker),kernel)
755 %(prog) : CMD:=$(KERNEL_CC) $(KERNEL_LDFLAGS)
756 %(prog) : STRIPCMD:=$(ECHO) >/dev/null
757 endif
759 %(prog) : OBJS := %(objs)
760 %(prog) : LDFLAGS := %(ldflags) $(TMP_EXTRA_LDFLAGS)
761 %(prog) : LIBS := $(addprefix -l,%(uselibs)) $(addprefix -l,%(usehostlibs))
762 %(prog) : %(objs) $(TMP_DEPLIBS)
763         %link_q from=$(OBJS) opt=$(LDFLAGS) libs=$(LIBS) cmd=$(CMD) strip=$(STRIPCMD)
764 %end
765 #------------------------------------------------------------------------------
768 #------------------------------------------------------------------------------
769 # Link %(progs) from object in %(objdir) to executables in %(targetdir) using
770 # the AROS libraries in %(uselibs) and the host libraries in %(usehostlibs)
771 %define rule_link_progs progs=/A targetdir=$(AROSDIR)/$(CURDIR) nix=%(nix) \
772     objdir=$(GENDIR)/$(CURDIR) ldflags=$(LDFLAGS) uselibs= usehostlibs= \
773     usestartup=yes detach=no
775 TMP_EXTRA_LDFLAGS := 
776 ifeq (%(nix),yes)
777     TMP_EXTRA_LDFLAGS += $(NIX_LDFLAGS)
778 endif
779 ifeq (%(usestartup),no)
780     TMP_EXTRA_LDFLAGS += $(NOSTARTUP_LDFLAGS)
781 endif
782 ifeq (%(detach),yes)
783     TMP_EXTRA_LDFLAGS += $(DETACH_LDFLAGS)
784 endif
786 # Make a list of the lib files the programs depend on.
787 # In LDFLAGS remove white space between -L and directory
788 TMP_DIRS := $(subst -L ,-L,$(strip %(ldflags)))
789 # Filter out only the libdirs and remove -L
790 TMP_DIRS := $(patsubst -L%,%,$(filter -L%,$(TMP_DIRS)))
791 # Add trailing /
792 TMP_DIRS := $(subst //,/,$(addsuffix /,$(TMP_DIRS)))
793 # Add normal linklib path
794 TMP_DIRS += $(LIBDIR)/
795 # add lib and .a to static linklib names
796 TMP_LIBS := $(addprefix lib,$(addsuffix .a,%(uselibs) libinit autoinit))
797 # search for the linklibs in the given path, ignore ones not found
798 TMP_DEPLIBS := $(foreach lib,$(TMP_LIBS), \
799     $(firstword $(wildcard $(addsuffix $(lib),$(TMP_DIRS)))) \
802 $(addprefix %(targetdir)/,%(progs)) : LDFLAGS:= %(ldflags) $(TMP_EXTRA_LDFLAGS)
803 $(addprefix %(targetdir)/,%(progs)) : LIBS:= $(addprefix -l,%(uselibs)) $(addprefix -l,%(usehostlibs))
804 $(addprefix %(targetdir)/,%(progs)) : %(targetdir)/% : %(objdir)/%.o $(TMP_DEPLIBS)
805         %link_q from=$< opt=$(LDFLAGS) libs=$(LIBS)
806 %end
807 #------------------------------------------------------------------------------
810 #------------------------------------------------------------------------------
811 # Link the %(objs) to the library %(libdir)/lib%(libname).a
812 %define rule_link_linklib libname=/A objs=/A libdir=$(LIBDIR) linker=target
814 ifeq (%(linker),target)
815 %(libdir)/lib%(libname).a : TMP_AR:=$(AR)
816 %(libdir)/lib%(libname).a : TMP_RANLIB:=$(RANLIB)
817 endif
818 ifeq (%(linker),host)
819 %(libdir)/lib%(libname).a : TMP_AR:=$(HOST_AR)
820 %(libdir)/lib%(libname).a : TMP_RANLIB:=$(HOST_RANLIB)
821 endif
822 ifeq (%(linker),kernel)
823 %(libdir)/lib%(libname).a : TMP_AR:=$(KERNEL_AR)
824 %(libdir)/lib%(libname).a : TMP_RANLIB:=$(KERNEL_RANLIB)
825 endif
827 %(libdir)/lib%(libname).a : %(objs)
828         %mklib_q from=$^ ar=$(TMP_AR) ranlib=$(TMP_RANLIB)
829 %end
830 #------------------------------------------------------------------------------
833 #------------------------------------------------------------------------------
834 # Link the %(objs) to the library %(libdir)/lib%(libname).so
835 %define rule_link_shlib libname=/A objs=/A libdir=$(LIBDIR)
837 %(libdir)/lib%(libname).so : %(objs)
838         @$(SHARED_LD) $(SHARED_LDFLAGS) -o $@ $^
839 %end
840 #------------------------------------------------------------------------------
843 #------------------------------------------------------------------------------
844 # Link the %(objs) and %(endobj) to %(module) with errors in %(err) and using
845 # the libraries in %(uselibs) and the host libraries in %(usehostlibs)
846 # The -noarosc flag is added so that modules are not linked with arosc.library
847 # (see /config/specs.in file)
848 %define rule_linkmodule module=/A objs=/A endobj=/A err=/A objdir=$(OBJDIR) \
849     ldflags=$(LDFLAGS) uselibs= usehostlibs=
851 TMP_LDFLAGS  := %(ldflags)
852 # Make a list of the lib files the programs depend on.
853 # In LDFLAGS remove white space between -L and directory
854 TMP_DIRS := $(subst -L ,-L,$(strip $(TMP_LDFLAGS)))
855 # Filter out only the libdirs and remove -L
856 TMP_DIRS := $(patsubst -L%,%,$(filter -L%,$(TMP_DIRS)))
857 # Add trailing /
858 TMP_DIRS := $(subst //,/,$(addsuffix /,$(TMP_DIRS)))
859 # Add normal linklib path
860 TMP_DIRS += $(LIBDIR)/
861 # add lib and .a to static linklib names
862 TMP_LIBS := $(addprefix lib,$(addsuffix .a,%(uselibs) libinit autoinit))
863 # search for the linklibs in the given path, ignore ones not found
864 TMP_DEPLIBS := $(foreach lib,$(TMP_LIBS), \
865     $(firstword $(wildcard $(addsuffix $(lib),$(TMP_DIRS)))) \
868 %(module) : LIB_NAMES := %(uselibs)
869 %(module) : OBJS := %(objs)
870 %(module) : ENDTAG := %(endobj)
871 %(module) : ERR := %(err)
872 %(module) : OBJDIR := %(objdir)
873 %(module) : LDFLAGS := $(TMP_LDFLAGS)
874 %(module) : LIBS := $(addprefix -l,$(LIB_NAMES)) \
875                     -L/usr/lib $(addprefix -l,%(usehostlibs))
876 %(module) : %(objs) %(endobj) $(TMP_DEPLIBS) $(USER_DEPLIBS)
877         %link_module_q err=$(ERR) endtag=$(ENDTAG) objs=$(OBJS) libs=$(LIBS) objdir=$(OBJDIR) ldflags="$(LDFLAGS) -noarosc"
879 %end
880 #------------------------------------------------------------------------------
883 #------------------------------------------------------------------------------
884 # Generate the libdefs.h include file for a module.
885 %define rule_genmodule_genlibdefs modname=/A modtype=/A modsuffix= conffile= targetdir= version=
887 TMP_TARGET := %(modname)_libdefs.h
888 TMP_DEPS := $(GENMODULE)
889 TMP_OPTS := 
890 ifneq (%(conffile),)
891     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(conffile)
892     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(conffile)
893 else
894     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(modname).conf
895     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(modname).conf
896 endif
897 ifneq (%(modsuffix),)
898     TMP_OPTS += -s %(modsuffix)
899 endif
900 ifneq (%(targetdir),)
901     TMP_OPTS += -d %(targetdir)
902     TMP_TARGET := %(targetdir)/$(TMP_TARGET)
903 endif
904 ifneq (%(version),)
905     TMP_OPTS += -v %(version)
906 endif
908 $(TMP_TARGET) : OPTS := $(TMP_OPTS)
909 $(TMP_TARGET) : MODNAME := %(modname)
910 $(TMP_TARGET) : MODTYPE := %(modtype)
911 $(TMP_TARGET) : $(TMP_DEPS)
912         @$(ECHO) "Generating $(subst $(TARGETDIR)/,,$@)"
913         @$(GENMODULE) $(OPTS) writelibdefs $(MODNAME) $(MODTYPE)
914 %end
915 #------------------------------------------------------------------------------
917 #------------------------------------------------------------------------------
918 # Generate the _lib.fd file for a module.
919 %define rule_genmodule_fd modname=/A modtype=/A modsuffix= conffile= targetdir=
921 TMP_TARGET := %(modname)_lib.fd
922 TMP_DEPS := $(GENMODULE)
923 TMP_OPTS := 
924 ifneq (%(conffile),)
925     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(conffile)
926     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(conffile)
927 else
928     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(modname).conf
929     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(modname).conf
930 endif
931 ifneq (%(modsuffix),)
932     TMP_OPTS += -s %(modsuffix)
933 endif
934 ifneq (%(targetdir),)
935     TMP_OPTS += -d %(targetdir)
936     TMP_TARGET := %(targetdir)/$(TMP_TARGET)
937 endif
939 $(TMP_TARGET) : OPTS := $(TMP_OPTS)
940 $(TMP_TARGET) : MODNAME := %(modname)
941 $(TMP_TARGET) : MODTYPE := %(modtype)
942 $(TMP_TARGET) : $(TMP_DEPS)
943         @$(ECHO) "Generating $(subst $(TARGETDIR)/,,$@)"
944         @$(GENMODULE) $(OPTS) writefd $(MODNAME) $(MODTYPE)
945 %end
946 #------------------------------------------------------------------------------
948 #------------------------------------------------------------------------------
949 # Generate a Makefile.%(modname) with the genmodule program and include this
950 # generated file in this Makefile
951 %define rule_genmodule_makefile modname=/A modtype=/A modsuffix= conffile= \
952     targetdir=
954 TMP_TARGET := Makefile.%(modname)
955 TMP_DEPS := $(GENMODULE)
956 TMP_OPTS := 
957 ifneq (%(conffile),)
958     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(conffile)
959     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(conffile)
960 else
961     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(modname).conf
962     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(modname).conf
963 endif
964 ifneq (%(modsuffix),)
965     TMP_OPTS += -s %(modsuffix)
966 endif
967 ifneq (%(targetdir),)
968     TMP_OPTS += -d %(targetdir)
969     TMP_TARGET := %(targetdir)/$(TMP_TARGET)
970 endif
972 $(TMP_TARGET) : OPTS := $(TMP_OPTS)
973 $(TMP_TARGET) : MODNAME := %(modname)
974 $(TMP_TARGET) : MODTYPE := %(modtype)
975 $(TMP_TARGET) : $(TMP_DEPS)
976         @$(GENMODULE) $(OPTS) writemakefile $(MODNAME) $(MODTYPE)
977 %end
978 #------------------------------------------------------------------------------
981 #------------------------------------------------------------------------------
982 # Generate the support files for compiling a module. This includes include
983 # files and source files. This rule has to be preceeded by
984 # %rule_genmodule_makefile
985 %define rule_genmodule_files modname=/A modtype=/A modsuffix= targetdir= \
986     conffile=
988 TMP_TARGETS := $(%(modname)_STARTFILES) $(%(modname)_ENDFILES) \
989                $(%(modname)_LINKLIBFILES) $(%(modname)_RELLINKLIBFILES)
990 TMP_TARGETS := $(addsuffix .c,$(TMP_TARGETS)) \
991                $(addsuffix .S, $(%(modname)_LINKLIBAFILES) $(%(modname)_RELLINKLIBAFILES))
993 TMP_DEPS := $(GENMODULE)
994 TMP_OPTS :=
996 ifneq (%(conffile),)
997     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(conffile)
998     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(conffile)
999 else
1000     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(modname).conf
1001     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(modname).conf
1002 endif
1003 ifneq (%(modsuffix),)
1004     TMP_OPTS += -s %(modsuffix)
1005 endif
1006 ifneq (%(targetdir),)
1007     TMP_OPTS += -d %(targetdir)
1008     TMP_TARGETDIR := $(shell echo %(targetdir) | sed 's/^\(.\):\//\/\1\//')
1009     TMP_TARGETS := $(addprefix $(TMP_TARGETDIR)/,$(TMP_TARGETS))
1010 endif
1012 $(TMP_TARGETS) : OPTS := $(TMP_OPTS)
1013 $(TMP_TARGETS) : MODNAME := %(modname)
1014 $(TMP_TARGETS) : MODTYPE := %(modtype)
1015 $(TMP_TARGETS) : $(TMP_DEPS)
1016         @$(ECHO) "Generating support files for module $(MODNAME$(BDID))"
1017 ifneq (%(conffile),lib.conf)
1018         @$(IF) $(TEST) -f lib.conf; then \
1019           $(ECHO) "WARNING !!! $(CURDIR)/lib.conf may probably be removed"; \
1020         fi
1021 endif
1022         @$(IF) $(TEST) -f libdefs.h; then \
1023           $(ECHO) "WARNING !!! $(CURDIR)/libdefs.h may probably be removed"; \
1024         fi
1025         @$(GENMODULE) $(OPTS) writefiles $(MODNAME) $(MODTYPE)
1026 %end
1027 #------------------------------------------------------------------------------
1030 #------------------------------------------------------------------------------
1031 # Generate the support files for compiling a module. This includes include
1032 # files and source files.
1033 %define rule_genmodule_includes modname=/A modtype=/A modsuffix= \
1034     targetdir= conffile=
1036 ifneq ($(%(modname)_INCLUDES),)
1037 TMP_TARGETS := $(%(modname)_INCLUDES)
1039 TMP_DEPS := $(GENMODULE)
1040 TMP_OPTS :=
1042 ifneq (%(conffile),)
1043     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(conffile)
1044     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(conffile)
1045 else
1046     TMP_OPTS += -c $(SRCDIR)/$(CURDIR)/%(modname).conf
1047     TMP_DEPS += $(SRCDIR)/$(CURDIR)/%(modname).conf
1048 endif
1049 ifneq (%(modsuffix),)
1050     TMP_OPTS += -s %(modsuffix)
1051 endif
1052 ifneq (%(targetdir),)
1053     TMP_OPTS += -d %(targetdir)
1054     TMP_TARGETS := $(addprefix %(targetdir)/,$(TMP_TARGETS))
1055 endif
1057 $(TMP_TARGETS) : OPTS := $(TMP_OPTS)
1058 $(TMP_TARGETS) : MODNAME := %(modname)
1059 $(TMP_TARGETS) : MODTYPE := %(modtype)
1060 $(TMP_TARGETS) : $(TMP_DEPS)
1061         @$(ECHO) "Generating include files"
1062         @$(GENMODULE) $(OPTS) writeincludes $(MODNAME) $(MODTYPE)
1063 endif
1064 %end
1065 #------------------------------------------------------------------------------
1068 #------------------------------------------------------------------------------
1069 # Common rules for all makefiles
1070 %define common
1071 # Delete generated makefiles
1073 clean ::
1074         @$(RM) $(TOP)/$(CURDIR)/mmakefile $(TOP)/$(CURDIR)/mmakefile.bak
1076 include $(SRCDIR)/config/make.tail
1078 BDID := $(BDTARGETID)
1079 %end
1080 #------------------------------------------------------------------------------
1081       
1083 #############################################################################
1084 #############################################################################
1085 ##                                                                         ##
1086 ## Here are the mmakefile build macros. These are macros that takes care   ##
1087 ## of everything to go from the sources to the generated target. Also all  ##
1088 ## intermediate files and directories that are needed are created by these ##
1089 ## rules.                                                                  ##
1090 ##                                                                         ##
1091 #############################################################################
1092 #############################################################################
1094 #------------------------------------------------------------------------------
1095 # Build a program
1096 %define build_prog mmake=/A progname=/A files=$(BD_PROGNAME) cxxfiles= \
1097     asmfiles= objdir=$(GENDIR)/$(CURDIR) targetdir=$(AROSDIR)/$(CURDIR) \
1098     cflags=$(CFLAGS) dflags=$(BD_CFLAGS) ldflags=$(LDFLAGS) \
1099     aflags=$(AFLAGS) uselibs= usehostlibs= usestartup=yes detach=no nix=no \
1100     compiler=target linker= srcdir=
1102 .PHONY : %(mmake)
1104 BD_PROGNAME  := %(progname)
1105 BD_OBJDIR    := %(objdir)
1106 BD_TARGETDIR := %(targetdir)
1107 BD_LINKER    := %(linker)
1109 # If not supplied, linker is equal to compiler
1110 ifeq ($(BD_LINKER),)
1111     BD_LINKER := %(compiler)
1112 endif
1114 BD_FILES     := %(files)
1115 BD_CXXFILES  := %(cxxfiles)
1116 BD_ASMFILES  := %(asmfiles)
1118 BD_ARCHOBJS   := $(wildcard $(BD_OBJDIR)/arch/*.o)
1119 BD_ARCHFILES  := $(basename $(notdir $(BD_ARCHOBJS)))
1120 BD_NARCHFILES := $(filter-out $(BD_ARCHFILES),$(BD_FILES))
1122 BD_OBJS := $(addsuffix .o,$(addprefix $(BD_OBJDIR)/,$(BD_NARCHFILES) $(BD_CXXFILES) $(BD_ASMFILES)))
1123 BD_DEPS := $(addsuffix .d,$(addprefix $(BD_OBJDIR)/,$(BD_NARCHFILES) $(BD_CXXFILES)))
1125 BD_CFLAGS    := %(cflags)
1126 BD_AFLAGS    := %(aflags)
1127 BD_DFLAGS    := %(dflags)
1128 BD_LDFLAGS   := %(ldflags)
1131 %(mmake)-quick : %(mmake)
1133 #MM %(mmake) : includes-generate-deps core-linklibs linklibs-%(uselibs)
1134 %(mmake) : $(BD_TARGETDIR)/$(BD_PROGNAME)
1136 ifneq ($(filter $(TARGET),%(mmake) %(mmake)-quick %(mmake)-gz-quick),)
1137 %rule_compile basename=%(srcdir)% targetdir=$(BD_OBJDIR) \
1138     cflags=$(BD_CFLAGS) dflags=$(BD_DFLAGS) compiler=%(compiler)
1139 %rule_compile_cxx_multi basenames=$(BD_CXXFILES) targetdir=$(BD_OBJDIR) \
1140     cflags=$(BD_CFLAGS) dflags=$(BD_DFLAGS) compiler=%(compiler)
1141 %rule_assemble_multi basenames=$(BD_ASMFILES) targetdir=$(BD_OBJDIR) \
1142     aflags=$(BD_AFLAGS) compiler=%(compiler)
1144 %rule_link_prog prog=$(BD_TARGETDIR)/$(BD_PROGNAME) \
1145     objs="$(BD_OBJS) $(BD_ARCHOBJS) $(USER_OBJS)" ldflags=$(BD_LDFLAGS) \
1146     uselibs="%(uselibs)" usehostlibs="%(usehostlibs)" \
1147     usestartup="%(usestartup)" detach="%(detach)" nix="%(nix)" \
1148     linker=$(BD_LINKER)
1150 endif
1152 %include_deps depstargets="%(mmake) %(mmake)-quick" deps=$(BD_DEPS)
1154 $(BD_OBJS) $(BD_DEPS) : | $(BD_OBJDIR)
1155 $(BD_TARGETDIR)/$(BD_PROGNAME) : | $(BD_TARGETDIR)
1156 GLOB_MKDIRS += $(BD_OBJDIR) $(BD_TARGETDIR)
1158 %(mmake)-clean : FILES := $(BD_OBJS) $(BD_TARGETDIR)/$(BD_PROGNAME) $(BD_DEPS)
1160 %(mmake)-clean ::
1161         @$(ECHO) "Cleaning up for metatarget %(mmake)"
1162         @$(RM) $(FILES)
1164 %end
1165 #------------------------------------------------------------------------------
1168 #------------------------------------------------------------------------------
1169 # Build programs, for every C file an executable will be built with the same
1170 # name as the C file
1171 %define build_progs mmake=/A files=/A nix=no \
1172     objdir=$(GENDIR)/$(CURDIR) targetdir=$(AROSDIR)/$(CURDIR) \
1173     cflags=$(CFLAGS) dflags=$(BD_CFLAGS) ldflags=$(LDFLAGS) \
1174     uselibs= usehostlibs= usestartup=yes detach=no
1176 .PHONY : %(mmake)
1178 BD_OBJDIR    := %(objdir)
1179 BD_TARGETDIR := %(targetdir)
1181 BD_FILES     := %(files)
1182 BD_OBJS      := $(addsuffix .o,$(addprefix $(BD_OBJDIR)/,$(BD_FILES)))
1183 BD_DEPS      := $(addsuffix .d,$(addprefix $(BD_OBJDIR)/,$(BD_FILES)))
1184 BD_EXES      := $(addprefix $(BD_TARGETDIR)/,$(BD_FILES))
1186 BD_CFLAGS    := %(cflags)
1187 BD_DFLAGS    := %(dflags)
1188 BD_LDFLAGS   := %(ldflags)
1191 %(mmake)-quick : %(mmake)
1193 #MM %(mmake) : includes-generate-deps core-linklibs linklibs-%(uselibs)
1194 %(mmake) : $(BD_EXES)
1196 ifneq ($(filter $(TARGET),%(mmake) %(mmake)-quick),)
1197 %rule_compile basename=% targetdir=$(BD_OBJDIR) nix=%(nix) \
1198     cflags=$(BD_CFLAGS) dflags=$(BD_DFLAGS)
1200 %rule_link_progs progs=$(BD_FILES) nix=%(nix) \
1201     targetdir=$(BD_TARGETDIR) objdir=$(BD_OBJDIR) \
1202     ldflags=$(BD_LDFLAGS) \
1203     uselibs="%(uselibs)" usehostlibs="%(usehostlibs)" \
1204     usestartup="%(usestartup)" detach="%(detach)"
1206 endif
1208 %include_deps depstargets="%(mmake) %(mmake)-quick" deps=$(BD_DEPS)
1210 $(addprefix $(BD_TARGETDIR)/,$(BD_FILES)) : | $(BD_TARGETDIR)
1211 $(BD_DEPS) $(BD_OBJS) : | $(BD_OBJDIR)
1212 GLOB_MKDIRS += $(BD_TARGETDIR) $(BD_OBJDIR)
1214 %(mmake)-clean : FILES := $(BD_OBJS) $(BD_EXES) $(BD_DEPS)
1216 %(mmake)-clean ::
1217         @$(ECHO) "Cleaning up for metatarget %(mmake)"
1218         @$(RM) $(FILES)
1220 %end
1221 #------------------------------------------------------------------------------
1224 #------------------------------------------------------------------------------
1225 # Build a module.
1226 # This is a bare version: It just compiles and links the given files. It is
1227 # assumed that all needed boiler plate code is in the files. This should only
1228 # be used for compiling external code. For AROS code use %build_module
1229 %define build_module_simple mmake=/A modname=/A modtype=/A \
1230     files="$(basename $(call WILDCARD, *.c))" \
1231     cflags=$(CFLAGS) dflags=$(BD_DEFDFLAGS) \
1232     objdir=$(OBJDIR) moduledir= \
1233     uselibs= usehostlibs= compiler=target
1235 # Define metamake targets and their dependencies
1236 #MM %(mmake) : core-linklibs includes-generate-deps
1237 #MM %(mmake)-kobj : core-linklibs includes-generate-deps
1238 #MM %(mmake)-pkg  : core-linklibs includes-generate-deps
1239 #MM %(mmake)-kobj-quick
1240 #MM %(mmake)-pkg-quick
1241 #MM %(mmake)-quick
1242 #MM %(mmake)-clean
1244 BD_ALLTARGETS := %(mmake) %(mmake)-clean %(mmake)-quick %(mmake)-kobj %(mmake)-pkg
1246 .PHONY : $(BD_ALLTARGETS)
1248 ifeq (%(modname),)
1249 $(error using %build_module_simple: modname may not be empty)
1250 endif
1251 ifeq (%(modtype),)
1252 $(error using %build_module_simple: $(MODTYPE) has to be defined with the type of the module)
1253 endif
1255 # Default values for variables and arguments
1256 BD_DEFLINKLIBNAME := %(modname)
1257 BD_DEFDFLAGS := %(cflags)
1258 OBJDIR ?= $(GENDIR)/$(CURDIR)
1259 BD_MODDIR := %(moduledir)
1260 ifeq ($(BD_MODDIR),)
1261   ifeq (%(modtype),library)
1262     BD_MODDIR  := $(AROS_LIBS)
1263   endif
1264   ifeq (%(modtype),gadget)
1265     BD_MODDIR  := $(AROS_GADGETS)
1266   endif
1267   ifeq (%(modtype),datatype)
1268     BD_MODDIR  := $(AROS_DATATYPES)
1269   endif
1270   ifeq (%(modtype),handler)
1271     BD_MODDIR  := $(AROS_FS)
1272   endif
1273   ifeq (%(modtype),device)
1274     BD_MODDIR  := $(AROS_DEVS)
1275   endif
1276   ifeq (%(modtype),resource)
1277     BD_MODDIR  := $(AROS_RESOURCES)
1278   endif
1279   ifeq (%(modtype),hook)
1280     BD_MODDIR  := $(AROS_RESOURCES)
1281   endif
1282   ifeq (%(modtype),mui)
1283     BD_MODDIR  := $(AROS_CLASSES)/Zune
1284   endif
1285   ifeq (%(modtype),mcc)
1286     BD_MODDIR  := $(AROS_CLASSES)/Zune
1287   endif
1288   ifeq (%(modtype),mcp)
1289     BD_MODDIR  := $(AROS_CLASSES)/Zune
1290   endif
1291   ifeq (%(modtype),usbclass)
1292     BD_MODDIR  := $(AROS_CLASSES)/USB
1293   endif
1294   ifeq (%(modtype),hidd)
1295     BD_MODDIR  := $(AROS_DRIVERS)
1296   endif
1297   ifeq (%(modtype),printer)
1298     BD_MODDIR  := $(AROS_PRINTERS)
1299   endif
1300 endif
1301 ifeq ($(BD_MODDIR),)
1302   $(error Don't know where to put the file for modtype %(modtype). Specify moduledir=)
1303 endif
1305 BD_ARCHOBJS   := $(wildcard %(objdir)/arch/*.o)
1306 BD_ARCHFILES  := $(basename $(notdir $(BD_ARCHOBJS)))
1307 BD_NARCHFILES := $(filter-out $(BD_ARCHFILES),%(files))
1309 %rule_compile_multi \
1310     basenames="$(BD_NARCHFILES)" targetdir="%(objdir)" \
1311     cflags="%(cflags)" dflags="%(dflags)" \
1312     compiler=%(compiler)
1314 # Handlers use dash instead of dot in their names
1315 ifeq (%(modtype),handler)
1316 BD_MODULE := $(BD_MODDIR)/%(modname)-%(modtype)
1317 BD_PKGMOD := $(PKGDIR)/%(modname)-%(modtype)
1318 else
1319 ifeq (%(modtype),printer)
1320 BD_MODULE := $(BD_MODDIR)/%(modname)
1321 BD_PKGMOD := $(PKGDIR)/%(modname)
1322 else
1323 BD_MODULE := $(BD_MODDIR)/%(modname).%(modtype)
1324 BD_PKGMOD := $(PKGDIR)/%(modname).%(modtype)
1325 endif
1326 endif
1327 BD_KOBJ   := $(KOBJSDIR)/%(modname)_%(modtype).o
1329 %(mmake)-quick : %(mmake)
1330 %(mmake)-pkg-quick  : $(BD_PKGMOD)
1331 %(mmake)-kobj-quick : $(BD_KOBJ)
1332 %(mmake)       : $(BD_MODULE)
1333 %(mmake)-pkg   : $(BD_PKGMOD)
1334 %(mmake)-kobj  : $(BD_KOBJ)
1336 # The module is linked from all the compiled .o files
1337 BD_OBJS       := $(BD_ARCHOBJS) $(addprefix %(objdir)/, $(addsuffix .o,$(notdir $(BD_NARCHFILES))))
1339 # Under Windows con* is a reserved name, it refers to console. Files with such names can't be created.
1340 # This breaks con-handler build. Here we work around this
1341 ifeq (%(modname),con)
1342     BD_ERR := $(notdir $(BD_MODULE)).err
1343 else
1344     BD_ERR := %(modname).err
1345 endif
1347 %rule_linkmodule module=$(BD_MODULE) objs=$(BD_OBJS) \
1348                  endobj= err=$(BD_ERR) objdir=%(objdir) \
1349                  uselibs="%(uselibs)" usehostlibs="%(usehostlibs)"
1351 %rule_linkmodule module=$(BD_PKGMOD) objs=$(BD_OBJS) \
1352                  endobj= err=$(BD_ERR) objdir=%(objdir) \
1353                  uselibs="%(uselibs)" usehostlibs="%(usehostlibs)"
1355 # Link kernel object file
1356 BD_KAUTOLIB := dos intuition layers graphics oop utility expansion keymap
1358 # Make these symbols local
1359 BD_KBASE := DOSBase IntuitionBase LayersBase GfxBase OOPBase \
1360             UtilityBase ExpansionBase KeymapBase KernelBase
1362 BD_SYMBOLS := $(BD_KBASE)
1364 BD_KLIB := hiddstubs amiga arossupport debug rom arosm autoinit libinit
1365 BD_KOBJ_LIBS := $(filter-out $(BD_KLIB),%(uselibs)) $(BD_KAUTOLIB)
1366 $(BD_KOBJ) : LINKLIBS:=$(BD_KOBJ_LIBS)
1367 $(BD_KOBJ) : FILTBASES:=$(addprefix -L ,$(BD_SYMBOLS))
1368 $(BD_KOBJ) : USER_LDFLAGS := $(USER_LDFLAGS)
1369 $(BD_KOBJ) : $(BD_OBJS) $(BD_ENDOBJS)
1370         @$(ECHO) "Linking    $(subst $(TARGETDIR)/,,$@)"
1371         @$(AROS_LD) -Ur -o $@ $^ $(USER_LDFLAGS) -L$(AROS_LIB) $(addprefix -l,$(LINKLIBS))
1372         @$(OBJCOPY) $@ $(FILTBASES) `$(NM_PLAIN) $@ | $(AWK) '($$3 ~ /^__.*_(LIST|END)__\r?$$/) || ($$3 ~ /^__aros_lib.*\r?$$/) {print "-L " $$3;}'`
1375 ## Dependency fine-tuning
1377 BD_DEPS       := $(addprefix %(objdir)/, $(addsuffix .d,%(files)))
1378 %include_deps depstargets="%(mmake) %(mmake)-quick %(mmake)-kobj %(mmake)-pkg" deps=$(BD_DEPS)
1380 $(BD_OBJS) $(BD_DEPS) : | %(objdir)
1381 $(BD_MODULE) : | $(BD_MODDIR)
1382 $(BD_KOBJ) : | $(KOBJSDIR)
1383 GLOB_MKDIRS += %(objdir) $(BD_MODDIR) $(KOBJSDIR)
1385 %(mmake)-clean : FILES := $(BD_OBJS) $(BD_MODULE) $(BD_KOBJ) $(BD_DEPS)
1386 %(mmake)-clean ::
1387         @$(ECHO) "Cleaning up for module %(modname)"
1388         @$(RM) $(FILES)
1389 %end
1390 #------------------------------------------------------------------------------
1393 #------------------------------------------------------------------------------
1394 # Build a module
1395 # Explanation of this macro is done in the developer's manual
1396 %define build_module mmake=/A modname=/A modtype=/A modsuffix= version= \
1397   conffile= files="$(basename $(call WILDCARD, *.c))" \
1398   linklibfiles= linklibobjs= cflags=$(CFLAGS) dflags=$(BD_DEFDFLAGS) \
1399   objdir=$(OBJDIR) moduledir=$(BD_DEFMODDIR) prefix=$(AROSDIR) \
1400   linklibname=$(BD_DEFLINKLIBNAME) uselibs= usehostlibs= \
1401   compiler=target nostartup=yes
1403 # Define metamake targets and their dependencies
1404 #MM- includes-all : %(mmake)-includes
1405 #MM- linklibs-%(modname): %(mmake)-linklib
1406 #MM- linklibs-%(modname)_rel : %(mmake)-linklib
1407 #MM- includes-%(modname): %(mmake)-includes
1408 #MM- includes-%(modname)_rel : %(mmake)-includes
1409 #MM %(mmake) : %(mmake)-includes core-linklibs linklibs-%(uselibs)
1410 #MM %(mmake)-kobj : %(mmake)-includes core-linklibs linklibs-%(uselibs)
1411 #MM %(mmake)-kobj-quick : %(mmake)-includes-quick
1412 #MM %(mmake)-pkg : %(mmake)-includes core-linklibs linklibs-%(uselibs)
1413 #MM %(mmake)-pkg-quick : %(mmake)-includes-quick
1414 #MM %(mmake)-linklib : %(mmake)-includes includes-%(uselibs)
1415 #MM %(mmake)-quick : %(mmake)-includes-quick
1416 #MM %(mmake)-includes : %(mmake)-makefile %(mmake)-includes-dirs \
1417 #MM     includes-generate-deps %(mmake)-fd
1418 #MM %(mmake)-includes-quick
1419 #MM %(mmake)-includes-dirs
1420 #MM %(mmake)-fd
1421 #MM %(mmake)-makefile
1422 #MM %(mmake)-clean
1424 # All MetaMake targets defined by this macro
1425 BD_ALLTARGETS := %(mmake) %(mmake)-quick %(mmake)-includes \
1426     %(mmake)-includes-quick %(mmake)-includes-dirs %(mmake)-clean \
1427     %(mmake)-kobj %(mmake)-kobj-quick %(mmake)-pkg %(mmake)-pkg-quick \
1428     %(mmake)-linklib %(mmake)-fd
1430 .PHONY : $(BD_ALLTARGETS) %(mmake)-makefile
1432 ifeq (%(modname),)
1433 $(error using %build_module: modname may not be empty)
1434 endif
1435 ifeq (%(modtype),)
1436 $(error using %build_module: $(MODTYPE) has to be defined with the type of the module)
1437 endif
1439 # Default values for variables and arguments
1440 BD_DEFLINKLIBNAME := %(modname)
1441 BD_DEFDFLAGS := %(cflags)
1442 OBJDIR ?= $(GENDIR)/$(CURDIR)
1444 ## Create genmodule include Makefile for the module
1446 %(mmake)-makefile : %(objdir)/Makefile.%(modname)
1448 %rule_genmodule_makefile \
1449     modname=%(modname) modtype=%(modtype) \
1450     modsuffix=%(modsuffix) targetdir=%(objdir) \
1451     conffile=%(conffile)
1453 %(objdir)/Makefile.%(modname) : | %(objdir)
1455 GLOB_MKDIRS += %(objdir)
1457 # Do not parse these statements if metatarget is not appropriate
1458 ifneq ($(filter $(TARGET),$(BD_ALLTARGETS)),)
1460 include %(objdir)/Makefile.%(modname)
1462 BD_DEFMODDIR := $(%(modname)_MODDIR)
1465 ## include files generation
1467 BD_INCDIR    := %(prefix)/$(AROS_DIR_INCLUDE)
1468 BD_LIBDEFSINC := %(objdir)/include/%(modname)_libdefs.h
1469 BD_DEFLIBDEFSINC := %(objdir)/include/%(modname)_deflibdefs.h
1471 %(mmake)-includes-quick : %(mmake)-includes
1472 %(mmake)-includes : $(addprefix $(GENINCDIR)/,$(%(modname)_INCLUDES)) \
1473     $(addprefix $(BD_INCDIR)/,$(%(modname)_INCLUDES)) \
1474     $(BD_LIBDEFSINC) $(BD_DEFLIBDEFSINC)
1476 ifneq ($(%(modname)_INCLUDES),)
1477 %rule_genmodule_includes modname=%(modname) modtype=%(modtype) \
1478                          modsuffix=%(modsuffix) targetdir=%(objdir)/include \
1479                          conffile=%(conffile)
1481 %rule_copy_diff_multi \
1482     files=$(%(modname)_INCLUDES) srcdir=%(objdir)/include targetdir=$(GENINCDIR) \
1483     stampfile=%(objdir)/%(modname)_geninc
1485 %rule_copy_diff_multi \
1486     files=$(%(modname)_INCLUDES) srcdir=%(objdir)/include targetdir=$(BD_INCDIR) \
1487     stampfile=%(objdir)/%(modname)_incs
1489 BD_INCDIRS := $(filter-out ./,$(sort $(dir $(%(modname)_INCLUDES))))
1491 TMP%(modname)_INCDIRS := \
1492     %(objdir)/include $(addprefix %(objdir)/include/,$(BD_INCDIRS)) \
1493     $(GENINCDIR) $(addprefix $(GENINCDIR)/,$(BD_INCDIRS)) \
1494     $(BD_INCDIR) $(addprefix $(BD_INCDIR)/,$(BD_INCDIRS))
1495 %rule_makedirs dirs=$(TMP%(modname)_INCDIRS) setuptarget=%(mmake)-includes-dirs
1497 endif
1499 %rule_genmodule_genlibdefs modname=%(modname) modtype=%(modtype) \
1500                            modsuffix=%(modsuffix) targetdir=%(objdir)/include \
1501                            conffile=%(conffile) version=%(version)
1503 $(BD_DEFLIBDEFSINC) : FILENAME := $(BD_LIBDEFSINC)
1504 $(BD_DEFLIBDEFSINC) :
1505         @$(ECHO) "generating $@"
1506         @$(ECHO) "#define LC_LIBDEFS_FILE \"$(FILENAME)\"" >$@
1508 $(BD_LIBDEFSINC) $(BD_DEFLIBDEFSINC) : | %(objdir)/include
1509 GLOB_MKDIRS += %(objdir)/include
1511 ## Extra genmodule src files generation
1512 ## 
1513 %rule_genmodule_files modname=%(modname) modtype=%(modtype) \
1514                       modsuffix=%(modsuffix) targetdir=%(objdir) \
1515                       conffile=%(conffile)
1518 ## Create FD file
1519 BD_FDDIR := $(AROS_DEVELOPMENT)/fd
1520 %(mmake)-fd : $(BD_FDDIR)/%(modname)_lib.fd
1522 %rule_genmodule_fd modname=%(modname) modtype=%(modtype) \
1523                    modsuffix=%(modsuffix) targetdir=$(BD_FDDIR) conffile=%(conffile)
1525 $(BD_FDDIR)/%(modname)_lib.fd : | $(BD_FDDIR)
1527 GLOB_MKDIRS += $(BD_FDDIR)
1530 ## Compilation
1532 BD_FILES      := %(files)
1533 BD_FDIRS      := $(sort $(dir $(BD_FILES)))
1534 BD_STARTFILES := $(addprefix %(objdir)/,$(%(modname)_STARTFILES))
1535 BD_ENDFILES   := $(addprefix %(objdir)/,$(%(modname)_ENDFILES))
1537 BD_ARCHOBJS   := $(wildcard %(objdir)/arch/*.o)
1538 BD_ARCHFILES  := $(basename $(notdir $(BD_ARCHOBJS)))
1539 BD_NARCHFILES := $(filter-out $(BD_ARCHFILES),$(BD_FILES))
1541 BD_CFLAGS     := %(cflags) -I%(objdir)/include -include $(BD_DEFLIBDEFSINC)
1542 BD_DFLAGS     := %(dflags) -I%(objdir)/include -include $(BD_DEFLIBDEFSINC)
1544 BD_LINKLIBCFILES := $(addprefix %(objdir)/,$(%(modname)_LINKLIBFILES))
1545 BD_LINKLIBAFILES := $(addprefix %(objdir)/,$(%(modname)_LINKLIBAFILES))
1546 ifeq ($(strip $(%(modname)_LINKLIBFILES) $(%(modname)_LINKLIBAFILES) %(linklibfiles)),)
1547     BD_LINKLIB :=
1548 else
1549     BD_LINKLIB := %(prefix)/$(AROS_DIR_LIB)/lib%(linklibname).a
1550 endif
1551 BD_LINKLIBFILES := $(BD_LINKLIBCFILES) $(BD_LINKLIBAFILES)
1553 BD_RELLINKLIBCFILES := $(addprefix %(objdir)/,$(%(modname)_RELLINKLIBFILES))
1554 BD_RELLINKLIBAFILES := $(addprefix %(objdir)/,$(%(modname)_RELLINKLIBAFILES))
1555 ifeq ($(strip $(%(modname)_RELLINKLIBFILES) $(%(modname)_RELLINKLIBAFILES) %(linklibfiles)),)
1556     BD_RELLINKLIB :=
1557 else
1558     BD_RELLINKLIB := %(prefix)/$(AROS_DIR_LIB)/lib%(linklibname)_rel.a
1559 endif
1560 BD_RELLINKLIBFILES := $(BD_RELLINKLIBCFILES) $(BD_RELLINKLIBAFILES)
1562 BD_CCFILES := $(BD_NARCHFILES) %(linklibfiles)
1563 BD_TARGETCCFILES := $(BD_STARTFILES) $(BD_ENDFILES) $(BD_LINKLIBCFILES) \
1564     $(BD_RELLINKLIBCFILES)
1566 %rule_compile_multi \
1567     basenames=$(BD_CCFILES) targetdir=%(objdir) \
1568     cflags=$(BD_CFLAGS) dflags=$(BD_DFLAGS) \
1569     compiler=%(compiler)
1570 %rule_compile_multi \
1571     basenames=$(BD_TARGETCCFILES) targetdir=%(objdir) \
1572     cflags="$(BD_CFLAGS) -D__AROS__" dflags=$(BD_DFLAGS) \
1573     compiler=%(compiler)
1575 ifneq ($(BD_LINKLIBAFILES),)
1576 %rule_assemble_multi \
1577     basenames="$(BD_LINKLIBAFILES) $(BD_RELLINKLIBAFILES)" targetdir=%(objdir) suffix=.S
1578 endif
1580 ## Linking
1582 ifeq (%(modsuffix),)
1583 BD_SUFFIX := %(modtype)
1584 else
1585 BD_SUFFIX := %(modsuffix)
1586 endif
1588 # Handlers use dash instead of dot in their names
1589 ifeq ($(BD_SUFFIX),handler)
1590 BD_MODULE := %(prefix)/%(moduledir)/%(modname)-$(BD_SUFFIX)
1591 BD_PKGMOD := $(PKGDIR)/%(modname)-$(BD_SUFFIX)
1592 else
1593 BD_MODULE := %(prefix)/%(moduledir)/%(modname).$(BD_SUFFIX)
1594 BD_PKGMOD := $(PKGDIR)/%(modname).$(BD_SUFFIX)
1595 endif
1596 BD_KOBJ   := $(KOBJSDIR)/%(modname)_$(BD_SUFFIX).o
1598 %(mmake)-quick      : %(mmake)
1599 %(mmake)            : $(BD_MODULE) $(BD_LINKLIB) $(BD_RELLINKLIB)
1600 %(mmake)-pkg        : $(BD_PKGMOD) $(BD_LINKLIB) $(BD_RELLINKLIB)
1601 %(mmake)-pkg-quick  : $(BD_PKGMOD) $(BD_LINKLIB) $(BD_RELLINKLIB)
1602 %(mmake)-kobj       : $(BD_KOBJ) $(BD_LINKLIB) $(BD_RELLINKLIB)
1603 %(mmake)-kobj-quick : $(BD_KOBJ) $(BD_LINKLIB) $(BD_RELLINKLIB)
1604 %(mmake)-linklib    : $(BD_LINKLIB) $(BD_RELLINKLIB)
1606 BD_OBJS       := $(addsuffix .o,$(BD_STARTFILES)) $(BD_ARCHOBJS) \
1607                  $(addsuffix .o, $(addprefix %(objdir)/,$(notdir $(BD_NARCHFILES))))
1609 ifeq (%(nostartup),yes)
1610 # Handlers always have entry point
1611 ifneq (%(modtype),handler)
1612 BD_STARTOBJS  := $(addsuffix .o,$(addprefix $(GENDIR)/,$(RESIDENT_BEGIN)))
1613 endif
1614 endif
1616 BD_ENDOBJS    := $(addsuffix .o,$(BD_ENDFILES))
1617 BD_LINKLIBOBJS:= $(addsuffix .o,$(addprefix %(objdir)/,$(notdir %(linklibfiles))) $(BD_LINKLIBFILES)) \
1618                  %(linklibobjs)
1619 BD_RELLINKLIBOBJS \
1620               := $(addsuffix .o,$(addprefix %(objdir)/,$(notdir %(linklibfiles))) $(BD_RELLINKLIBFILES)) \
1621                  %(linklibobjs)
1623 # Under Windows con* is a reserved name, it refers to console. Files with such names can't be created.
1624 # This breaks con-handler build. Here we work around this
1625 ifeq (%(modname),con)
1626     BD_ERR := $(notdir $(BD_MODULE)).err
1627 else
1628     BD_ERR := %(modname).err
1629 endif
1631 # The module is linked from all the compiled .o files
1632 %rule_linkmodule module=$(BD_MODULE) objs="$(BD_STARTOBJS) $(BD_OBJS) $(USER_OBJS)" \
1633                  endobj=$(BD_ENDOBJS) err=$(BD_ERR) objdir=%(objdir) \
1634                  uselibs="%(uselibs)" usehostlibs="%(usehostlibs)"
1636 %rule_linkmodule module=$(BD_PKGMOD) objs="$(BD_STARTOBJS) $(BD_OBJS) $(USER_OBJS)" \
1637                  endobj=$(BD_ENDOBJS) err=$(BD_ERR) objdir=%(objdir) \
1638                  uselibs="%(uselibs)" usehostlibs="%(usehostlibs)"
1640 # Link static lib
1641 ifneq ($(BD_LINKLIB),)
1642 %rule_link_linklib libname=%(linklibname) objs=$(BD_LINKLIBOBJS) libdir=%(prefix)/$(AROS_DIR_LIB)
1644 $(BD_LINKLIB) : | %(prefix)/$(AROS_DIR_LIB)
1645 GLOB_MKDIRS += %(prefix)/$(AROS_DIR_LIB)
1646 endif
1648 ifneq ($(BD_RELLINKLIB),)
1649 %rule_link_linklib libname=%(linklibname)_rel objs=$(BD_RELLINKLIBOBJS) libdir=%(prefix)/$(AROS_DIR_LIB)
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 debug rom arosm autoinit libinit
1665 BD_KOBJ_LIBS := $(filter-out $(BD_KLIB),%(uselibs)) $(BD_KAUTOLIB)
1666 $(BD_KOBJ) : LINKLIBS:=$(BD_KOBJ_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.
2344 %define build_with_configure mmake=/A package= srcdir=$(SRCDIR)/$(CURDIR) prefix= \
2345     aros_prefix= extraoptions= extracflags= nix_dir_layout= nix=no compiler=target \
2346     install_target=install preconfigure= postconfigure= postinstall= \
2347     install_env= use_build_env=no
2349 ifneq (%(prefix),)
2350     %(mmake)-prefix := %(prefix)
2351 else
2352     %(mmake)-prefix := $(AROS_CONTRIB)
2353 endif
2355 ifneq (%(aros_prefix),)
2356     %(mmake)-aros_prefix := %(aros_prefix)
2357 else
2358     %(mmake)-aros_prefix := $(%(mmake)-prefix)
2359 endif
2361 ifeq (%(nix),yes)
2362     %(mmake)-nix    := -nix
2363     %(mmake)-volpfx := /
2364     %(mmake)-volsfx := /
2365     
2366     ifeq (%(nix_dir_layout),)
2367         %(mmake)-nix_dir_layout := yes
2368     endif
2369 else
2370     %(mmake)-volsfx := :
2371     
2372     ifeq (%(nix_dir_layout),)
2373         %(mmake)-nix_dir_layout := no
2374     endif
2375 endif
2377 %(mmake)-volfunc = $(%(mmake)-volpfx)$(notdir $1)$(%(mmake)-volsfx)
2379 %(mmake)-install_opts := prefix=$(%(mmake)-prefix) \
2380         exec_prefix=$(%(mmake)-prefix) %(install_env)
2382 # Check if chosen compiler is valid
2383 ifeq ($(findstring %(compiler),host target kernel),)
2384   $(error unknown compiler %(compiler))
2385 endif
2387 # Set legacy 'host' variable based on chosen compiler
2388 ifeq (%(compiler),host)
2389     host := yes
2390         ifeq (%(package),)
2391                 %(mmake)-pkgdir := $(HOSTGENDIR)/$(CURDIR)
2392         else
2393                 %(mmake)-pkgdir := $(HOSTGENDIR)/$(CURDIR)/%(package)
2394         endif
2395 else
2396     host := no
2397         ifeq (%(package),)
2398                 %(mmake)-pkgdir := $(GENDIR)/$(CURDIR)
2399         else
2400                 %(mmake)-pkgdir := $(GENDIR)/$(CURDIR)/%(package)
2401         endif
2402 endif
2404 %(mmake)-configflag := $(%(mmake)-pkgdir)/.configured
2405 %(mmake)-installflag := $(%(mmake)-pkgdir)/.installed
2407 ifeq ($(filter yes, $(%(mmake)-nix_dir_layout) $(host)),yes)
2408     %(mmake)-PROGDIR      := $(%(mmake)-aros_prefix)/bin
2409     %(mmake)-config_opts  := --prefix=$(%(mmake)-aros_prefix)
2410 else
2411     ifeq (%(nix),yes)
2412         %(mmake)-config_opts := --prefix=/PROGDIR  --bindir=/PROGDIR --sbindir=/PROGDIR \
2413         --libdir=/LIB --includedir=/INCLUDE --oldincludedir=/INCLUDE   
2414     else
2415         %(mmake)-config_opts  := --prefix=$(%(mmake)-aros_prefix)
2416     endif
2418     %(mmake)-PROGDIR := $(%(mmake)-aros_prefix)
2419     
2420     %(mmake)-install_opts := bindir=$(%(mmake)-prefix) \
2421         sbindir=$(%(mmake)-prefix) \
2422         libdir=$(AROS_LIB) includedir=$(AROS_INCLUDES) \
2423         oldincludedir=$(AROS_INCLUDES) %(install_env)
2424 endif
2426 ifneq ($(DEBUG),yes)
2427     %(mmake)-s_flag = -s
2428 endif
2430 # Set up build environment, and options for configure script
2431 ifeq (%(compiler),host)
2432     CONFIG_ENV := \
2433         CPP="$(HOST_CPP)" \
2434         CXXCPP="$(HOST_CPP)" \
2435         CC="$(HOST_CC) $(HOST_CFLAGS) -L$(CROSSTOOLSDIR)/lib -I$(CROSSTOOLSDIR)/include" \
2436         CXX="$(HOST_CXX) $(HOST_CXXFLAGS) -L$(CROSSTOOLSDIR)/lib -I$(CROSSTOOLSDIR)/include" \
2437         TARGET_CC="$(KERNEL_CC) $(KERNEL_CFLAGS) $(%(mmake)-s_flag)" \
2438         TARGET_AS="$(TARGET_AS)" OBJCOPY="$(OBJCOPY)" \
2439         TARGET_RANLIB="$(RANLIB)" TARGET_STRIP="$(STRIP_PLAIN)" \
2440         TARGET_NM="$(NM_PLAIN)"
2441 endif
2442 ifeq (%(compiler),target)
2443     CONFIG_ENV := \
2444         PKG_CONFIG_LIBDIR="$(AROS_DEVELOPMENT)/lib/pkgconfig" \
2445         PKG_CONFIG_SYSROOT_DIR="$(AROSDIR)" \
2446         CPP="$(TARGET_CPP)" \
2447         CXXCPP="$(TARGET_CPP)" \
2448         CC="$(TARGET_CC) $(TARGET_CFLAGS) -L$(AROS_DEVELOPMENT)/lib -I$(AROS_DEVELOPMENT)/include %(extracflags) $(LDFLAGS) $(%(mmake)-nix) $(%(mmake)-s_flag)"\
2449         CXX="$(TARGET_CXX) $(TARGET_CFLAGS) -L$(AROS_DEVELOPMENT)/lib -I$(AROS_DEVELOPMENT)/include %(extracflags) $(LDFLAGS) $(%(mmake)-nix) $(%(mmake)-s_flag)"\
2450         AS="$(TARGET_AS)" CC_FOR_BUILD="$(HOST_CC)" RANLIB="$(RANLIB)" AR="$(AR_PLAIN)" STRIP="$(STRIP_PLAIN)"\
2451         TARGET_CC="$(KERNEL_CC) $(KERNEL_CFLAGS) $(%(mmake)-s_flag)"\
2452         TARGET_AS="$(TARGET_AS)" OBJCOPY="$(OBJCOPY)"\
2453         TARGET_RANLIB="$(RANLIB)" TARGET_STRIP="$(STRIP_PLAIN)"\
2454         TARGET_NM="$(NM_PLAIN)" \
2455         CC_FOR_TARGET="$(TARGET_CC) $(TARGET_CFLAGS) -L$(AROS_DEVELOPMENT)/lib -I$(AROS_DEVELOPMENT)/include %(extracflags) $(LDFLAGS) $(%(mmake)-nix) $(%(mmake)-s_flag)"\
2456         CXX_FOR_TARGET="$(TARGET_CXX) $(TARGET_CFLAGS) -L$(AROS_DEVELOPMENT)/lib -I$(AROS_DEVELOPMENT)/include %(extracflags) $(LDFLAGS) $(%(mmake)-nix) $(%(mmake)-s_flag)"
2457     %(mmake)-config_opts += --build=$(AROS_HOST_CPU)-$(AROS_HOST_ARCH)\
2458         --host=$(AROS_TARGET_CPU)-aros\
2459         --target=$(AROS_TARGET_CPU)-aros\
2460         --disable-nls\
2461         --without-x --without-pic --disable-shared
2462 endif
2463 ifeq (%(compiler),kernel)
2464     CONFIG_ENV := \
2465         CPP="$(KERNEL_CPP)" \
2466         CXXCPP="$(KERNEL_CPP)" \
2467         CC="$(KERNEL_CC) $(KERNEL_CFLAGS) %(extracflags) $(%(mmake)-s_flag)"\
2468         CXX="$(KERNEL_CXX) $(KERNEL_CFLAGS) %(extracflags) $(%(mmake)-s_flag)"\
2469         AS="$(KERNEL_AS)" CC_FOR_BUILD="$(HOST_CC)" RANLIB="$(RANLIB)"\
2470         TARGET_RANLIB="$(RANLIB)" TARGET_STRIP="$(STRIP_PLAIN)" \
2471         TARGET_NM="$(NM_PLAIN)"
2472     %(mmake)-config_opts += --build=$(AROS_HOST_CPU)-$(AROS_HOST_ARCH)\
2473         --host=$(AROS_TARGET_CPU)-aros\
2474         --target=$(AROS_TARGET_CPU)-aros --disable-nls\
2475         --without-x --without-pic --disable-shared
2476 endif
2478 ifeq (%(use_build_env),yes)
2479     BUILD_ENV := $(CONFIG_ENV)
2480 endif
2483 .PHONY : %(mmake) %(mmake)-clean %(mmake)-build_and_install-quick
2485 # When building for the host, we don't need to build the
2486 # linklibs - this is especially true when building the
2487 # crosstool toolchain on 'foreign' architectures (such as
2488 # building PPC on x86)
2490 #MM- %(mmake)-host : setup includes %(mmake)-quick
2491 #MM- %(mmake)-target : setup includes core-linklibs %(mmake)-quick
2492 #MM- %(mmake): %(mmake)-%(compiler)
2494 # Using -j1 in install_command may result in a warning but finally
2495 # it does its job. make install for gcc does not work reliably for -jN
2496 # where N > 1.
2497 ifneq (%(install_target),)
2498     %(mmake)-install_command = \
2499         $(MAKE) PROGDIR="$(%(mmake)-PROGDIR)/" $(%(mmake)-install_opts) \
2500         -C $(%(mmake)-pkgdir) %(install_target) -j1
2502     %(mmake)-uninstall_command = \
2503     $(RM) $(%(mmake)-installflag) && \
2504     $(MAKE) PROGDIR="$(%(mmake)-PROGDIR)/" \
2505     $(%(mmake)-install_opts) -C $(%(mmake)-pkgdir) uninstall
2506 else
2507     %(mmake)-install_command   := true
2508     %(mmake)-uninstall_command := true
2509 endif
2511 #MM- %(mmake)-quick : %(preconfigure) %(mmake)-configure %(postconfigure) %(mmake)-build_and_install-quick %(postinstall)
2514 %(mmake)-build_and_install-quick :  $(%(mmake)-installflag)
2516 $(%(mmake)-installflag) : $(%(mmake)-configflag)
2517         if ! $(MAKE) PROGDIR="$(call %(mmake)-volfunc, PROGDIR)" -q -C $(%(mmake)-pkgdir); then \
2518             $(RM)  $(%(mmake)-installflag) && \
2519             $(BUILD_ENV) $(MAKE) PROGDIR="$(call %(mmake)-volfunc, PROGDIR)"\
2520              -C $(%(mmake)-pkgdir) && \
2521             $(%(mmake)-install_command) && \
2522             $(TOUCH) $@ -r $^; \
2523         fi
2525 $(%(mmake)-pkgdir)/.files-touched:
2526         %mkdirs_q $(%(mmake)-pkgdir)
2527         find %(srcdir) -exec $(TOUCH) -c -r %(srcdir)/configure '{}' \; && \
2528         $(TOUCH) $@
2531 %(mmake)-uninstall :
2532         $(%(mmake)-uninstall_command)
2535 %(mmake)-configure : $(%(mmake)-configflag)
2537 $(%(mmake)-configflag) : TMP_SRCDIR := $(shell echo %(srcdir) | sed 's/^\(.\):\//\/\1\//')
2538 $(%(mmake)-configflag) : $(%(mmake)-pkgdir)/.files-touched $(TOP)/$(CURDIR)/mmakefile
2539         $(RM) $@
2540         %mkdirs_q $(%(mmake)-pkgdir)
2541         cd $(%(mmake)-pkgdir) && \
2542         find . -name config.cache -exec $(RM) '{}' \; && \
2543         $(CONFIG_ENV) $(TMP_SRCDIR)/configure $(%(mmake)-config_opts) \
2544             %(extraoptions) && \
2545         $(TOUCH) $@
2548 %(mmake)-clean : %(mmake)-uninstall
2549         @$(RM) $(%(mmake)-pkgdir)
2550 %end
2551 #------------------------------------------------------------------------------
2554 #------------------------------------------------------------------------------
2555 # Given an archive name, patches names and locations where to find them, fetch
2556 # the archive and the patches from any of those locations, unpack the archive
2557 # and then apply the patches.
2559 # Locations currently supported are http and ftp sites, plus local filesystem
2560 # directories. Supported archives are .tar.bz2 and .tar.gz. To modify this,
2561 # the fetch.sh script needs to be modified, since this macro relies on that script.
2563 # Arguments:
2565 #     - mmake           = mmaketarget
2566 #     - archive_origins = list of locations where to find the archive. They are tried
2567 #                         in sequence, until the archive is found and fetching it 
2568 #                         succeeded. If not specified, the current directory is assumed.
2569 #     - archive         = the archive name. Mandatory.
2570 #     - suffixes        = a list of suffixes to append to the the package name plus the
2571 #                         version. Each one of them is tried until a matching archive is
2572 #                         found. They are appended to patches and these are tried the
2573 #                         same way as packages are.
2574 #     - location        = the local directory where to put the fetched archive and patches.
2575 #                         If not specified, the directory specified by destination is used.
2576 #     - destination     = the directory to unpack the archive to.
2577 #                         If not specified, the current directory is assumed.
2578 #     - patches_origins = list of locations where to find the patches. They are tried
2579 #                         in sequence, until a patch is found and fetching it 
2580 #                         succeeded. If not specified, the current directory is assumed.
2581 #     - patches_specs   = list of "patch specs". A patch spec is of the form
2582 #                         patch_name[:[patch_subdir][:patch_opt]].
2584 #                             - patch_name   = the name of the patch file
2585 #                             - patch_subdir = the directory within \destination\ where to
2586 #                                              apply the patch.
2587 #                             - patch_opt    = any options to pass to the `patch' command
2588 #                                              when applying the patch.
2589 #                         
2590 #                         The patch_subdir and patch_opt fields are optional.
2592 %define fetch mmake=/A archive_origins=. archive=/A suffixes= location= destination=. \
2593     patches_origins=$(SRCDIR)/$(CURDIR) patches_specs=::
2595 .PHONY: %(mmake)
2597 ifneq (%(location),)
2598     %(mmake)-location := %(location)
2599 else
2600     %(mmake)-location := %(destination)
2601 endif
2604 %(mmake) :
2605         $(FETCH) -ao "%(archive_origins)" -a %(archive) -s "%(suffixes)" -l $(%(mmake)-location) \
2606         -d %(destination) -po "%(patches_origins)" -p %(patches_specs)
2607 %end
2608 #------------------------------------------------------------------------------
2611 #------------------------------------------------------------------------------
2612 # This macro can aid in patch creation for fetched ports. It temporarily creates another
2613 # unpatched source tree and runs diff against this and a previously fetched and possibly
2614 # patched tree. Depending on what happens after patching during a normal build it might
2615 # give best results if the new patch is created directly after fetch.
2617 # Arguments:
2619 #     - mmake       = mmaketarget
2620 #     - archive     = archive base name
2621 #     - srcdir      = directory the package is unpacked to, useful if archive unpacks to
2622 #                     a directory other than its name suggests.
2623 #     - suffixes    = a list of suffixes to append to the the package name plus the
2624 #                     version. Each one of them is tried until a matching archive is
2625 #                     found.
2626 #     - destination = the directory to unpack the archive to.
2627 #     - excludes    = diff patterns to exclude files or directories from the patch
2629 %define create_patch mmake=/A archive=/A srcdir= suffixes="tar.bz2 tar.gz" destination=/A excludes=
2631 .PHONY: %(mmake)
2633 ifneq (%(excludes),)
2634     %(mmake)-exclude := -X ./exclude.patterns
2635 endif
2637 ifneq (%srcdir),)
2638     %(mmake)-srcdir := %(srcdir)
2639 else
2640     %(mmake)-srcdir := %(archive)
2641 endif
2644 %(mmake):
2645         @$(FETCH) -a %(archive) -s "%(suffixes)" -l $(PORTSSOURCEDIR) -d %(destination)/tmp ; \
2646         $(MV) %(destination)/$(%(mmake)-srcdir) %(destination)/tmp/$(%(mmake)-srcdir).aros ; \
2647         cd %(destination)/tmp ; \
2648         $(FOR) f in %(excludes) ; do \
2649             $(ECHO) $$f >> ./exclude.patterns ; \
2650         done ; \
2651         diff -ruN $(%(mmake)-exclude) \
2652             $(%(mmake)-srcdir) \
2653             $(%(mmake)-srcdir).aros \
2654             >$(SRCDIR)/$(CURDIR)/%(archive)-aros-new.diff ; \
2655         $(MV) %(destination)/tmp/$(%(mmake)-srcdir).aros %(destination)/$(%(mmake)-srcdir) ; \
2656         $(RM) %(destination)/tmp
2657 %end
2658 #------------------------------------------------------------------------------
2661 #------------------------------------------------------------------------------
2662 # Joins the features of %fetch and %build_with_configure, taking advantage of
2663 # the naming scheme of GNU packages. GNU packages names are in the form
2665 #     <package name>-<version number>.<archive format suffix>
2667 # If a patch is provided, it *must* be named the following way:
2669 #    <package name>-<version number>-aros.diff
2671 # Moreover, it *must* be appliable with the -p1 option of the `patch' command after
2672 # CD'ing into the archive's extracted directory.
2674 # Note that whilst the %fetch macro accepts a list of patches for any given archive,
2675 # the %fetch_and_build macro only accepts *one* patch for each package. It's up to you
2676 # to make that patch fully comprehensive.
2678 # NOTE: GNU packages are always compiled with *nix semantics turned on.
2680 # Arguments:
2682 #    - mmake        = the meta make target, as would be supplied to the %build_with_configure
2683 #                     macro.
2684 #    - package      = the GNU package name, sans version and archive format suffixes.
2685 #    - version      = the package's version number, or otherwise any other version string.
2686 #                     It gets appended to the package name to form the basename of the archive.
2687 #    - suffixes     = a list of suffixes to apped to the the package name plus the
2688 #                     version. Each one of them is tried until a matching archive is found.
2689 #                     Defaults to "tar.bz2 tar.gz".
2690 #    - destination  = same meaning as the one for the %fetch macro
2691 #    - location     = same meaning as the one for the %fetch macro
2692 #    - package_repo = same meaning as the one of the %fetch macro's %(archive_origins) argument
2693 #    - patch        = "yes" or "no", depending on whether a patch for this package needs to be
2694 #                     fetched or not
2695 #    - patch_repo   = same meaning as the one of the %fetch macro's %(patches_origins) argument
2696 #    - prefix       = same meaning as the one for the %build_with_configure macro. Defaults to
2697 #                     $(GNUDIR).
2698 #    - aros_prefix  = same meaning as the one for the %build_with_configure macro. Defaults to
2699 #                     /GNU.
2700 #    - extraoptions = same meaning as the one for the %build_with_configure macro.
2701 #    - extracflags  = same meaning as the one for the %build_with_configure macro.
2702 #    - postinstall  = same meaning as the one for the %build_with_configure macro.
2703 #    - create_pkg   = create a distributable package of the compiled sources, defaults to no
2705 %define fetch_and_build mmake=/A package=/A subpackage= compiler=target version=/A suffixes="tar.bz2 tar.gz" \
2706     srcdir= package_repo= patch=no patch_repo= prefix= aros_prefix= extraoptions= extracflags= \
2707     preconfigure= postconfigure= postinstall= nix=no nix_dir_layout= create_pkg=no
2709 #MM- %(mmake)-quick : %(mmake)-%(subpackage)-quick
2710 #MM- %(mmake)-%(subpackage)-quick : %(mmake)-%(subpackage)-fetch
2711 #MM- %(mmake)-fetch : %(mmake)-%(subpackage)-fetch
2712 #MM- %(mmake)-create-patch : %(mmake)-%(subpackage)-create-patch
2714 %(mmake)-archbase  := %(package)-%(version)
2716 ifeq (%(compiler),host)
2717     %(mmake)-portdir  := $(HOSTDIR)/Ports/%(package)
2718 else
2719     %(mmake)-portdir  := $(PORTSDIR)/%(package)
2720 endif
2722 ifeq (%(prefix),)
2723     %(mmake)-prefix := $(CONTRIB_DIR)/%(package)
2724 else
2725     %(mmake)-prefix := %(prefix)
2726 endif
2728 ifneq (%(subpackage),)
2729     %(mmake)-%(subpackage)-archbase  := %(package)-%(subpackage)-%(version)
2730 else
2731     %(mmake)-%(subpackage)-archbase  := %(package)-%(version)
2732 endif
2734 ifneq (%(srcdir),)
2735     %(mmake)-%(subpackage)-srcdir  := %(srcdir)
2736 else
2737     %(mmake)-%(subpackage)-srcdir  := $(%(mmake)-archbase)
2738 endif
2740 ifeq (%(patch),yes)
2741     %(mmake)-%(subpackage)-patches_specs := $(%(mmake)-%(subpackage)-archbase)-aros.diff:$(%(mmake)-%(subpackage)-srcdir):-p1
2742 else
2743     %(mmake)-%(subpackage)-patches_specs := ::
2744 endif
2746 %fetch mmake=%(mmake)-%(subpackage)-fetch archive=$(%(mmake)-%(subpackage)-archbase) suffixes="%(suffixes)" \
2747     location=$(PORTSSOURCEDIR) destination=$(%(mmake)-portdir) \
2748     archive_origins=". %(package_repo)" \
2749     patches_specs="$(%(mmake)-%(subpackage)-patches_specs)" patches_origins="$(SRCDIR)/$(CURDIR) %(patch_repo)"
2751 %create_patch mmake=%(mmake)-%(subpackage)-create-patch \
2752     archive=$(%(mmake)-%(subpackage)-archbase) \
2753     srcdir=$(%(mmake)-%(subpackage)-srcdir) \
2754     suffixes="%(suffixes)" \
2755     destination=$(%(mmake)-portdir)
2757 #MM- %(mmake) : %(mmake)-%(subpackage)
2759 %(mmake)-%(subpackage)-package-dir := $(%(mmake)-portdir)/$(%(mmake)-%(subpackage)-archbase)
2761 %(mmake)-%(subpackage)-package-basename := \
2762     $(DISTDIR)/Packages/$(%(mmake)-%(subpackage)-archbase)-aros.$(AROS_TARGET_CPU)
2764 ifneq (%(create_pkg),no)
2765     %(mmake)-%(subpackage)-package := $(%(mmake)-%(subpackage)-package-basename).tar.bz2
2766 endif
2768 %build_with_configure mmake=%(mmake)-%(subpackage) package=%(package) compiler=%(compiler) \
2769      srcdir=$(%(mmake)-portdir)/$(%(mmake)-%(subpackage)-srcdir) \
2770      nix=%(nix) nix_dir_layout=%(nix_dir_layout) prefix="$(%(mmake)-prefix)" \
2771      aros_prefix="%(aros_prefix)" preconfigure="%(preconfigure)" postconfigure="%(postconfigure)" postinstall="%(postinstall) \
2772      %(mmake)-%(subpackage)-make-package"  extraoptions="%(extraoptions)" extracflags="%(extracflags)"
2774 .PHONY : %(mmake)-%(subpackage)-make-package %(mmake)-%(subpackage)-create-patch
2775 #MM %(mmake)-%(subpackage)-make-package : %(mmake)-%(subpackage)-quick
2778 %(mmake)-%(subpackage)-make-package : $(%(mmake)-%(subpackage)-package)
2780 #There seems to be a bug, either with my clock or with make, 'cause it may happen
2781 #that $^ and $@ have exactly the same mtime, and in that case make tries
2782 #to rebuild $@ again, which would fail because the directory where
2783 #the package got installed would not exist anymore. 
2784 #We work this around by using an if statement to manually check the mtimes.
2785 $(%(mmake)-%(subpackage)-package-basename).tar.bz2 :
2786         @$(IF) test $(%(mmake)-installflag) -nt $@ || ! test -f $@; then \
2787         $(RM) $@ ; \
2788         $(ECHO) "Building   \`$(%(mmake)-%(subpackage)-package-basename).tar.bz2'" ; \
2789         mkdir -p "$(DISTDIR)/Packages" ; \
2790         mkdir -p "$(%(mmake)-prefix)" ; \
2791         cd $(%(mmake)-%(subpackage)-package-dir) ; \
2792         tar -cvf $(%(mmake)-%(subpackage)-package-basename).tar * ; \
2793         bzip2 -9 -f $(%(mmake)-%(subpackage)-package-basename).tar ; \
2794     fi
2795 %end
2796 #------------------------------------------------------------------------------
2799 #------------------------------------------------------------------------------
2800 %define fetch_and_build_gnu mmake=/A package=/A subpackage= version=/A suffixes="tar.bz2 tar.gz" \
2801     srcdir= package_repo= patch=no patch_repo= prefix=$(GNUDIR) \
2802     aros_prefix=/GNU extraoptions= extracflags= preconfigure= postconfigure= postinstall= 
2804 GNU_REPOSITORY := gnu://
2806 %fetch_and_build mmake="%(mmake)" package="%(package)" subpackage="%(subpackage)" version="%(version)" \
2807     suffixes="%(suffixes)" srcdir="%(srcdir)" \
2808     package_repo="%(package_repo) $(GNU_REPOSITORY)%(package)" \
2809     patch="%(patch)" patch_repo="%(patch_repo)" \
2810     prefix="%(prefix)" aros_prefix="%(aros_prefix)" extraoptions="%(extraoptions)" extracflags="%(extracflags)" \
2811     preconfigure="%(preconfigure)" postconfigure="%(postconfigure)" postinstall="%(postinstall)" nix=yes
2813 %end
2814 #------------------------------------------------------------------------------
2817 #------------------------------------------------------------------------------
2818 # Same job as the one of %fetch_and_build_gnu, except that this one assumes
2819 # that the package is a "Development" package, and as such it needs to be placed
2820 # under the $(AROS_DEVELOPMENT) directory, as a default. 
2822 # All the arguments have the same meaning as the ones of the %fetch_and_build_gnu 
2823 # macro, but notice that %fetch_and_build_gnu_development *doesn't* have a
2824 # "mmake" argument, because the metatarget is implicitely defined as
2826 #     #MM- development-%(package)
2828 %define fetch_and_build_gnu_development package=/A subpackage= version=/A suffixes="tar.bz2 tar.gz" \
2829     srcdir= package_repo= patch=no patch_repo= prefix=$(AROS_DEVELOPMENT) \
2830     aros_prefix=/Development preconfigure= postconfigure= postinstall=  extraoptions= extracflags=
2832 #MM- development : development-%(package)
2835 %fetch_and_build_gnu mmake=development-%(package) package=%(package) subpackage="%(subpackage)" \
2836    version=%(version) suffixes="%(suffixes)" srcdir="%(srcdir)"  \
2837    package_repo="%(package_repo)" patch="%(patch)" patch_repo="%(patch_repo)" prefix=%(prefix) \
2838    aros_prefix="%(aros_prefix)" preconfigure="%(preconfigure)" postconfigure="%(postconfigure)" postinstall="postinstall-%(package)-delete-la-files %(postinstall)" \
2839    extraoptions="%(extraoptions)" extracflags="%(extracflags)"
2842 postinstall-%(package)-delete-la-files:
2843         $(RM) $(AROS_DEVELOPMENT)/lib/*.la
2845 %end
2846 #------------------------------------------------------------------------------
2848 # Builds a kickstart package in PKG format
2849 # mmake   - target name
2850 # file    - Destination file name with path
2851 # startup - The file which will be put first
2852 # Other arguments are self-explanatory
2854 %define make_package mmake=/A file=/A classes= devs= handlers= hidds= libs= res= startup=
2856 PKG_CLASSES   := $(addsuffix .class, %(classes))
2857 PKG_DEVICES   := $(addsuffix .device, %(devs))
2858 PKG_HANDLERS  := $(addsuffix -handler, %(handlers))
2859 PKG_HIDD      := $(addsuffix .hidd, %(hidds))
2860 PKG_LIBS      := $(addsuffix .library, %(libs))
2861 PKG_RESOURCES := $(addsuffix .resource, %(res))
2863 PKG_FILES := %(startup) $(PKG_CLASSES) $(PKG_DEVICES) $(PKG_HANDLERS) $(PKG_HIDD) $(PKG_LIBS) $(PKG_RESOURCES)
2864 PKG_DIR   := $(dir %(file))
2865 PKG_DEPS  := $(addprefix $(PKGDIR)/, $(PKG_FILES))
2868 %(mmake) : %(file)
2871 %(mmake)-quick : %(file)
2873 %(file): PKG_FILES := $(PKG_FILES)
2874 %(file): $(PKG_DEPS) | $(PKG_DIR)
2875         @$(ECHO) Packaging $@...
2876         @$(SRCDIR)/tools/package/pkg c $@ $(PKGDIR) $(PKG_FILES)
2878 %compress_file mmake=%(mmake) file=%(file)
2880 GLOB_MKDIRS += $(PKG_DIR)
2882 %end
2884 #------------------------------------------------------------------------------
2885 # Compresses %(file) with a gzip.
2886 # Good in conjunction with for example %build_prog
2888 %define compress_file mmake=/A file=/A
2890 #MM- %(mmake)-gz : %(mmake) %(mmake)-gz-quick
2893 %(mmake)-gz-quick : %(file).gz
2895 %(file).gz: %(file)
2896         @$(ECHO) Compressing $(subst $(TARGETDIR)/,,$^)...
2897         @gzip -9 -f $^
2899 %end
2901 #------------------------------------------------------------------------------
2902 # Links a kickstart module in ELF format
2903 # Arguments are similar to make_package
2905 %define link_kickstart mmake=/A file=/A classes= devs= handlers= hidds= libs= res= \
2906     startup= uselibs= ldflags=$(LDFLAGS) map= deps=
2908 KOBJ_CLASSES  := $(addprefix $(KOBJSDIR)/, $(addsuffix _class.o, %(classes)))
2909 KOBJ_DEVICES  := $(addprefix $(KOBJSDIR)/, $(addsuffix _device.o, %(devs)))
2910 KOBJ_HANDLERS := $(addprefix $(KOBJSDIR)/, $(addsuffix _handler.o, %(handlers)))
2911 KOBJ_HIDD     := $(addprefix $(KOBJSDIR)/, $(addsuffix _hidd.o, %(hidds)))
2912 KOBJ_LIBS     := $(addprefix $(KOBJSDIR)/, $(addsuffix _library.o, %(libs)))
2913 KOBJ_RES      := $(addprefix $(KOBJSDIR)/, $(addsuffix _resource.o, %(res)))
2915 ifeq (%(startup),)
2916     KOBJ_STARTUP := $(GENDIR)/$(RESIDENT_BEGIN).o
2917 else
2918     KOBJ_STARTUP := %(startup)
2919 endif
2921 KOBJS        := $(KOBJ_STARTUP) $(KOBJ_CLASSES) $(KOBJ_HANDLERS) $(KOBJ_LIBS) $(KOBJ_DEVICES) $(KOBJ_HIDD) $(KOBJ_RES)
2923 TMP_LDFLAGS := %(ldflags)
2925 # Make a list of the lib files this program depends on.
2926 # In LDFLAGS remove white space between -L and directory
2927 TMP_DIRS := $(subst -L ,-L,$(strip $(TMP_LDFLAGS)))
2928 # Filter out only the libdirs and remove -L
2929 TMP_DIRS := $(patsubst -L%,%,$(filter -L%,$(TMP_DIRS)))
2930 # Add trailing /
2931 TMP_DIRS := $(subst //,/,$(addsuffix /,$(TMP_DIRS)))
2932 # Add normal linklib path
2933 TMP_DIRS += $(LIBDIR)/
2934 # add lib and .a to static linklib names
2935 TMP_LIBS := $(addprefix lib,$(addsuffix .a,%(uselibs) libinit autoinit))
2936 # search for the linklibs in the given path, ignore ones not found
2937 TMP_DEPLIBS := $(foreach lib,$(TMP_LIBS), \
2938     $(firstword $(wildcard $(addsuffix $(lib),$(TMP_DIRS)))) \
2941 TMP_DIRS += $(dir %(file))
2942 ifneq (%(map),)
2943     TMP_LDFLAGS += $(GENMAP) %(map)
2944     TMP_DIRS    += $(dir %(map))
2945 endif
2947 #MM %(mmake) : %(deps)
2950 %(mmake) : %(file)
2953 %(mmake)-quick : %(file)
2955 %(file): KOBJS := $(KOBJS)
2956 %(file): LDFLAGS := $(TMP_LDFLAGS) $(NOSTARTUP_LDFLAGS)
2957 %(file): LDLIBS := $(addprefix -l, %(uselibs))
2958 %(file): $(KOBJS) $(DEPLIBS) | $(TMP_DIRS)
2959         @$(ECHO) "Linking    $(subst $(TARGETDIR)/,,$@)..."
2960         @$(TARGET_CC) -o $@ $(KOBJS) $(LDFLAGS) $(LDLIBS) -noarosc
2961         @$(STRIP) $@
2963 %compress_file mmake=%(mmake) file=%(file)
2965 GLOB_MKDIRS += $(TMP_DIRS)
2967 %end
2969 #------------------------------------------------------------------------------
2970 # Link %(objs) to binary blob in %(file) using %(name) as name of embedded binary object
2971 # 'start' is an optional starting address
2972 # 'ldflags' is optional additional flags for the linker
2973 %define rule_link_binary file=/A name=/A objs=/A start=0 ldflags=
2975 BD_OUTDIR := $(dir %(file))
2976 # This trick removes the trailing '/', otherwise findstring below fails, causing a warning
2977 BD_OUTDIR := $(subst /*,,$(addsuffix *,$(BD_OUTDIR)))
2978 BD_TMPDIR := $(GENDIR)/$(CURDIR)
2980 %(file) : %(objs) $(BD_OUTDIR)
2981         @$(ECHO) "Linking    $(subst $(TARGETDIR)/,,$@)..."
2982         @$(KERNEL_LD) %(ldflags) --entry=%(start) --oformat=binary -Ttext=%(start) -o $(BD_TMPDIR)/%(name) %(objs)
2983         @cd $(BD_TMPDIR) && $(AROS_LD) %(ldflags) -r --format binary %(name) -o $@
2985 ifeq ($(findstring $(BD_OUTDIR),$(GLOB_MKDIRS)),)
2986     GLOB_MKDIRS += $(BD_OUTDIR)
2987 endif
2989 %end