Fixed warnings.
[AROS.git] / Makefile.in
blob7c4735900ed18538bc106b7327ef621b0a79d230
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
25 MMAKE_OPTIONS ?= --srcdir=$(SRCDIR) --builddir=$(TOP)
26 ifneq (,$(findstring s,$(MAKEFLAGS)))
27 MMAKE_OPTIONS += -q
28 endif
30 all: crosstools features
31 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.AROS
33 makedirs:
34 @$(RM) $(TOP)/errors
35 @$(FOR) dir in $(AROSDIR) $(GENDIR) $(TOOLDIR) ; do \
36 $(IF) [ ! -d $$dir ]; then \
37 $(MECHO) $(MKDIR) "$$dir" ; \
38 $(MKDIR) "$$dir" ; \
39 else true ; fi ; \
40 done
41 @$(IF) [ ! -f $(AROSDIR)/.gdbinit ]; then \
42 $(CP) $(SRCDIR)/_gdbinit $(AROSDIR)/.gdbinit ; \
43 else true ; fi
45 # Create the tools that are used to build AROS.
46 tools : makedirs mmake $(TOOLLIB) $(GENMF) $(ARCHTOOL) $(ELF2HUNK) \
47 $(FLEXCAT) $(CREATEDTDESC) \
48 $(ILBMTOC) $(ILBMTOICON) $(INFOINFO) \
49 $(COLLECT-AROS) $(AFSLIB) $(COPYTOAFS) \
50 $(FD2INLINE) $(FD2PRAGMA) $(SFDC) $(SETREV)
52 crosstools : tools
53 ifneq ($(CROSSTOOLS_TARGET),)
54 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$(CROSSTOOLS_TARGET)
55 else
56 @$(NOP)
57 endif
59 features : crosstools
60 @$(ECHO) Querying target compiler features...
61 @cd $(TOP) ; CC="$(TARGET_CC) $(TARGET_SYSROOT) -I$(AROS_DEVELOPMENT)/include" CFLAGS="$(TARGET_CFLAGS) $(DEBUG_CFLAGS) $(OPTIMIZATION_CFLAGS)" CPP="$(TARGET_CPP) $(TARGET_SYSROOT)" CXX="$(TARGET_CXX) $(TARGET_SYSROOT) -I$(AROS_DEVELOPMENT)/include" CXXFLAGS=" $(TARGET_CXXFLAGS) $(DEBUG_CFLAGS) $(OPTIMIZATION_CFLAGS)" $(SRCDIR)/features --host=$(AROS_BUILD_HOST) --with-config-dir=$(GENDIR)/config
63 $(TOOLLIB) : $(wildcard $(SRCDIR)/tools/toollib/*.[ch])
64 @$(ECHO) Building toollib...
65 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/toollib SRCDIR=$(SRCDIR) TOP=$(TOP) CURDIR=toollib
67 $(GENMF) : $(SRCDIR)/tools/genmf/genmf.py
68 @$(ECHO) Copying genmf...
69 @./config.status $(subst $(TOP)/,,$(GENMF)) genmf_executable
71 $(ELF2HUNK) : $(SRCDIR)/tools/elf2hunk/elf2hunk.c
72 @$(ECHO) Building elf2hunk...
73 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/elf2hunk SRCDIR=$(SRCDIR) TOP=$(TOP)
75 $(ARCHTOOL) : $(SRCDIR)/tools/archtools/archtool.c
76 @$(ECHO) Building archtool...
77 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/archtools SRCDIR=$(SRCDIR) TOP=$(TOP)
79 $(FLEXCAT) : $(wildcard $(SRCDIR)/tools/flexcat/src/*.[ch]) $(wildcard $(SRCDIR)/tools/flexcat/src/sd/*.sd)
80 @$(ECHO) Building flexcat...
81 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/flexcat/src -f Makefile.aros SRCDIR=$(SRCDIR) TOP=$(TOP)
83 $(CREATEDTDESC) : $(wildcard $(SRCDIR)/tools/dtdesc/*.[ch]) $(wildcard $(SRCDIR)/tools/dtdesc/c_iff/*.[ch])
84 @$(ECHO) Building createdtdesc...
85 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/dtdesc -f Makefile.aros SRCDIR=$(SRCDIR) TOP=$(TOP)
87 $(AFSLIB) : $(wildcard $(SRCDIR)/workbench/devs/afs/*.[ch])
88 @$(ECHO) Building afslib...
89 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/copytoafs -f Makefile.afslib SRCDIR=$(SRCDIR) TOP=$(TOP)
91 $(COPYTOAFS) : $(AFSLIB) $(SRCDIR)/tools/copytoafs/copytoafs.c
92 @$(ECHO) Building copytoafs...
93 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/copytoafs SRCDIR=$(SRCDIR) TOP=$(TOP)
95 $(ILBMTOC) : $(SRCDIR)/tools/ilbmtoc/ilbmtoc.c
96 @$(ECHO) Building ilbmtoc...
97 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/ilbmtoc SRCDIR=$(SRCDIR) TOP=$(TOP)
99 $(ILBMTOICON) : $(SRCDIR)/tools/ilbmtoicon/ilbmtoicon.c
100 @$(ECHO) Building ilbmtoicon...
101 @$(CALL) $(MAKE) $(MKARGS) $@ -C $(SRCDIR)/tools/ilbmtoicon SRCDIR=$(SRCDIR) TOP=$(TOP)
103 $(INFOINFO) : $(SRCDIR)/tools/ilbmtoicon/infoinfo.c
104 @$(ECHO) Building infoinfo...
105 @$(CALL) $(MAKE) $(MKARGS) $@ -C $(SRCDIR)/tools/ilbmtoicon SRCDIR=$(SRCDIR) TOP=$(TOP)
107 $(COLLECT-AROS) : $(wildcard $(SRCDIR)/tools/collect-aros/*.[hc])
108 @$(ECHO) Building collect-aros...
109 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/collect-aros SRCDIR=$(SRCDIR) TOP=$(TOP)
111 $(FD2INLINE) : $(SRCDIR)/tools/fd2inline/fd2inline.c
112 @$(ECHO) Building fd2inline...
113 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2inline SRCDIR=$(SRCDIR) TOP=$(TOP)
115 $(FD2PRAGMA) : $(SRCDIR)/tools/fd2pragma/fd2pragma.c
116 @$(ECHO) Building fd2pragma...
117 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2pragma SRCDIR=$(SRCDIR) TOP=$(TOP)
119 $(SFDC) : $(SRCDIR)/tools/sfdc/*.pl
120 @$(ECHO) Building sfdc...
121 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/sfdc SRCDIR=$(SRCDIR) TOP=$(TOP)
123 $(SETREV) : $(SRCDIR)/tools/setrev/setrev.c
124 @$(ECHO) Building setrev...
125 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/setrev SRCDIR=$(SRCDIR) TOP=$(TOP)
127 # MetaMake apparently requires a slighty different compilation. Probably
128 # because it is sort-of an external package as well.
130 mmake : $(TOP)/tools/MetaMake/Makefile $(MMAKE)
132 $(SRCDIR)/tools/MetaMake/configure : $(SRCDIR)/tools/MetaMake/configure.in
133 @$(ECHO) Building MetaMake...
134 @cd $(SRCDIR)/tools/MetaMake && @aros_host_aclocal@ && @aros_host_autoconf@
136 $(TOP)/tools/MetaMake/Makefile : $(SRCDIR)/tools/MetaMake/configure $(SRCDIR)/tools/MetaMake/Makefile.in
137 @$(IF) [ ! -d $(TOP)/tools/MetaMake ]; then \
138 $(MECHO) $(MKDIR) "$(TOP)/tools/MetaMake" ; \
139 $(MKDIR) "$(TOP)/tools/MetaMake"; \
141 @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
143 $(MMAKE): $(TOP)/tools/MetaMake/Makefile $(wildcard $(SRCDIR)/tools/MetaMake/*.[ch]) $(GENMF)
144 @$(MAKE) $(MKARGS) AUTOHEADER=@aros_host_autoheader@ -C $(TOP)/tools/MetaMake
145 @$(MAKE) $(MKARGS) -C $(TOP)/tools/MetaMake install
147 # Clean the sources and tools
148 clean:
149 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.clean
150 @$(MAKE) $(MKARGS) -C $(TOP)/tools/MetaMake clean SRCDIR=$(SRCDIR) TOP=$(TOP)
151 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/flexcat/src -f Makefile.aros clean SRCDIR=$(SRCDIR) TOP=$(TOP)
152 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/archtools clean SRCDIR=$(SRCDIR) TOP=$(TOP)
153 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/genmf clean
154 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/toollib clean SRCDIR=$(SRCDIR) TOP=$(TOP)
155 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/dtdesc -f Makefile.aros clean SRCDIR=$(SRCDIR) TOP=$(TOP)
156 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/collect-aros clean SRCDIR=$(SRCDIR) TOP=$(TOP)
157 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2inline clean SRCDIR=$(SRCDIR) TOP=$(TOP)
158 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2pragma clean SRCDIR=$(SRCDIR) TOP=$(TOP)
159 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/sfdc clean SRCDIR=$(SRCDIR) TOP=$(TOP)
160 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/setrev 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 features 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 features
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 @$(MAKE) $(MKARGS) crosstools features
214 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@