]>
Commit | Line | Data |
---|---|---|
e2211743 | 1 | # |
f9328639 | 2 | # (C) Copyright 2000-2006 |
e2211743 WD |
3 | # Wolfgang Denk, DENX Software Engineering, [email protected]. |
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 |
26 | ifneq ($(OBJTREE),$(SRCTREE)) |
27 | ifeq ($(CURDIR),$(SRCTREE)) | |
511d0c72 | 28 | dir := |
f9328639 MB |
29 | else |
30 | dir := $(subst $(SRCTREE)/,,$(CURDIR)) | |
31 | endif | |
32 | ||
33 | obj := $(if $(dir),$(OBJTREE)/$(dir)/,$(OBJTREE)/) | |
34 | src := $(if $(dir),$(SRCTREE)/$(dir)/,$(SRCTREE)/) | |
35 | ||
36 | $(shell mkdir -p $(obj)) | |
37 | else | |
38 | obj := | |
39 | src := | |
40 | endif | |
41 | ||
592c5cab WD |
42 | # clean the slate ... |
43 | PLATFORM_RELFLAGS = | |
44 | PLATFORM_CPPFLAGS = | |
45 | PLATFORM_LDFLAGS = | |
46 | ||
e2211743 WD |
47 | ######################################################################### |
48 | ||
4cda4378 | 49 | ifeq ($(HOSTOS),darwin) |
e2211743 WD |
50 | HOSTCC = cc |
51 | else | |
52 | HOSTCC = gcc | |
53 | endif | |
54 | HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer | |
55 | HOSTSTRIP = strip | |
56 | ||
57 | ######################################################################### | |
1820d4c7 WD |
58 | # |
59 | # Option checker (courtesy linux kernel) to ensure | |
60 | # only supported compiler options are used | |
61 | # | |
62 | cc-option = $(shell if $(CC) $(CFLAGS) $(1) -S -o /dev/null -xc /dev/null \ | |
9b880bd4 | 63 | > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;) |
e2211743 WD |
64 | |
65 | # | |
66 | # Include the make variables (CC, etc...) | |
67 | # | |
68 | AS = $(CROSS_COMPILE)as | |
69 | LD = $(CROSS_COMPILE)ld | |
70 | CC = $(CROSS_COMPILE)gcc | |
71 | CPP = $(CC) -E | |
72 | AR = $(CROSS_COMPILE)ar | |
73 | NM = $(CROSS_COMPILE)nm | |
94a91e24 | 74 | LDR = $(CROSS_COMPILE)ldr |
e2211743 WD |
75 | STRIP = $(CROSS_COMPILE)strip |
76 | OBJCOPY = $(CROSS_COMPILE)objcopy | |
77 | OBJDUMP = $(CROSS_COMPILE)objdump | |
78 | RANLIB = $(CROSS_COMPILE)RANLIB | |
79 | ||
c4e5f52a WD |
80 | ######################################################################### |
81 | ||
82 | # Load generated board configuration | |
83 | sinclude $(OBJTREE)/include/autoconf.mk | |
84 | ||
85 | ifdef ARCH | |
86 | sinclude $(TOPDIR)/$(ARCH)_config.mk # include architecture dependend rules | |
87 | endif | |
88 | ifdef CPU | |
89 | sinclude $(TOPDIR)/cpu/$(CPU)/config.mk # include CPU specific rules | |
90 | endif | |
91 | ifdef SOC | |
92 | sinclude $(TOPDIR)/cpu/$(CPU)/$(SOC)/config.mk # include SoC specific rules | |
93 | endif | |
94 | ifdef VENDOR | |
95 | BOARDDIR = $(VENDOR)/$(BOARD) | |
96 | else | |
97 | BOARDDIR = $(BOARD) | |
98 | endif | |
99 | ifdef BOARD | |
100 | sinclude $(TOPDIR)/board/$(BOARDDIR)/config.mk # include board specific rules | |
101 | endif | |
102 | ||
103 | ######################################################################### | |
104 | ||
1954be6e WD |
105 | ifneq (,$(findstring s,$(MAKEFLAGS))) |
106 | ARFLAGS = cr | |
107 | else | |
2b208f53 | 108 | ARFLAGS = crv |
1954be6e | 109 | endif |
e2211743 | 110 | RELFLAGS= $(PLATFORM_RELFLAGS) |
9acb626f | 111 | DBGFLAGS= -g # -DDEBUG |
e2211743 | 112 | OPTFLAGS= -Os #-fomit-frame-pointer |
6dd652fa | 113 | ifndef LDSCRIPT |
4aeb251f | 114 | #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug |
887e2ec9 SR |
115 | ifeq ($(CONFIG_NAND_U_BOOT),y) |
116 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds | |
117 | else | |
e2211743 | 118 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds |
6dd652fa | 119 | endif |
887e2ec9 | 120 | endif |
6dd652fa | 121 | OBJCFLAGS += --gap-fill=0xff |
e2211743 | 122 | |
b783edae WD |
123 | gccincdir := $(shell $(CC) -print-file-name=include) |
124 | ||
e2211743 | 125 | CPPFLAGS := $(DBGFLAGS) $(OPTFLAGS) $(RELFLAGS) \ |
161b2af4 MF |
126 | -D__KERNEL__ |
127 | ifneq ($(TEXT_BASE),) | |
128 | CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE) | |
129 | endif | |
f9328639 MB |
130 | |
131 | ifneq ($(OBJTREE),$(SRCTREE)) | |
132 | CPPFLAGS += -I$(OBJTREE)/include2 -I$(OBJTREE)/include | |
133 | endif | |
134 | ||
135 | CPPFLAGS += -I$(TOPDIR)/include | |
53677ef1 | 136 | CPPFLAGS += -fno-builtin -ffreestanding -nostdinc \ |
f9328639 | 137 | -isystem $(gccincdir) -pipe $(PLATFORM_CPPFLAGS) |
e2211743 WD |
138 | |
139 | ifdef BUILD_TAG | |
140 | CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes \ | |
141 | -DBUILD_TAG='"$(BUILD_TAG)"' | |
142 | else | |
143 | CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes | |
144 | endif | |
145 | ||
28eab0d7 HS |
146 | CFLAGS += $(call cc-option,-fno-stack-protector) |
147 | ||
c40b2956 WD |
148 | # avoid trigraph warnings while parsing pci.h (produced by NIOS gcc-2.9) |
149 | # this option have to be placed behind -Wall -- that's why it is here | |
150 | ifeq ($(ARCH),nios) | |
151 | ifeq ($(findstring 2.9,$(shell $(CC) --version)),2.9) | |
e4cc71aa | 152 | CFLAGS := $(CPPFLAGS) -Wall -Wno-trigraphs |
c40b2956 WD |
153 | endif |
154 | endif | |
155 | ||
e11887a7 HS |
156 | # $(CPPFLAGS) sets -g, which causes gcc to pass a suitable -g<format> |
157 | # option to the assembler. | |
158 | AFLAGS_DEBUG := | |
b62fa913 | 159 | |
483a0cf8 MB |
160 | # turn jbsr into jsr for m68k |
161 | ifeq ($(ARCH),m68k) | |
162 | ifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4) | |
163 | AFLAGS_DEBUG := -Wa,-gstabs,-S | |
164 | endif | |
483a0cf8 | 165 | endif |
b62fa913 | 166 | |
e2211743 WD |
167 | AFLAGS := $(AFLAGS_DEBUG) -D__ASSEMBLY__ $(CPPFLAGS) |
168 | ||
161b2af4 MF |
169 | LDFLAGS += -Bstatic -T $(LDSCRIPT) $(PLATFORM_LDFLAGS) |
170 | ifneq ($(TEXT_BASE),) | |
171 | LDFLAGS += -Ttext $(TEXT_BASE) | |
172 | endif | |
e2211743 WD |
173 | |
174 | # Location of a usable BFD library, where we define "usable" as | |
175 | # "built for ${HOST}, supports ${TARGET}". Sensible values are | |
176 | # - When cross-compiling: the root of the cross-environment | |
177 | # - Linux/ppc (native): /usr | |
178 | # - NetBSD/ppc (native): you lose ... (must extract these from the | |
179 | # binutils build directory, plus the native and U-Boot include | |
180 | # files don't like each other) | |
181 | # | |
182 | # So far, this is used only by tools/gdb/Makefile. | |
183 | ||
4cda4378 | 184 | ifeq ($(HOSTOS),darwin) |
e2211743 WD |
185 | BFD_ROOT_DIR = /usr/local/tools |
186 | else | |
ea909b76 WD |
187 | ifeq ($(HOSTARCH),$(ARCH)) |
188 | # native | |
189 | BFD_ROOT_DIR = /usr | |
190 | else | |
e2211743 WD |
191 | #BFD_ROOT_DIR = /LinuxPPC/CDK # Linux/i386 |
192 | #BFD_ROOT_DIR = /usr/pkg/cross # NetBSD/i386 | |
e2211743 WD |
193 | BFD_ROOT_DIR = /opt/powerpc |
194 | endif | |
ea909b76 | 195 | endif |
e2211743 | 196 | |
f046ccd1 EL |
197 | ifeq ($(PCI_CLOCK),PCI_66M) |
198 | CFLAGS := $(CFLAGS) -DPCI_66M | |
199 | endif | |
200 | ||
e2211743 WD |
201 | ######################################################################### |
202 | ||
434c51a5 PT |
203 | export HPATH HOSTCC HOSTCFLAGS CROSS_COMPILE \ |
204 | AS LD CC CPP AR NM STRIP OBJCOPY OBJDUMP MAKE | |
e2211743 WD |
205 | export TEXT_BASE PLATFORM_CPPFLAGS PLATFORM_RELFLAGS CPPFLAGS CFLAGS AFLAGS |
206 | ||
207 | ######################################################################### | |
208 | ||
5ec5529b MF |
209 | # Allow boards to use custom optimize flags on a per dir/file basis |
210 | BCURDIR := $(notdir $(CURDIR)) | |
f9328639 | 211 | $(obj)%.s: %.S |
5ec5529b | 212 | $(CPP) $(AFLAGS) $(AFLAGS_$(@F)) $(AFLAGS_$(BCURDIR)) -o $@ $< |
f9328639 | 213 | $(obj)%.o: %.S |
5ec5529b | 214 | $(CC) $(AFLAGS) $(AFLAGS_$(@F)) $(AFLAGS_$(BCURDIR)) -o $@ $< -c |
f9328639 | 215 | $(obj)%.o: %.c |
5ec5529b | 216 | $(CC) $(CFLAGS) $(CFLAGS_$(@F)) $(CFLAGS_$(BCURDIR)) -o $@ $< -c |
31f30c9e MF |
217 | $(obj)%.i: %.c |
218 | $(CPP) $(CFLAGS) $(CFLAGS_$(@F)) $(CFLAGS_$(BCURDIR)) -o $@ $< -c | |
219 | $(obj)%.s: %.c | |
220 | $(CC) $(CFLAGS) $(CFLAGS_$(@F)) $(CFLAGS_$(BCURDIR)) -o $@ $< -c -S | |
f9328639 | 221 | |
e2211743 | 222 | ######################################################################### |