]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - config.mk
imported Freescale specific U-Boot additions for i.MX28,... release L2.6.31_10.08.01
[karo-tx-uboot.git] / config.mk
1 #
2 # (C) Copyright 2000-2006
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
26 ifneq ($(OBJTREE),$(SRCTREE))
27 ifeq ($(CURDIR),$(SRCTREE))
28 dir :=
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
42 # clean the slate ...
43 PLATFORM_RELFLAGS =
44 PLATFORM_CPPFLAGS =
45 PLATFORM_LDFLAGS =
46
47 #########################################################################
48
49 ifeq ($(HOSTOS),darwin)
50 HOSTCC          = cc
51 else
52 HOSTCC          = gcc
53 endif
54 HOSTCFLAGS      = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
55 HOSTSTRIP       = strip
56
57 #########################################################################
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 \
63                 > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
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
74 LDR     = $(CROSS_COMPILE)ldr
75 STRIP   = $(CROSS_COMPILE)strip
76 OBJCOPY = $(CROSS_COMPILE)objcopy
77 OBJDUMP = $(CROSS_COMPILE)objdump
78 RANLIB  = $(CROSS_COMPILE)RANLIB
79
80 #########################################################################
81
82 # Load generated board configuration
83 sinclude $(OBJTREE)/include/autoconf.mk
84
85 ifdef   ARCH
86 sinclude $(TOPDIR)/lib_$(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
105 ifneq (,$(findstring s,$(MAKEFLAGS)))
106 ARFLAGS = cr
107 else
108 ARFLAGS = crv
109 endif
110 RELFLAGS= $(PLATFORM_RELFLAGS)
111 DBGFLAGS= -g # -DDEBUG
112 OPTFLAGS= -Os #-fomit-frame-pointer
113 ifndef LDSCRIPT
114 #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
115 ifeq ($(CONFIG_NAND_U_BOOT),y)
116 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
117 else
118 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
119 endif
120 endif
121 OBJCFLAGS += --gap-fill=0xff
122
123 gccincdir := $(shell $(CC) -print-file-name=include)
124
125 CPPFLAGS := $(DBGFLAGS) $(OPTFLAGS) $(RELFLAGS)         \
126         -D__KERNEL__
127
128 ifneq ($(BOOT_MEDIA),)
129         BOOT_MEDIA_MACRO = BOOT_MEDIA_$(shell echo $(BOOT_MEDIA) | tr '[a-z]' '[A-Z]')
130         CPPFLAGS += -D$(BOOT_MEDIA_MACRO)
131 endif
132
133 ifneq ($(TEXT_BASE),)
134 CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE)
135 endif
136
137 ifneq ($(OBJTREE),$(SRCTREE))
138 CPPFLAGS += -I$(OBJTREE)/include2 -I$(OBJTREE)/include
139 endif
140
141 CPPFLAGS += -I$(TOPDIR)/include
142 CPPFLAGS += -fno-builtin -ffreestanding -nostdinc       \
143         -isystem $(gccincdir) -pipe $(PLATFORM_CPPFLAGS)
144
145 ifdef BUILD_TAG
146 CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes \
147         -DBUILD_TAG='"$(BUILD_TAG)"'
148 else
149 CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes
150 endif
151
152 CFLAGS += $(call cc-option,-fno-stack-protector)
153
154 # avoid trigraph warnings while parsing pci.h (produced by NIOS gcc-2.9)
155 # this option have to be placed behind -Wall -- that's why it is here
156 ifeq ($(ARCH),nios)
157 ifeq ($(findstring 2.9,$(shell $(CC) --version)),2.9)
158 CFLAGS := $(CPPFLAGS) -Wall -Wno-trigraphs
159 endif
160 endif
161
162 # $(CPPFLAGS) sets -g, which causes gcc to pass a suitable -g<format>
163 # option to the assembler.
164 AFLAGS_DEBUG :=
165
166 # turn jbsr into jsr for m68k
167 ifeq ($(ARCH),m68k)
168 ifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4)
169 AFLAGS_DEBUG := -Wa,-gstabs,-S
170 endif
171 endif
172
173 AFLAGS := $(AFLAGS_DEBUG) -D__ASSEMBLY__ $(CPPFLAGS)
174
175 LDFLAGS += -Bstatic -T $(obj)u-boot.lds $(PLATFORM_LDFLAGS)
176 ifneq ($(TEXT_BASE),)
177 LDFLAGS += -Ttext $(TEXT_BASE)
178 endif
179
180 # Location of a usable BFD library, where we define "usable" as
181 # "built for ${HOST}, supports ${TARGET}".  Sensible values are
182 # - When cross-compiling: the root of the cross-environment
183 # - Linux/ppc (native): /usr
184 # - NetBSD/ppc (native): you lose ... (must extract these from the
185 #   binutils build directory, plus the native and U-Boot include
186 #   files don't like each other)
187 #
188 # So far, this is used only by tools/gdb/Makefile.
189
190 ifeq ($(HOSTOS),darwin)
191 BFD_ROOT_DIR =          /usr/local/tools
192 else
193 ifeq ($(HOSTARCH),$(ARCH))
194 # native
195 BFD_ROOT_DIR =          /usr
196 else
197 #BFD_ROOT_DIR =         /LinuxPPC/CDK           # Linux/i386
198 #BFD_ROOT_DIR =         /usr/pkg/cross          # NetBSD/i386
199 BFD_ROOT_DIR =          /opt/powerpc
200 endif
201 endif
202
203 #########################################################################
204
205 export  HOSTCC HOSTCFLAGS CROSS_COMPILE \
206         AS LD CC CPP AR NM STRIP OBJCOPY OBJDUMP MAKE
207 export  TEXT_BASE PLATFORM_CPPFLAGS PLATFORM_RELFLAGS CPPFLAGS CFLAGS AFLAGS
208
209 #########################################################################
210
211 # Allow boards to use custom optimize flags on a per dir/file basis
212 BCURDIR := $(notdir $(CURDIR))
213 $(obj)%.s:      %.S
214         $(CPP) $(AFLAGS) $(AFLAGS_$(@F)) $(AFLAGS_$(BCURDIR)) -o $@ $<
215 $(obj)%.o:      %.S
216         $(CC)  $(AFLAGS) $(AFLAGS_$(@F)) $(AFLAGS_$(BCURDIR)) -o $@ $< -c
217 $(obj)%.o:      %.c
218         $(CC)  $(CFLAGS) $(CFLAGS_$(@F)) $(CFLAGS_$(BCURDIR)) -o $@ $< -c
219 $(obj)%.i:      %.c
220         $(CPP) $(CFLAGS) $(CFLAGS_$(@F)) $(CFLAGS_$(BCURDIR)) -o $@ $< -c
221 $(obj)%.s:      %.c
222         $(CC)  $(CFLAGS) $(CFLAGS_$(@F)) $(CFLAGS_$(BCURDIR)) -o $@ $< -c -S
223
224 #########################################################################