]> git.ipfire.org Git - people/ms/u-boot.git/blame - config.mk
Use bash for default GNU Make shell application
[people/ms/u-boot.git] / config.mk
CommitLineData
e2211743 1#
f9328639 2# (C) Copyright 2000-2006
e2211743
WD
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
24#########################################################################
25
f9328639
MB
26ifneq ($(OBJTREE),$(SRCTREE))
27ifeq ($(CURDIR),$(SRCTREE))
511d0c72 28dir :=
f9328639
MB
29else
30dir := $(subst $(SRCTREE)/,,$(CURDIR))
31endif
32
33obj := $(if $(dir),$(OBJTREE)/$(dir)/,$(OBJTREE)/)
34src := $(if $(dir),$(SRCTREE)/$(dir)/,$(SRCTREE)/)
35
36$(shell mkdir -p $(obj))
37else
38obj :=
39src :=
40endif
41
592c5cab
WD
42# clean the slate ...
43PLATFORM_RELFLAGS =
44PLATFORM_CPPFLAGS =
45PLATFORM_LDFLAGS =
46
e2211743
WD
47#########################################################################
48
49CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
50 else if [ -x /bin/bash ]; then echo /bin/bash; \
51 else echo sh; fi ; fi)
52
53ifeq ($(HOSTOS)-$(HOSTARCH),darwin-ppc)
54HOSTCC = cc
55else
56HOSTCC = gcc
57endif
58HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
59HOSTSTRIP = strip
60
61#########################################################################
1820d4c7
WD
62#
63# Option checker (courtesy linux kernel) to ensure
64# only supported compiler options are used
65#
66cc-option = $(shell if $(CC) $(CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
9b880bd4 67 > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
e2211743
WD
68
69#
70# Include the make variables (CC, etc...)
71#
72AS = $(CROSS_COMPILE)as
73LD = $(CROSS_COMPILE)ld
74CC = $(CROSS_COMPILE)gcc
75CPP = $(CC) -E
76AR = $(CROSS_COMPILE)ar
77NM = $(CROSS_COMPILE)nm
94a91e24 78LDR = $(CROSS_COMPILE)ldr
e2211743
WD
79STRIP = $(CROSS_COMPILE)strip
80OBJCOPY = $(CROSS_COMPILE)objcopy
81OBJDUMP = $(CROSS_COMPILE)objdump
82RANLIB = $(CROSS_COMPILE)RANLIB
83
c4e5f52a
WD
84#########################################################################
85
86# Load generated board configuration
87sinclude $(OBJTREE)/include/autoconf.mk
88
89ifdef ARCH
90sinclude $(TOPDIR)/$(ARCH)_config.mk # include architecture dependend rules
91endif
92ifdef CPU
93sinclude $(TOPDIR)/cpu/$(CPU)/config.mk # include CPU specific rules
94endif
95ifdef SOC
96sinclude $(TOPDIR)/cpu/$(CPU)/$(SOC)/config.mk # include SoC specific rules
97endif
98ifdef VENDOR
99BOARDDIR = $(VENDOR)/$(BOARD)
100else
101BOARDDIR = $(BOARD)
102endif
103ifdef BOARD
104sinclude $(TOPDIR)/board/$(BOARDDIR)/config.mk # include board specific rules
105endif
106
107#########################################################################
108
1954be6e
WD
109ifneq (,$(findstring s,$(MAKEFLAGS)))
110ARFLAGS = cr
111else
2b208f53 112ARFLAGS = crv
1954be6e 113endif
e2211743 114RELFLAGS= $(PLATFORM_RELFLAGS)
9acb626f 115DBGFLAGS= -g # -DDEBUG
e2211743 116OPTFLAGS= -Os #-fomit-frame-pointer
6dd652fa 117ifndef LDSCRIPT
4aeb251f 118#LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
887e2ec9
SR
119ifeq ($(CONFIG_NAND_U_BOOT),y)
120LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
121else
e2211743 122LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
6dd652fa 123endif
887e2ec9 124endif
6dd652fa 125OBJCFLAGS += --gap-fill=0xff
e2211743 126
b783edae
WD
127gccincdir := $(shell $(CC) -print-file-name=include)
128
e2211743 129CPPFLAGS := $(DBGFLAGS) $(OPTFLAGS) $(RELFLAGS) \
161b2af4
MF
130 -D__KERNEL__
131ifneq ($(TEXT_BASE),)
132CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE)
133endif
f9328639
MB
134
135ifneq ($(OBJTREE),$(SRCTREE))
136CPPFLAGS += -I$(OBJTREE)/include2 -I$(OBJTREE)/include
137endif
138
139CPPFLAGS += -I$(TOPDIR)/include
53677ef1 140CPPFLAGS += -fno-builtin -ffreestanding -nostdinc \
f9328639 141 -isystem $(gccincdir) -pipe $(PLATFORM_CPPFLAGS)
e2211743
WD
142
143ifdef BUILD_TAG
144CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes \
145 -DBUILD_TAG='"$(BUILD_TAG)"'
146else
147CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes
148endif
149
28eab0d7
HS
150CFLAGS += $(call cc-option,-fno-stack-protector)
151
c40b2956
WD
152# avoid trigraph warnings while parsing pci.h (produced by NIOS gcc-2.9)
153# this option have to be placed behind -Wall -- that's why it is here
154ifeq ($(ARCH),nios)
155ifeq ($(findstring 2.9,$(shell $(CC) --version)),2.9)
e4cc71aa 156CFLAGS := $(CPPFLAGS) -Wall -Wno-trigraphs
c40b2956
WD
157endif
158endif
159
e11887a7
HS
160# $(CPPFLAGS) sets -g, which causes gcc to pass a suitable -g<format>
161# option to the assembler.
162AFLAGS_DEBUG :=
b62fa913 163
483a0cf8
MB
164# turn jbsr into jsr for m68k
165ifeq ($(ARCH),m68k)
166ifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4)
167AFLAGS_DEBUG := -Wa,-gstabs,-S
168endif
483a0cf8 169endif
b62fa913 170
e2211743
WD
171AFLAGS := $(AFLAGS_DEBUG) -D__ASSEMBLY__ $(CPPFLAGS)
172
161b2af4
MF
173LDFLAGS += -Bstatic -T $(LDSCRIPT) $(PLATFORM_LDFLAGS)
174ifneq ($(TEXT_BASE),)
175LDFLAGS += -Ttext $(TEXT_BASE)
176endif
e2211743
WD
177
178# Location of a usable BFD library, where we define "usable" as
179# "built for ${HOST}, supports ${TARGET}". Sensible values are
180# - When cross-compiling: the root of the cross-environment
181# - Linux/ppc (native): /usr
182# - NetBSD/ppc (native): you lose ... (must extract these from the
183# binutils build directory, plus the native and U-Boot include
184# files don't like each other)
185#
186# So far, this is used only by tools/gdb/Makefile.
187
188ifeq ($(HOSTOS)-$(HOSTARCH),darwin-ppc)
189BFD_ROOT_DIR = /usr/local/tools
190else
ea909b76
WD
191ifeq ($(HOSTARCH),$(ARCH))
192# native
193BFD_ROOT_DIR = /usr
194else
e2211743
WD
195#BFD_ROOT_DIR = /LinuxPPC/CDK # Linux/i386
196#BFD_ROOT_DIR = /usr/pkg/cross # NetBSD/i386
e2211743
WD
197BFD_ROOT_DIR = /opt/powerpc
198endif
ea909b76 199endif
e2211743 200
f046ccd1
EL
201ifeq ($(PCI_CLOCK),PCI_66M)
202CFLAGS := $(CFLAGS) -DPCI_66M
203endif
204
e2211743
WD
205#########################################################################
206
207export CONFIG_SHELL HPATH HOSTCC HOSTCFLAGS CROSS_COMPILE \
208 AS LD CC CPP AR NM STRIP OBJCOPY OBJDUMP \
209 MAKE
210export TEXT_BASE PLATFORM_CPPFLAGS PLATFORM_RELFLAGS CPPFLAGS CFLAGS AFLAGS
211
212#########################################################################
213
f9328639
MB
214ifndef REMOTE_BUILD
215
e2211743 216%.s: %.S
f9328639 217 $(CPP) $(AFLAGS) -o $@ $<
e2211743 218%.o: %.S
f9328639 219 $(CC) $(AFLAGS) -c -o $@ $<
e2211743
WD
220%.o: %.c
221 $(CC) $(CFLAGS) -c -o $@ $<
222
f9328639
MB
223else
224
225$(obj)%.s: %.S
226 $(CPP) $(AFLAGS) -o $@ $<
227$(obj)%.o: %.S
228 $(CC) $(AFLAGS) -c -o $@ $<
229$(obj)%.o: %.c
230 $(CC) $(CFLAGS) -c -o $@ $<
231endif
232
e2211743 233#########################################################################