try to make sure compiler/include/mmakefile is always refreshed correctly.
[AROS.git] / config / make.cfg.in
blob2ddebd555d0d541db9ee33934807902fc0702732
1 # Copyright © 1995-2016, The AROS Development Team. All rights reserved.
2 # $Id$
4 # Static makefile rule file for AROS.
6 ifneq ($(AROS_TARGET_VARIANT),)
7 AROS_TARGET_SUFFIX=-$(AROS_TARGET_VARIANT)
8 ifeq ($(AROS_TARGET_ARCH),pc)
9 # 'pc' target has 'tiny' variant for boot floppy, which affects only GRUB options.
10 # It should not affect AROS_TARGET_PLATFORM
11 AROS_TARGET_PLATFORM := $(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU)
12 else
13 AROS_TARGET_PLATFORM := $(AROS_TARGET_VARIANT)-$(AROS_TARGET_CPU)
14 endif
15 else
16 AROS_TARGET_SUFFIX=
17 AROS_TARGET_PLATFORM := $(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU)
18 endif
20 # All files corresponding to a specific host go here.
21 HOSTDIR     := $(TOP)/bin/$(AROS_HOST_ARCH)-$(AROS_HOST_CPU)
22 TOOLDIR     := $(HOSTDIR)/tools
24 HOSTGENDIR  := $(HOSTDIR)/gen/host
26 # All files corresponding to a specific target go here.
27 TARGETDIR   := $(TOP)/bin/$(AROS_TARGET_ARCH)-$(AROS_TARGET_CPU)$(AROS_TARGET_SUFFIX)
29 GENDIR      := $(TARGETDIR)/gen
31 CC_PREFIX := @aros_cc_pre@
33 -include $(GENDIR)/config/make.defaults
34 -include $(GENDIR)/config/make.opts
36 # target.cfg *must* come before host.cfg,
37 # and both must come before build.cfg
38 include $(GENDIR)/config/target.cfg
39 include $(HOSTGENDIR)/config/host.cfg
40 include $(GENDIR)/config/build.cfg
42 # Cross tools installation directory.
43 CROSSTOOLSDIR        := @AROS_CROSSTOOLSDIR@
45 # Files downloaded from the net are put here
46 PORTSSOURCEDIR       := @AROS_PORTSSRCDIR@
47 PORTSDIR             := $(TARGETDIR)/Ports
49 # Distributable Files we generate are put here
50 DISTDIR              := @AROS_BUILDDIR_UNIX@/distfiles
52 # File for AROS gcc cross compiler spec file
53 SPECS                := $(GENDIR)/config/specs
55 # This is the directory structure for an AROS system.
56 AROSDIR              := $(TARGETDIR)/AROS
58 # Relative paths for standard directories
59 AROS_DIR_BOOT        := boot
60 AROS_DIR_C           := C
61 AROS_DIR_CLASSES     := Classes
62 AROS_DIR_DATATYPES   := $(AROS_DIR_CLASSES)/Datatypes
63 AROS_DIR_GADGETS     := $(AROS_DIR_CLASSES)/Gadgets
64 AROS_DIR_DEVS        := Devs
65 AROS_DIR_EXPANSION   := Expansion
66 AROS_DIR_FS          := L
67 AROS_DIR_LIBRARIES   := Libs
68 AROS_DIR_LOCALE      := Locale
69 AROS_DIR_S           := S
70 AROS_DIR_DEVELOPER := Developer
71 AROS_DIR_INCLUDE     := include
72 AROS_DIR_LIB         := lib
73 AROS_DIR_CONTRIB     := Extras
74 ifeq ($(AROS_TARGET_ARCH),pc)
75 AROS_DIR_ARCH        := boot/$(AROS_TARGET_ARCH)
76 else
77 AROS_DIR_ARCH        := boot/$(AROS_TARGET_ARCH)$(AROS_TARGET_SUFFIX)
78 endif
80 # Absolute paths for standard directories
81 AROSARCHDIR          := $(AROSDIR)/$(AROS_DIR_ARCH)
82 AROS_BOOT            := $(AROSDIR)/$(AROS_DIR_BOOT)
83 AROS_C               := $(AROSDIR)/$(AROS_DIR_C)
84 AROS_CLASSES         := $(AROSDIR)/$(AROS_DIR_CLASSES)
85 AROS_CLASSES_ARCH    := $(AROSDIR)/$(AROS_DIR_ARCH)/$(AROS_DIR_CLASSES)
86 AROS_DATATYPES       := $(AROSDIR)/$(AROS_DIR_DATATYPES)
87 AROS_GADGETS         := $(AROSDIR)/$(AROS_DIR_GADGETS)
88 AROS_DEVS            := $(AROSDIR)/$(AROS_DIR_DEVS)
89 AROS_DEVS_ARCH       := $(AROSDIR)/$(AROS_DIR_ARCH)/$(AROS_DIR_DEVS)
90 AROS_EXPANSION       := $(AROSDIR)/$(AROS_DIR_EXPANSION)
91 AROS_FS              := $(AROSDIR)/$(AROS_DIR_FS)
92 AROS_FS_ARCH         := $(AROSDIR)/$(AROS_DIR_ARCH)/$(AROS_DIR_FS)
93 AROS_RESOURCES       := $(AROS_DEVS)
94 AROS_DRIVERS         := $(AROS_DEVS)/Drivers
95 AROS_LIBRARIES       := $(AROSDIR)/$(AROS_DIR_LIBRARIES)
96 AROS_LIBRARIES_ARCH  := $(AROSDIR)/$(AROS_DIR_ARCH)/$(AROS_DIR_LIBRARIES)
97 AROS_LOCALE          := $(AROSDIR)/$(AROS_DIR_LOCALE)
98 AROS_CATALOGS        := $(AROS_LOCALE)/Catalogs
99 AROS_HELP            := $(AROS_LOCALE)/Help
100 AROS_PREFS           := $(AROSDIR)/Prefs
101 AROS_ENVARC          := $(AROS_PREFS)/Env-Archive
102 AROS_PACKAGES        := $(AROS_ENVARC)/SYS/Packages
103 AROS_PRINTERS        := $(AROS_DEVS)/Printers
104 AROS_S               := $(AROSDIR)/$(AROS_DIR_S)
105 AROS_SYSTEM          := $(AROSDIR)/System
106 AROS_WANDERER        := $(AROS_SYSTEM)/Wanderer
107 AROS_THEMES          := $(AROS_PREFS)/Presets/Themes
108 AROS_IMAGES          := $(AROS_SYSTEM)/Images
109 AROS_TOOLS           := $(AROSDIR)/Tools
110 AROS_UTILITIES       := $(AROSDIR)/Utilities
112 AROS_DEVELOPER       := $(AROSDIR)/$(AROS_DIR_DEVELOPER)
113 AROS_DEBUG           := $(AROS_DEVELOPER)/Debug
114 AROS_TESTS           := $(AROS_DEBUG)/Tests
115 AROS_INCLUDES        := $(AROS_DEVELOPER)/$(AROS_DIR_INCLUDE)
116 AROS_LIB             := $(AROS_DEVELOPER)/$(AROS_DIR_LIB)
118 AROS_CONTRIB            := $(AROSDIR)/$(AROS_DIR_CONTRIB)
119 AROS_CONTRIB_DEVELOPER  := $(AROS_CONTRIB)/$(AROS_DIR_DEVELOPER)
120 AROS_CONTRIB_INCLUDES   := $(AROS_CONTRIB_DEVELOPER)/$(AROS_DIR_INCLUDE)
121 AROS_CONTRIB_LIB        := $(AROS_CONTRIB_DEVELOPER)/$(AROS_DIR_LIB)
123 # The generated files all go under the GENDIR path
124 SCRIPTDIR            := $(GENDIR)/scripts
126 MKDEPEND             := $(SRCDIR)/scripts/mkdep
127 FETCH                := $(SRCDIR)/scripts/fetch.sh
128 CPYDIRREC            := @PYTHON@ $(SRCDIR)/scripts/cpy-dir-rec.py
130 # The paths to the generated tools
131 TOOLDIR         := $(HOSTDIR)/tools
132 TOOLLIB         := $(TOOLDIR)/libtool.a
133 MMAKE           := $(TOOLDIR)/mmake$(HOST_EXE_SUFFIX)
134 ARCHTOOL        := $(TOOLDIR)/archtool$(HOST_EXE_SUFFIX)
135 ELF2HUNK        := $(TOOLDIR)/elf2hunk$(HOST_EXE_SUFFIX)
136 GENMF           := $(TOOLDIR)/genmf.py
137 FLEXCAT         := $(TOOLDIR)/flexcat$(HOST_EXE_SUFFIX)
138 FD2INLINE       := $(TOOLDIR)/fd2inline$(HOST_EXE_SUFFIX)
139 FD2PRAGMA       := $(TOOLDIR)/fd2pragma$(HOST_EXE_SUFFIX)
140 SFDC            := $(TOOLDIR)/sfdc
141 MODTOOL         := $(TOOLDIR)/modtool$(HOST_EXE_SUFFIX)
142 CREATEDTDESC    := $(TOOLDIR)/createdtdesc$(HOST_EXE_SUFFIX)
143 AFSLIB          := $(TOOLDIR)/libafs.a
144 COPYTOAFS       := $(TOOLDIR)/copytoafs$(HOST_EXE_SUFFIX)
145 ILBMTOC         := $(TOOLDIR)/ilbmtoc$(HOST_EXE_SUFFIX)
146 ILBMTOICON      := $(TOOLDIR)/ilbmtoicon$(HOST_EXE_SUFFIX)
147 INFOINFO        := $(TOOLDIR)/infoinfo$(HOST_EXE_SUFFIX)
148 GENSETS         := $(TOOLDIR)/gensets$(HOST_EXE_SUFFIX)
149 COLLECT-AROS    := $(TOOLDIR)/collect-aros$(HOST_EXE_SUFFIX)
150 GENMODULE       := $(TOOLDIR)/genmodule$(HOST_EXE_SUFFIX)
151 SETREV          := $(TOOLDIR)/setrev$(HOST_EXE_SUFFIX)
153 RESIDENT_BEGIN  := compiler/libinit/libentry
154 KICKSTART_BEGIN := compiler/libinit/kickentry
156 AROS_CC         := $(TARGET_CC)
157 ifneq ($(TARGET_CXX),)
158 AROS_CXX        := $(TARGET_CXX)
159 else
160 AROS_CXX        := $(CROSSTOOLSDIR)/$(AROS_TARGET_CPU)-aros-g++
161 endif
162 AROS_CXXEXTS    := cpp cxx cc c++
163 AROS_AS         := $(TARGET_AS)
164 AROS_LD         := $(TARGET_LD)
166 STRIP           := $(TARGET_STRIP)
168 CALL            := env AROS_HOST_ARCH=$(AROS_HOST_ARCH) AROS_HOST_CPU=$(AROS_HOST_CPU) \
169                        AROS_TARGET_ARCH=$(AROS_TARGET_ARCH) AROS_TARGET_CPU=$(AROS_TARGET_CPU) AROS_TARGET_CPU_MODE=$(AROS_TARGET_CPU_MODE) \
170                        AROS_TARGET_VARIANT=$(AROS_TARGET_VARIANT) AROS_TARGET_SUFFIX=$(AROS_TARGET_SUFFIX)
172 # At the moment we have two copies of the includes...
173 # This is the AROS includes, minus clib/mlib.
174 GENINCDIR       := $(GENDIR)/include
176 # Basic make configuration. No need to edit anything else under here.
178 .SUFFIXES :
179 .SUFFIXES : .c .h .d .s .S
181 .PHONY : all clean setup subdirs
183 BASE_CFLAGS := $(CONFIG_BASE_CFLAGS)
184 BASE_CXXFLAGS := $(CONFIG_BASE_CXXFLAGS)
186 # Was debugging enabled? Better set up the options.
187 ifeq ($(DEBUG),yes)
188 BASE_CFLAGS += $(DEBUG_CFLAGS)
189 BASE_CXXFLAGS += $(DEBUG_CXXFLAGS)
190 CONFIG_CFLAGS += $(DEBUG_CFLAGS)
191 CONFIG_CXXFLAGS += $(DEBUG_CXXFLAGS)
192 CONFIG_AFLAGS += $(DEBUG_AFLAGS)
193 CONFIG_LDFLAGS += $(DEBUG_LDFLAGS)
194 HOST_CFLAGS += $(DEBUG_CFLAGS)
195 HOST_CXXFLAGS += $(DEBUG_CXXFLAGS)
196 HOST_AFLAGS += $(DEBUG_AFLAGS)
197 HOST_LDFLAGS += $(DEBUG_LDFLAGS)
198 MECHO   := $(ECHO)
199 else
200 MECHO   := $(NOP)
201 endif
203 # compiler and assembler flags are set depending upon the directory
204 CFLAGS      = $(TARGET_CFLAGS)
205 CXXFLAGS    = $(TARGET_CXXFLAGS)
206 AFLAGS      = $(ISA_FLAGS) $(USER_AFLAGS) $(CONFIG_AFLAGS)
207 LDFLAGS     = $(USER_LDFLAGS) $(CONFIG_LDFLAGS)
209 # if LTO is desired use these flags ...
210 # NB: make.tmpl builds the objects individualy
211 #     so we dont include -fwhole-program for
212 #     binaries by default.
213 LTO_CFLAGS  = $(CFLAGS_LTO)
214 LTO_BINARY_CFLAGS = $(LTO_CFLAGS)
215 LTO_BINARYWHOLE_CFLAGS = $(LTO_BINARY_CFLAGS) $(CFLAGS_WHOLE_PROGRAM)
217 # Apple iOS stuff for gcc
218 IOS_LDFLAGS  := -F$(IOS_SDK_PATH)/System/Library/Frameworks
220 # Compatibility with old variables
221 OBJDIR          :=      $(GENDIR)/$(CURDIR)
222 LIBDIR          :=      $(AROS_LIB)
223 OSGENDIR        :=      $(GENDIR)/rom
224 KOBJSDIR        :=      $(GENDIR)/kobjs
226 # the build system needs to have some tools in the PATH
228 ifeq ($(AROS_PATH_SET),)
229     TMP_TOOLDIR       := $(shell echo $(TOOLDIR) | sed 's/^\(.\):\//\/\1\//')
230     TMP_CROSSTOOLSDIR := $(shell echo $(CROSSTOOLSDIR) | sed 's/^\(.\):\//\/\1\//')
231     PATH := $(TMP_CROSSTOOLSDIR):$(TMP_TOOLDIR):$(TMP_TOOLDIR)/$(AROS_TARGET_CPU)-$(AROS_TARGET_ARCH)$(AROS_TARGET_SUFFIX):$(PATH)
232     AROS_PATH_SET := yes
233     export PATH AROS_PATH_SET
234 endif
236 # Here follow some global variables that can get values through the makefile
237 # and will be handled in make.tail
239 # Dirs to create a makedir rule for
240 GLOB_MKDIRS :=
242 # Source directory is added to the target search path
243 VPATH := $(shell echo $(SRCDIR)/$(CURDIR) | sed 's/^\(.\):\//\/\1\//')
245 # Macro for expanding wildcards in source directory
246 # We use shell script here in order to avoid Unicode file names that are listed by pattern expansion but can't be accessed
247 # because of failing Unicode->ACP conversion under Windows
248 WILDCARD = $(shell cd $(SRCDIR)/$(CURDIR); for file in $(1); do if [ -f $$file ]; then printf "%s" "$$file "; fi; done)