xloader: Panda - clean remove all magic constant addresses and use symbols
[pandora-x-loader.git] / config.mk
1 #
2 # (C) Copyright 2000
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 # When cross-compiling on NetBSD, we have to define __PPC__ or else we
49 # will pick up a va_list declaration that is incompatible with the
50 # actual argument lists emitted by the compiler.
51 #
52 # [Tested on NetBSD/i386 1.5 + cross-powerpc-netbsd-1.3]
53
54 ifeq ($(ARCH),ppc)
55 ifeq ($(CROSS_COMPILE),powerpc-netbsd-)
56 PLATFORM_CPPFLAGS+= -D__PPC__
57 endif
58 ifeq ($(CROSS_COMPILE),powerpc-openbsd-)
59 PLATFORM_CPPFLAGS+= -D__PPC__
60 endif
61 endif
62
63 ifeq ($(ARCH),arm)
64 ifeq ($(CROSS_COMPILE),powerpc-netbsd-)
65 PLATFORM_CPPFLAGS+= -D__ARM__
66 endif
67 ifeq ($(CROSS_COMPILE),powerpc-openbsd-)
68 PLATFORM_CPPFLAGS+= -D__ARM__
69 endif
70 endif
71
72 ifdef   ARCH
73 sinclude $(TOPDIR)/$(ARCH)_config.mk    # include architecture dependend rules
74 endif
75 ifdef   CPU
76 sinclude $(TOPDIR)/cpu/$(CPU)/config.mk # include  CPU  specific rules
77 endif
78 ifdef   VENDOR
79 BOARDDIR = $(VENDOR)/$(BOARD)
80 else
81 BOARDDIR = $(BOARD)
82 endif
83 ifdef   BOARD
84 sinclude $(TOPDIR)/board/$(BOARDDIR)/config.mk  # include board specific rules
85 endif
86
87 #########################################################################
88
89 CONFIG_SHELL    := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
90                     else if [ -x /bin/bash ]; then echo /bin/bash; \
91                     else echo sh; fi ; fi)
92
93 ifeq ($(HOSTOS)-$(HOSTARCH),darwin-ppc)
94 HOSTCC          = cc
95 else
96 HOSTCC          = gcc
97 endif
98 HOSTCFLAGS      = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
99 HOSTSTRIP       = strip
100
101 #########################################################################
102 #
103 # Option checker (courtesy linux kernel) to ensure
104 # only supported compiler options are used
105 #
106 cc-option = $(shell if $(CC) $(CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
107                 > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
108
109 #
110 # Include the make variables (CC, etc...)
111 #
112 AS      = $(CROSS_COMPILE)as
113 LD      = $(CROSS_COMPILE)ld
114 CC      = $(CROSS_COMPILE)gcc
115 CPP     = $(CC) -E
116 AR      = $(CROSS_COMPILE)ar
117 NM      = $(CROSS_COMPILE)nm
118 STRIP   = $(CROSS_COMPILE)strip
119 OBJCOPY = $(CROSS_COMPILE)objcopy
120 OBJDUMP = $(CROSS_COMPILE)objdump
121 RANLIB  = $(CROSS_COMPILE)RANLIB
122
123 RELFLAGS= $(PLATFORM_RELFLAGS)
124 DBGFLAGS= -g # -DDEBUG
125 OPTFLAGS= -Os #-fomit-frame-pointer
126 ifndef LDSCRIPT
127 #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/x-load.lds.debug
128 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/x-load.lds
129 endif
130 OBJCFLAGS += --gap-fill=0xff
131
132 gccincdir := $(shell $(CC) -print-file-name=include)
133
134 CPPFLAGS := $(DBGFLAGS) $(OPTFLAGS) $(RELFLAGS)         \
135         -D__KERNEL__ -DTEXT_BASE=$(TEXT_BASE)
136
137 ifneq ($(OBJTREE),$(SRCTREE))
138 CPPFLAGS += -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 AFLAGS_DEBUG := -Wa,-gstabs
153 AFLAGS := $(AFLAGS_DEBUG) -D__ASSEMBLY__ $(CPPFLAGS)
154
155 LDFLAGS += -Bstatic -T $(LDSCRIPT) -Ttext $(TEXT_BASE) $(PLATFORM_LDFLAGS)
156
157 # Location of a usable BFD library, where we define "usable" as
158 # "built for ${HOST}, supports ${TARGET}".  Sensible values are
159 # - When cross-compiling: the root of the cross-environment
160 # - Linux/ppc (native): /usr
161 # - NetBSD/ppc (native): you lose ... (must extract these from the
162 #   binutils build directory, plus the native and U-Boot include
163 #   files don't like each other)
164 #
165 # So far, this is used only by tools/gdb/Makefile.
166
167 ifeq ($(HOSTOS)-$(HOSTARCH),darwin-ppc)
168 BFD_ROOT_DIR =          /usr/local/tools
169 else
170 ifeq ($(HOSTARCH),$(ARCH))
171 # native
172 BFD_ROOT_DIR =          /usr
173 else
174 #BFD_ROOT_DIR =         /LinuxPPC/CDK           # Linux/i386
175 #BFD_ROOT_DIR =         /usr/pkg/cross          # NetBSD/i386
176 BFD_ROOT_DIR =          /opt/powerpc
177 endif
178 endif
179
180 #########################################################################
181
182 export  CONFIG_SHELL HPATH HOSTCC HOSTCFLAGS CROSS_COMPILE \
183         AS LD CC CPP AR NM STRIP OBJCOPY OBJDUMP \
184         MAKE
185 export  TEXT_BASE PLATFORM_CPPFLAGS PLATFORM_RELFLAGS CPPFLAGS CFLAGS AFLAGS
186
187 #########################################################################
188
189 ifndef REMOTE_BUILD
190
191 %.s:    %.S
192         $(CPP) $(AFLAGS) -o $@ $<
193 %.o:    %.S
194         $(CC) $(AFLAGS) -c -o $@ $<
195 %.o:    %.c
196         $(CC) $(CFLAGS) -c -o $@ $<
197
198 else
199
200 $(obj)%.s:      %.S
201         $(CPP) $(AFLAGS) -o $@ $<
202 $(obj)%.o:      %.S
203         $(CC) $(AFLAGS) -c -o $@ $<
204 $(obj)%.o:      %.c
205         $(CC) $(CFLAGS) -c -o $@ $<
206 endif
207
208 #########################################################################