start service tasks separately in-case platforms need to perform additional set-up...
[AROS.git] / Makefile.in
blob63c58b03d03d66319ba9fc7761d2ae77ab8ddc94
1 # Copyright © 2000-2012, The AROS Development Team. All rights reserved.
2 # $Id$
4 # Main makefile for AROS
6 default: all
8 AROS_HOST_CPU ?= @aros_host_cpu@
9 AROS_HOST_ARCH ?= @aros_host_arch@
10 AROS_TARGET_CPU ?= @aros_target_cpu@
11 AROS_TARGET_ARCH ?= @aros_target_arch@
12 AROS_TARGET_VARIANT ?= @aros_target_variant@
14 # normally, these variable's should go in mmake.config/globalvarfile
15 export AROS_TARGET_BOOTLOADER := @aros_target_bootloader@
16 export AROS_TARGET_ICONSET := @aros_target_iconset@
17 export AROS_GUI_THEME := @aros_target_guitheme@
19 TOP := @AROS_BUILDDIR@
20 SRCDIR := @SRCDIR@
21 include $(TOP)/config/make.cfg
23 MMAKE_OPTIONS ?= --srcdir=$(SRCDIR) --builddir=$(TOP)
24 ifneq (,$(findstring s,$(MAKEFLAGS)))
25 MMAKE_OPTIONS += -q
26 endif
28 all: crosstools
29 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.AROS
31 makedirs:
32 @$(RM) $(TOP)/errors
33 @$(FOR) dir in $(AROSDIR) $(GENDIR) $(TOOLDIR) ; do \
34 $(IF) [ ! -d $$dir ]; then \
35 $(MECHO) $(MKDIR) "$$dir" ; \
36 $(MKDIR) "$$dir" ; \
37 else true ; fi ; \
38 done
39 @$(IF) [ ! -f $(AROSDIR)/.gdbinit ]; then \
40 $(CP) $(SRCDIR)/_gdbinit $(AROSDIR)/.gdbinit ; \
41 else true ; fi
43 # Create the tools that are used to build AROS.
44 tools : makedirs mmake $(TOOLLIB) $(GENMF) $(ARCHTOOL) $(ELF2HUNK) \
45 $(FLEXCAT) $(CREATEDTDESC) \
46 $(ILBMTOC) $(ILBMTOICON) $(INFOINFO) \
47 $(COLLECT-AROS) $(AFSLIB) $(COPYTOAFS) \
48 $(FD2INLINE) $(FD2PRAGMA) $(SFDC) $(SETREV) \
49 $(MKSUNXIBOOT)
51 crosstools : tools
52 ifneq ($(CROSSTOOLS_TARGET),)
53 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$(CROSSTOOLS_TARGET)
54 else
55 @$(NOP)
56 endif
58 $(TOOLLIB) : $(wildcard $(SRCDIR)/tools/toollib/*.[ch])
59 @$(ECHO) Building toollib...
60 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/toollib SRCDIR=$(SRCDIR) TOP=$(TOP) CURDIR=toollib
62 $(GENMF) : $(SRCDIR)/tools/genmf/genmf.py
63 @$(ECHO) Copying genmf...
64 @./config.status $(subst $(TOP)/,,$(GENMF)) genmf_executable
66 $(ELF2HUNK) : $(SRCDIR)/tools/elf2hunk/elf2hunk.c
67 @$(ECHO) Building elf2hunk...
68 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/elf2hunk SRCDIR=$(SRCDIR) TOP=$(TOP)
70 $(ARCHTOOL) : $(SRCDIR)/tools/archtools/archtool.c
71 @$(ECHO) Building archtool...
72 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/archtools SRCDIR=$(SRCDIR) TOP=$(TOP)
74 $(FLEXCAT) : $(wildcard $(SRCDIR)/tools/flexcat/src/*.[ch]) $(wildcard $(SRCDIR)/tools/flexcat/src/sd/*.sd)
75 @$(ECHO) Building flexcat...
76 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/flexcat/src -f Makefile.aros SRCDIR=$(SRCDIR) TOP=$(TOP)
78 $(CREATEDTDESC) : $(wildcard $(SRCDIR)/tools/dtdesc/*.[ch]) $(wildcard $(SRCDIR)/tools/dtdesc/c_iff/*.[ch])
79 @$(ECHO) Building createdtdesc...
80 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/dtdesc -f Makefile.aros SRCDIR=$(SRCDIR) TOP=$(TOP)
82 $(AFSLIB) : $(wildcard $(SRCDIR)/workbench/devs/afs/*.[ch])
83 @$(ECHO) Building afslib...
84 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/copytoafs -f Makefile.afslib SRCDIR=$(SRCDIR) TOP=$(TOP)
86 $(COPYTOAFS) : $(AFSLIB) $(SRCDIR)/tools/copytoafs/copytoafs.c
87 @$(ECHO) Building copytoafs...
88 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/copytoafs SRCDIR=$(SRCDIR) TOP=$(TOP)
90 $(ILBMTOC) : $(SRCDIR)/tools/ilbmtoc/ilbmtoc.c
91 @$(ECHO) Building ilbmtoc...
92 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/ilbmtoc SRCDIR=$(SRCDIR) TOP=$(TOP)
94 $(ILBMTOICON) : $(SRCDIR)/tools/ilbmtoicon/ilbmtoicon.c
95 @$(ECHO) Building ilbmtoicon...
96 @$(CALL) $(MAKE) $(MKARGS) $@ -C $(SRCDIR)/tools/ilbmtoicon SRCDIR=$(SRCDIR) TOP=$(TOP)
98 $(INFOINFO) : $(SRCDIR)/tools/ilbmtoicon/infoinfo.c
99 @$(ECHO) Building infoinfo...
100 @$(CALL) $(MAKE) $(MKARGS) $@ -C $(SRCDIR)/tools/ilbmtoicon SRCDIR=$(SRCDIR) TOP=$(TOP)
102 $(COLLECT-AROS) : $(wildcard $(SRCDIR)/tools/collect-aros/*.[hc])
103 @$(ECHO) Building collect-aros...
104 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/collect-aros SRCDIR=$(SRCDIR) TOP=$(TOP)
106 $(FD2INLINE) : $(SRCDIR)/tools/fd2inline/fd2inline.c
107 @$(ECHO) Building fd2inline...
108 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2inline SRCDIR=$(SRCDIR) TOP=$(TOP)
110 $(FD2PRAGMA) : $(SRCDIR)/tools/fd2pragma/fd2pragma.c
111 @$(ECHO) Building fd2pragma...
112 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2pragma SRCDIR=$(SRCDIR) TOP=$(TOP)
114 $(SFDC) : $(SRCDIR)/tools/sfdc/*.pl
115 @$(ECHO) Building sfdc...
116 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/sfdc SRCDIR=$(SRCDIR) TOP=$(TOP)
118 $(SETREV) : $(SRCDIR)/tools/setrev/setrev.c
119 @$(ECHO) Building setrev...
120 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/setrev SRCDIR=$(SRCDIR) TOP=$(TOP)
122 $(MKSUNXIBOOT) : $(SRCDIR)/tools/mksunxiboot/mksunxiboot.c
123 @$(ECHO) Building mksunxiboot...
124 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/mksunxiboot SRCDIR=$(SRCDIR) TOP=$(TOP)
126 # MetaMake apparently requires a slighty different compilation. Probably
127 # because it is sort-of an external package as well.
129 mmake : $(TOP)/tools/MetaMake/Makefile $(MMAKE)
131 $(SRCDIR)/tools/MetaMake/configure : $(SRCDIR)/tools/MetaMake/configure.in
132 @$(ECHO) Building MetaMake...
133 @cd $(SRCDIR)/tools/MetaMake && @aros_host_aclocal@ && @aros_host_autoconf@
135 $(TOP)/tools/MetaMake/Makefile : $(SRCDIR)/tools/MetaMake/configure $(SRCDIR)/tools/MetaMake/Makefile.in
136 @$(IF) [ ! -d $(TOP)/tools/MetaMake ]; then \
137 $(MECHO) $(MKDIR) "$(TOP)/tools/MetaMake" ; \
138 $(MKDIR) "$(TOP)/tools/MetaMake"; \
140 @cd $(TOP)/tools/MetaMake ; CC="$(HOST_CC)" CFLAGS="$(HOST_CFLAGS) -D_FILE_OFFSET_BITS=64" LDFLAGS="$(HOST_LDFLAGS)" $(SRCDIR)/tools/MetaMake/configure --prefix=$(TOOLDIR) --bindir=$(TOOLDIR) --with-objfiledir=$(HOSTGENDIR)/tools/MetaMake
142 $(MMAKE): $(TOP)/tools/MetaMake/Makefile $(wildcard $(SRCDIR)/tools/MetaMake/*.[ch]) $(GENMF)
143 @$(MAKE) $(MKARGS) AUTOHEADER=@aros_host_autoheader@ -C $(TOP)/tools/MetaMake
144 @$(MAKE) $(MKARGS) -C $(TOP)/tools/MetaMake install
146 # Clean the sources and tools
147 clean:
148 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.clean
149 @$(MAKE) $(MKARGS) -C $(TOP)/tools/MetaMake clean SRCDIR=$(SRCDIR) TOP=$(TOP)
150 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/flexcat/src -f Makefile.aros clean SRCDIR=$(SRCDIR) TOP=$(TOP)
151 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/archtools clean SRCDIR=$(SRCDIR) TOP=$(TOP)
152 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/genmf clean
153 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/toollib clean SRCDIR=$(SRCDIR) TOP=$(TOP)
154 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/dtdesc -f Makefile.aros clean SRCDIR=$(SRCDIR) TOP=$(TOP)
155 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/collect-aros clean SRCDIR=$(SRCDIR) TOP=$(TOP)
156 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2inline clean SRCDIR=$(SRCDIR) TOP=$(TOP)
157 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2pragma clean SRCDIR=$(SRCDIR) TOP=$(TOP)
158 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/sfdc clean SRCDIR=$(SRCDIR) TOP=$(TOP)
159 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/setrev clean SRCDIR=$(SRCDIR) TOP=$(TOP)
160 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/mksunxiboot clean SRCDIR=$(SRCDIR) TOP=$(TOP)
161 -@$(RM) $(ARCHDIR) Makefile config.cache config.status config.log \
162 mmake.cache mmake.config rom/mmakefile config/make.cfg \
163 $(AROS_DEVELOPMENT)/include/aros/config.h \
164 $(GENDIR)/include/aros/config.h $(HOSTGENDIR)/config/host.cfg \
165 $(GENDIR)/config/target.cfg $(GENDIR)/config/make.defaults \
166 $(GENDIR)/config/specs \
167 $(TOOLDIR)/$(AROS_TARGET_CPU)-$(AROS_TARGET_ARCH)$(AROS_TARGET_SUFFIX)-aros-gcc \
168 $(TOOLDIR)/$(AROS_TARGET_CPU)-$(AROS_TARGET_ARCH)$(AROS_TARGET_SUFFIX)-aros-ld \
169 $(GENDIR)/scripts/genshared $(TOOLDIR)/genmf.py \
170 tools/adflib/myconf.aros tools/collect-aros/env.h
172 # Clean the sources and tools
173 arch-clean: clean
174 @$(NOP)
176 # Really clean all - like a clean checkout
177 dist-clean: arch-clean
178 @$(NOP)
180 # Don't try to generate $(TOP)/bin/$(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU)$(AROS_TARGET_SUFFIX)/gen/config/make.opts
181 $(TOP)/bin/$(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU)$(AROS_TARGET_SUFFIX)/gen/config/make.opts:
182 @$(NOP)
184 # targets which do not generate files or for which a file/directory exists
185 .PHONY: default all makedirs tools crosstools docs clean arch-clean dist-clean install \
186 $(TOP)/bin/$(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU)$(AROS_TARGET_SUFFIX)/gen/config/make.opts \
187 test kernel boot workbench compiler contrib ports sdk mmake query
189 # Workaround for bug in make v3.81 (should normally be handled by .DEFAULT)
190 install test kernel boot workbench compiler contrib ports sdk : crosstools
191 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@
193 # Bypass crosstools target.
194 query : tools
195 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@
197 # Map MetaTargets to make targets : Call mmake with AROS.target
198 # This does not allow to check for dependancies, so it is not suitable for
199 # Calling standard main targets, but is usable as a shortcut for MetaMake
200 # if it was not installed globally
203 distfiles::
204 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@
206 # The '%-quick' and '%-clean' targets are special - we don't want to wait around
207 # for building crosstools if we just want to build one subtarget
208 %-quick %-clean:
209 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@
211 .DEFAULT :
212 @$(MAKE) $(MKARGS) crosstools
213 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@