refactored some code. compiles now without suppresing any warning with gcc-6.3.0.
[AROS.git] / Makefile.in
blob40dd0c1afa6b34cee61979aa08ca6a120a5ace51
1 # Copyright © 2000-2016, The AROS Development Team. All rights reserved.
2 # $Id$
4 # Main makefile for AROS
6 default: all
8 AROS_BUILD_HOST ?= @aros_build_host@
9 AROS_HOST_CPU ?= @aros_host_cpu@
10 AROS_HOST_ARCH ?= @aros_host_arch@
11 AROS_TARGET_CPU ?= @aros_target_cpu@
12 AROS_TARGET_CPU_MODE ?= @aros_target_cpu_mode@
13 AROS_TARGET_ARCH ?= @aros_target_arch@
14 AROS_TARGET_VARIANT ?= @aros_target_variant@
16 # normally, these variable's should go in mmake.config/globalvarfile
17 export AROS_TARGET_BOOTLOADER := @aros_target_bootloader@
18 export AROS_TARGET_ICONSET := @aros_target_iconset@
19 export AROS_GUI_THEME := @aros_target_guitheme@
21 TOP := @AROS_BUILDDIR@
22 SRCDIR := @SRCDIR@
23 include $(TOP)/config/make.cfg
24 ifneq ($(CROSSTOOLS_TARGET),)
25 include $(SRCDIR)/tools/crosstools/$(AROS_TOOLCHAIN).cfg
26 include $(SRCDIR)/tools/crosstools/$(AROS_TOOLCHAIN).deps
27 CROSSTOOLS_BUILDFLAG:=$(CROSSTOOLSDIR)/.installflag-crosstools
28 AROS_TOOLCHAIN_DEPS:=$(AROS_TOOLCHAIN_DEPS) $(SRCDIR)/tools/crosstools/$(AROS_TOOLCHAIN).cfg $(SRCDIR)/tools/crosstools/$(AROS_TOOLCHAIN).deps $(SRCDIR)/tools/crosstools/mmakefile.src
29 else
30 CROSSTOOLS_BUILDFLAG:=
31 endif
33 MMAKE_OPTIONS ?= --srcdir=$(SRCDIR) --builddir=$(TOP)
34 ifneq (,$(findstring s,$(MAKEFLAGS)))
35 MMAKE_OPTIONS += -q
36 endif
39 # Rules for Configure generated files ...
42 $(TOP)/compiler/include/geninc.cfg: $(SRCDIR)/compiler/include/geninc.cfg.in $(TOP)/config.status
43 @$(TOP)/config.status --file=$@:$<
45 CONFIGUREFILES += $(TOP)/compiler/include/geninc.cfg
48 # Standard Rules ...
51 all: $(CONFIGUREFILES) crosstools features
52 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.AROS
54 makedirs:
55 @$(RM) $(TOP)/errors
56 @$(FOR) dir in $(AROSDIR) $(GENDIR) $(TOOLDIR) ; do \
57 $(IF) [ ! -d $$dir ]; then \
58 $(MECHO) $(MKDIR) "$$dir" ; \
59 $(MKDIR) "$$dir" ; \
60 else true ; fi ; \
61 done
62 @$(IF) [ ! -f $(AROSDIR)/.gdbinit ]; then \
63 $(CP) $(SRCDIR)/_gdbinit $(AROSDIR)/.gdbinit ; \
64 else true ; fi
66 # Create the tools that are used to build AROS.
67 tools : makedirs mmake $(GENMF) $(ARCHTOOL) $(ELF2HUNK) \
68 $(FLEXCAT) $(CREATEDTDESC) \
69 $(ILBMTOC) $(ILBMTOICON) $(INFOINFO) \
70 $(COLLECT-AROS) $(AFSLIB) $(COPYTOAFS) \
71 $(FD2INLINE) $(FD2PRAGMA) $(SFDC) $(SETREV)
72 @$(NOP)
74 # rebuild the crosstools if we are reconfigured, or its dependencies change.
75 $(CROSSTOOLSDIR)/.installflag-crosstools: $(TOP)/config.status $(AROS_TOOLCHAIN_DEPS) tools
76 @+$(IF) ! $(TEST) -f $@ ; then \
77 $(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$(CROSSTOOLS_TARGET) && $(TOUCH) $@ ; \
80 crosstools: tools $(CROSSTOOLS_BUILDFLAG)
81 @$(NOP)
83 $(TOP)/config/features.status: $(SRCDIR)/config/features $(CROSSTOOLS_BUILDFLAG)
84 @$(IF) ! $(TEST) -f $@ ; then \
85 $(ECHO) "Querying target compiler features..." ; \
86 cd $(TOP)/config ; CC="$(TARGET_CC) $(TARGET_SYSROOT)" CFLAGS="$(TARGET_CFLAGS) $(DEBUG_CFLAGS) $(OPTIMIZATION_CFLAGS)" CPP="$(TARGET_CPP) $(TARGET_SYSROOT)" CXX="$(TARGET_CXX) $(TARGET_SYSROOT)" CXXFLAGS=" $(TARGET_CXXFLAGS) $(DEBUG_CFLAGS) $(OPTIMIZATION_CFLAGS)" CONFIG_STATUS="features.status" $(SRCDIR)/config/features --host=$(AROS_BUILD_HOST) --with-config-dir=$(GENDIR)/config ; \
89 features: crosstools $(TOP)/config/features.status
90 @$(NOP)
92 $(GENMF): $(SRCDIR)/tools/genmf/genmf.py
93 @$(ECHO) Copying genmf...
94 @./config.status $(subst $(TOP)/,,$(GENMF)) genmf_executable
96 $(ELF2HUNK): $(SRCDIR)/tools/elf2hunk/elf2hunk.c
97 @$(ECHO) Building elf2hunk...
98 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/elf2hunk SRCDIR=$(SRCDIR) TOP=$(TOP)
100 $(ARCHTOOL): $(SRCDIR)/tools/archtools/archtool.c
101 @$(ECHO) Building archtool...
102 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/archtools SRCDIR=$(SRCDIR) TOP=$(TOP)
104 $(FLEXCAT): $(wildcard $(SRCDIR)/tools/flexcat/src/*.[ch]) $(wildcard $(SRCDIR)/tools/flexcat/src/sd/*.sd)
105 @$(ECHO) Building flexcat...
106 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/flexcat/src -f Makefile.aros SRCDIR=$(SRCDIR) TOP=$(TOP)
108 $(CREATEDTDESC): $(wildcard $(SRCDIR)/tools/dtdesc/*.[ch]) $(wildcard $(SRCDIR)/tools/dtdesc/c_iff/*.[ch])
109 @$(ECHO) Building createdtdesc...
110 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/dtdesc -f Makefile.aros SRCDIR=$(SRCDIR) TOP=$(TOP)
112 $(AFSLIB): $(wildcard $(SRCDIR)/workbench/devs/afs/*.[ch])
113 @$(ECHO) Building afslib...
114 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/copytoafs -f Makefile.afslib SRCDIR=$(SRCDIR) TOP=$(TOP)
116 $(COPYTOAFS): $(AFSLIB) $(SRCDIR)/tools/copytoafs/copytoafs.c
117 @$(ECHO) Building copytoafs...
118 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/copytoafs SRCDIR=$(SRCDIR) TOP=$(TOP)
120 $(ILBMTOC): $(SRCDIR)/tools/ilbmtoc/ilbmtoc.c
121 @$(ECHO) Building ilbmtoc...
122 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/ilbmtoc SRCDIR=$(SRCDIR) TOP=$(TOP)
124 $(ILBMTOICON): $(SRCDIR)/tools/ilbmtoicon/ilbmtoicon.c
125 @$(ECHO) Building ilbmtoicon...
126 @$(CALL) $(MAKE) $(MKARGS) $@ -C $(SRCDIR)/tools/ilbmtoicon SRCDIR=$(SRCDIR) TOP=$(TOP)
128 $(INFOINFO): $(SRCDIR)/tools/ilbmtoicon/infoinfo.c
129 @$(ECHO) Building infoinfo...
130 @$(CALL) $(MAKE) $(MKARGS) $@ -C $(SRCDIR)/tools/ilbmtoicon SRCDIR=$(SRCDIR) TOP=$(TOP)
132 $(COLLECT-AROS): $(wildcard $(SRCDIR)/tools/collect-aros/*.[hc])
133 @$(ECHO) Building collect-aros...
134 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/collect-aros SRCDIR=$(SRCDIR) TOP=$(TOP)
136 $(FD2INLINE): $(SRCDIR)/tools/fd2inline/fd2inline.c
137 @$(ECHO) Building fd2inline...
138 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2inline SRCDIR=$(SRCDIR) TOP=$(TOP)
140 $(FD2PRAGMA): $(SRCDIR)/tools/fd2pragma/fd2pragma.c
141 @$(ECHO) Building fd2pragma...
142 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2pragma SRCDIR=$(SRCDIR) TOP=$(TOP)
144 $(SFDC): $(SRCDIR)/tools/sfdc/*.pl
145 @$(ECHO) Building sfdc...
146 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/sfdc SRCDIR=$(SRCDIR) TOP=$(TOP)
148 $(SETREV): $(SRCDIR)/tools/setrev/setrev.c
149 @$(ECHO) Building setrev...
150 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/setrev SRCDIR=$(SRCDIR) TOP=$(TOP)
152 # MetaMake apparently requires a slighty different compilation. Probably
153 # because it is sort-of an external package as well.
155 mmake: $(TOP)/tools/MetaMake/Makefile $(MMAKE)
156 @$(NOP)
158 $(SRCDIR)/tools/MetaMake/configure: $(SRCDIR)/tools/MetaMake/configure.in
159 @$(ECHO) Building MetaMake...
160 @cd $(SRCDIR)/tools/MetaMake && @aros_host_aclocal@ && @aros_host_autoconf@
162 $(TOP)/tools/MetaMake/Makefile: $(SRCDIR)/tools/MetaMake/configure $(SRCDIR)/tools/MetaMake/Makefile.in
163 @$(IF) [ ! -d $(TOP)/tools/MetaMake ]; then \
164 $(MECHO) $(MKDIR) "$(TOP)/tools/MetaMake" ; \
165 $(MKDIR) "$(TOP)/tools/MetaMake"; \
167 @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
169 $(MMAKE): $(TOP)/tools/MetaMake/Makefile $(wildcard $(SRCDIR)/tools/MetaMake/*.[ch]) $(GENMF)
170 @$(MAKE) $(MKARGS) AUTOHEADER=@aros_host_autoheader@ -C $(TOP)/tools/MetaMake
171 @$(MAKE) $(MKARGS) -C $(TOP)/tools/MetaMake install
173 # Clean the sources and tools
174 clean:
175 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.clean
176 @$(MAKE) $(MKARGS) -C $(TOP)/tools/MetaMake clean SRCDIR=$(SRCDIR) TOP=$(TOP)
177 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/flexcat/src -f Makefile.aros clean SRCDIR=$(SRCDIR) TOP=$(TOP)
178 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/archtools clean SRCDIR=$(SRCDIR) TOP=$(TOP)
179 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/genmf clean
180 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/dtdesc -f Makefile.aros clean SRCDIR=$(SRCDIR) TOP=$(TOP)
181 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/collect-aros clean SRCDIR=$(SRCDIR) TOP=$(TOP)
182 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2inline clean SRCDIR=$(SRCDIR) TOP=$(TOP)
183 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2pragma clean SRCDIR=$(SRCDIR) TOP=$(TOP)
184 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/sfdc clean SRCDIR=$(SRCDIR) TOP=$(TOP)
185 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/setrev clean SRCDIR=$(SRCDIR) TOP=$(TOP)
186 -@$(RM) $(ARCHDIR) Makefile config.cache config.status config.log \
187 mmake.cache mmake.config rom/mmakefile config/make.cfg \
188 $(AROS_DEVELOPMENT)/include/aros/config.h \
189 $(GENDIR)/include/aros/config.h $(HOSTGENDIR)/config/host.cfg \
190 $(GENDIR)/config/target.cfg $(GENDIR)/config/make.defaults \
191 $(GENDIR)/config/specs \
192 $(TOOLDIR)/$(AROS_TARGET_CPU)-$(AROS_TARGET_ARCH)$(AROS_TARGET_SUFFIX)-aros-gcc \
193 $(TOOLDIR)/$(AROS_TARGET_CPU)-$(AROS_TARGET_ARCH)$(AROS_TARGET_SUFFIX)-aros-ld \
194 $(GENDIR)/scripts/genshared $(TOOLDIR)/genmf.py \
195 tools/adflib/myconf.aros tools/collect-aros/env.h
197 # Clean the sources and tools
198 arch-clean: clean
199 @$(NOP)
201 # Really clean all - like a clean checkout
202 dist-clean: arch-clean
203 @$(NOP)
205 # Don't try to generate $(TOP)/bin/$(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU)$(AROS_TARGET_SUFFIX)/gen/config/make.opts
206 $(TOP)/bin/$(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU)$(AROS_TARGET_SUFFIX)/gen/config/make.opts:
207 @$(NOP)
209 # targets which do not generate files or for which a file/directory exists
210 .PHONY: default all makedirs tools crosstools features docs clean arch-clean dist-clean install \
211 $(TOP)/bin/$(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU)$(AROS_TARGET_SUFFIX)/gen/config/make.opts \
212 test kernel boot workbench compiler contrib ports sdk mmake query
214 # Workaround for bug in make v3.81 (should normally be handled by .DEFAULT)
215 install test kernel boot workbench compiler contrib ports sdk : crosstools features $(CONFIGUREFILES)
216 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@
218 # Bypass crosstools target.
219 query: tools
220 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@
222 # Map MetaTargets to make targets : Call mmake with AROS.target
223 # This does not allow to check for dependancies, so it is not suitable for
224 # Calling standard main targets, but is usable as a shortcut for MetaMake
225 # if it was not installed globally
228 distfiles::
229 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@
231 # The '%-quick' and '%-clean' targets are special - we don't want to wait around
232 # for building crosstools if we just want to build one subtarget
233 %-quick %-clean:
234 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@
236 .DEFAULT: $(CONFIGUREFILES)
237 @$(MAKE) $(MKARGS) crosstools
238 @$(MAKE) $(MKARGS) crosstools features
239 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@