add 36xx reclocking code
[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 -g -O3
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 ifeq ($(ARCH),arm)
152 CFLAGS += -marm -fno-stack-protector
153 endif
154
155 AFLAGS_DEBUG := -Wa,-gstabs
156 AFLAGS := $(AFLAGS_DEBUG) -D__ASSEMBLY__ $(CPPFLAGS)
157
158 LDFLAGS += -Bstatic -T $(LDSCRIPT) -Ttext $(TEXT_BASE) $(PLATFORM_LDFLAGS)
159
160 # Location of a usable BFD library, where we define "usable" as
161 # "built for ${HOST}, supports ${TARGET}".  Sensible values are
162 # - When cross-compiling: the root of the cross-environment
163 # - Linux/ppc (native): /usr
164 # - NetBSD/ppc (native): you lose ... (must extract these from the
165 #   binutils build directory, plus the native and U-Boot include
166 #   files don't like each other)
167 #
168 # So far, this is used only by tools/gdb/Makefile.
169
170 ifeq ($(HOSTOS)-$(HOSTARCH),darwin-ppc)
171 BFD_ROOT_DIR =          /usr/local/tools
172 else
173 ifeq ($(HOSTARCH),$(ARCH))
174 # native
175 BFD_ROOT_DIR =          /usr
176 else
177 #BFD_ROOT_DIR =         /LinuxPPC/CDK           # Linux/i386
178 #BFD_ROOT_DIR =         /usr/pkg/cross          # NetBSD/i386
179 BFD_ROOT_DIR =          /opt/powerpc
180 endif
181 endif
182
183 #########################################################################
184
185 export  CONFIG_SHELL HPATH HOSTCC HOSTCFLAGS CROSS_COMPILE \
186         AS LD CC CPP AR NM STRIP OBJCOPY OBJDUMP \
187         MAKE
188 export  TEXT_BASE PLATFORM_CPPFLAGS PLATFORM_RELFLAGS CPPFLAGS CFLAGS AFLAGS
189
190 #########################################################################
191
192 ifndef REMOTE_BUILD
193
194 %.s:    %.S
195         $(CPP) $(AFLAGS) -o $@ $<
196 %.o:    %.S
197         $(CC) $(AFLAGS) -c -o $@ $<
198 %.o:    %.c
199         $(CC) $(CFLAGS) -c -o $@ $<
200
201 else
202
203 $(obj)%.s:      %.S
204         $(CPP) $(AFLAGS) -o $@ $<
205 $(obj)%.o:      %.S
206         $(CC) $(AFLAGS) -c -o $@ $<
207 $(obj)%.o:      %.c
208         $(CC) $(CFLAGS) -c -o $@ $<
209 endif
210
211 #########################################################################