Updated. Searching for files and executing them by
[AROS.git] / Makefile.in
bloba2d2928b0e907947c8f5f4b17dc90798957c4eba
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 $(TOP)/.features : crosstools $(SRCDIR)/features
60 @$(IF) ! $(TEST) -f $@ ; then
61 @$(ECHO) "Querying target compiler features..."
62 @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
66 features : crosstools
68 $(TOOLLIB) : $(wildcard $(SRCDIR)/tools/toollib/*.[ch])
69 @$(ECHO) Building toollib...
70 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/toollib SRCDIR=$(SRCDIR) TOP=$(TOP) CURDIR=toollib
72 $(GENMF) : $(SRCDIR)/tools/genmf/genmf.py
73 @$(ECHO) Copying genmf...
74 @./config.status $(subst $(TOP)/,,$(GENMF)) genmf_executable
76 $(ELF2HUNK) : $(SRCDIR)/tools/elf2hunk/elf2hunk.c
77 @$(ECHO) Building elf2hunk...
78 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/elf2hunk SRCDIR=$(SRCDIR) TOP=$(TOP)
80 $(ARCHTOOL) : $(SRCDIR)/tools/archtools/archtool.c
81 @$(ECHO) Building archtool...
82 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/archtools SRCDIR=$(SRCDIR) TOP=$(TOP)
84 $(FLEXCAT) : $(wildcard $(SRCDIR)/tools/flexcat/src/*.[ch]) $(wildcard $(SRCDIR)/tools/flexcat/src/sd/*.sd)
85 @$(ECHO) Building flexcat...
86 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/flexcat/src -f Makefile.aros SRCDIR=$(SRCDIR) TOP=$(TOP)
88 $(CREATEDTDESC) : $(wildcard $(SRCDIR)/tools/dtdesc/*.[ch]) $(wildcard $(SRCDIR)/tools/dtdesc/c_iff/*.[ch])
89 @$(ECHO) Building createdtdesc...
90 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/dtdesc -f Makefile.aros SRCDIR=$(SRCDIR) TOP=$(TOP)
92 $(AFSLIB) : $(wildcard $(SRCDIR)/workbench/devs/afs/*.[ch])
93 @$(ECHO) Building afslib...
94 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/copytoafs -f Makefile.afslib SRCDIR=$(SRCDIR) TOP=$(TOP)
96 $(COPYTOAFS) : $(AFSLIB) $(SRCDIR)/tools/copytoafs/copytoafs.c
97 @$(ECHO) Building copytoafs...
98 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/copytoafs SRCDIR=$(SRCDIR) TOP=$(TOP)
100 $(ILBMTOC) : $(SRCDIR)/tools/ilbmtoc/ilbmtoc.c
101 @$(ECHO) Building ilbmtoc...
102 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/ilbmtoc SRCDIR=$(SRCDIR) TOP=$(TOP)
104 $(ILBMTOICON) : $(SRCDIR)/tools/ilbmtoicon/ilbmtoicon.c
105 @$(ECHO) Building ilbmtoicon...
106 @$(CALL) $(MAKE) $(MKARGS) $@ -C $(SRCDIR)/tools/ilbmtoicon SRCDIR=$(SRCDIR) TOP=$(TOP)
108 $(INFOINFO) : $(SRCDIR)/tools/ilbmtoicon/infoinfo.c
109 @$(ECHO) Building infoinfo...
110 @$(CALL) $(MAKE) $(MKARGS) $@ -C $(SRCDIR)/tools/ilbmtoicon SRCDIR=$(SRCDIR) TOP=$(TOP)
112 $(COLLECT-AROS) : $(wildcard $(SRCDIR)/tools/collect-aros/*.[hc])
113 @$(ECHO) Building collect-aros...
114 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/collect-aros SRCDIR=$(SRCDIR) TOP=$(TOP)
116 $(FD2INLINE) : $(SRCDIR)/tools/fd2inline/fd2inline.c
117 @$(ECHO) Building fd2inline...
118 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2inline SRCDIR=$(SRCDIR) TOP=$(TOP)
120 $(FD2PRAGMA) : $(SRCDIR)/tools/fd2pragma/fd2pragma.c
121 @$(ECHO) Building fd2pragma...
122 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2pragma SRCDIR=$(SRCDIR) TOP=$(TOP)
124 $(SFDC) : $(SRCDIR)/tools/sfdc/*.pl
125 @$(ECHO) Building sfdc...
126 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/sfdc SRCDIR=$(SRCDIR) TOP=$(TOP)
128 $(SETREV) : $(SRCDIR)/tools/setrev/setrev.c
129 @$(ECHO) Building setrev...
130 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/setrev SRCDIR=$(SRCDIR) TOP=$(TOP)
132 # MetaMake apparently requires a slighty different compilation. Probably
133 # because it is sort-of an external package as well.
135 mmake : $(TOP)/tools/MetaMake/Makefile $(MMAKE)
137 $(SRCDIR)/tools/MetaMake/configure : $(SRCDIR)/tools/MetaMake/configure.in
138 @$(ECHO) Building MetaMake...
139 @cd $(SRCDIR)/tools/MetaMake && @aros_host_aclocal@ && @aros_host_autoconf@
141 $(TOP)/tools/MetaMake/Makefile : $(SRCDIR)/tools/MetaMake/configure $(SRCDIR)/tools/MetaMake/Makefile.in
142 @$(IF) [ ! -d $(TOP)/tools/MetaMake ]; then \
143 $(MECHO) $(MKDIR) "$(TOP)/tools/MetaMake" ; \
144 $(MKDIR) "$(TOP)/tools/MetaMake"; \
146 @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
148 $(MMAKE): $(TOP)/tools/MetaMake/Makefile $(wildcard $(SRCDIR)/tools/MetaMake/*.[ch]) $(GENMF)
149 @$(MAKE) $(MKARGS) AUTOHEADER=@aros_host_autoheader@ -C $(TOP)/tools/MetaMake
150 @$(MAKE) $(MKARGS) -C $(TOP)/tools/MetaMake install
152 # Clean the sources and tools
153 clean:
154 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.clean
155 @$(MAKE) $(MKARGS) -C $(TOP)/tools/MetaMake clean SRCDIR=$(SRCDIR) TOP=$(TOP)
156 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/flexcat/src -f Makefile.aros clean SRCDIR=$(SRCDIR) TOP=$(TOP)
157 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/archtools clean SRCDIR=$(SRCDIR) TOP=$(TOP)
158 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/genmf clean
159 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/toollib clean SRCDIR=$(SRCDIR) TOP=$(TOP)
160 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/dtdesc -f Makefile.aros clean SRCDIR=$(SRCDIR) TOP=$(TOP)
161 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/collect-aros clean SRCDIR=$(SRCDIR) TOP=$(TOP)
162 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2inline clean SRCDIR=$(SRCDIR) TOP=$(TOP)
163 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/fd2pragma clean SRCDIR=$(SRCDIR) TOP=$(TOP)
164 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/sfdc clean SRCDIR=$(SRCDIR) TOP=$(TOP)
165 @$(CALL) $(MAKE) $(MKARGS) -C $(SRCDIR)/tools/setrev clean SRCDIR=$(SRCDIR) TOP=$(TOP)
166 -@$(RM) $(ARCHDIR) Makefile config.cache config.status config.log \
167 mmake.cache mmake.config rom/mmakefile config/make.cfg \
168 $(AROS_DEVELOPMENT)/include/aros/config.h \
169 $(GENDIR)/include/aros/config.h $(HOSTGENDIR)/config/host.cfg \
170 $(GENDIR)/config/target.cfg $(GENDIR)/config/make.defaults \
171 $(GENDIR)/config/specs \
172 $(TOOLDIR)/$(AROS_TARGET_CPU)-$(AROS_TARGET_ARCH)$(AROS_TARGET_SUFFIX)-aros-gcc \
173 $(TOOLDIR)/$(AROS_TARGET_CPU)-$(AROS_TARGET_ARCH)$(AROS_TARGET_SUFFIX)-aros-ld \
174 $(GENDIR)/scripts/genshared $(TOOLDIR)/genmf.py \
175 tools/adflib/myconf.aros tools/collect-aros/env.h
177 # Clean the sources and tools
178 arch-clean: clean
179 @$(NOP)
181 # Really clean all - like a clean checkout
182 dist-clean: arch-clean
183 @$(NOP)
185 # Don't try to generate $(TOP)/bin/$(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU)$(AROS_TARGET_SUFFIX)/gen/config/make.opts
186 $(TOP)/bin/$(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU)$(AROS_TARGET_SUFFIX)/gen/config/make.opts:
187 @$(NOP)
189 # targets which do not generate files or for which a file/directory exists
190 .PHONY: default all makedirs tools crosstools features docs clean arch-clean dist-clean install \
191 $(TOP)/bin/$(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU)$(AROS_TARGET_SUFFIX)/gen/config/make.opts \
192 test kernel boot workbench compiler contrib ports sdk mmake query
194 # Workaround for bug in make v3.81 (should normally be handled by .DEFAULT)
195 install test kernel boot workbench compiler contrib ports sdk : crosstools features
196 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@
198 # Bypass crosstools target.
199 query : tools
200 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@
202 # Map MetaTargets to make targets : Call mmake with AROS.target
203 # This does not allow to check for dependancies, so it is not suitable for
204 # Calling standard main targets, but is usable as a shortcut for MetaMake
205 # if it was not installed globally
208 distfiles::
209 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@
211 # The '%-quick' and '%-clean' targets are special - we don't want to wait around
212 # for building crosstools if we just want to build one subtarget
213 %-quick %-clean:
214 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@
216 .DEFAULT :
217 @$(MAKE) $(MKARGS) crosstools
218 @$(MAKE) $(MKARGS) crosstools features
219 @+$(CALL) $(MMAKE) $(MMAKE_OPTIONS) AROS.$@