]>
Commit | Line | Data |
---|---|---|
e2211743 WD |
1 | # |
2 | # (C) Copyright 2000 | |
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 | ||
592c5cab WD |
26 | # clean the slate ... |
27 | PLATFORM_RELFLAGS = | |
28 | PLATFORM_CPPFLAGS = | |
29 | PLATFORM_LDFLAGS = | |
30 | ||
e2211743 WD |
31 | # |
32 | # When cross-compiling on NetBSD, we have to define __PPC__ or else we | |
33 | # will pick up a va_list declaration that is incompatible with the | |
34 | # actual argument lists emitted by the compiler. | |
35 | # | |
36 | # [Tested on NetBSD/i386 1.5 + cross-powerpc-netbsd-1.3] | |
37 | ||
38 | ifeq ($(ARCH),ppc) | |
39 | ifeq ($(CROSS_COMPILE),powerpc-netbsd-) | |
40 | PLATFORM_CPPFLAGS+= -D__PPC__ | |
41 | endif | |
42 | ifeq ($(CROSS_COMPILE),powerpc-openbsd-) | |
43 | PLATFORM_CPPFLAGS+= -D__PPC__ | |
44 | endif | |
45 | endif | |
46 | ||
47 | ifeq ($(ARCH),arm) | |
48 | ifeq ($(CROSS_COMPILE),powerpc-netbsd-) | |
49 | PLATFORM_CPPFLAGS+= -D__ARM__ | |
50 | endif | |
51 | ifeq ($(CROSS_COMPILE),powerpc-openbsd-) | |
52 | PLATFORM_CPPFLAGS+= -D__ARM__ | |
53 | endif | |
54 | endif | |
55 | ||
0afe519a WD |
56 | ifeq ($(ARCH),blackfin) |
57 | PLATFORM_CPPFLAGS+= -D__BLACKFIN__ -mno-underscore | |
58 | endif | |
59 | ||
e2211743 WD |
60 | ifdef ARCH |
61 | sinclude $(TOPDIR)/$(ARCH)_config.mk # include architecture dependend rules | |
62 | endif | |
63 | ifdef CPU | |
64 | sinclude $(TOPDIR)/cpu/$(CPU)/config.mk # include CPU specific rules | |
65 | endif | |
1d9f4105 WD |
66 | ifdef SOC |
67 | sinclude $(TOPDIR)/cpu/$(CPU)/$(SOC)/config.mk # include SoC specific rules | |
68 | endif | |
e2211743 WD |
69 | ifdef VENDOR |
70 | BOARDDIR = $(VENDOR)/$(BOARD) | |
71 | else | |
72 | BOARDDIR = $(BOARD) | |
73 | endif | |
74 | ifdef BOARD | |
75 | sinclude $(TOPDIR)/board/$(BOARDDIR)/config.mk # include board specific rules | |
76 | endif | |
77 | ||
78 | ######################################################################### | |
79 | ||
80 | CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ | |
81 | else if [ -x /bin/bash ]; then echo /bin/bash; \ | |
82 | else echo sh; fi ; fi) | |
83 | ||
84 | ifeq ($(HOSTOS)-$(HOSTARCH),darwin-ppc) | |
85 | HOSTCC = cc | |
86 | else | |
87 | HOSTCC = gcc | |
88 | endif | |
89 | HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer | |
90 | HOSTSTRIP = strip | |
91 | ||
92 | ######################################################################### | |
1820d4c7 WD |
93 | # |
94 | # Option checker (courtesy linux kernel) to ensure | |
95 | # only supported compiler options are used | |
96 | # | |
97 | cc-option = $(shell if $(CC) $(CFLAGS) $(1) -S -o /dev/null -xc /dev/null \ | |
9b880bd4 | 98 | > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;) |
e2211743 WD |
99 | |
100 | # | |
101 | # Include the make variables (CC, etc...) | |
102 | # | |
103 | AS = $(CROSS_COMPILE)as | |
104 | LD = $(CROSS_COMPILE)ld | |
105 | CC = $(CROSS_COMPILE)gcc | |
106 | CPP = $(CC) -E | |
107 | AR = $(CROSS_COMPILE)ar | |
108 | NM = $(CROSS_COMPILE)nm | |
109 | STRIP = $(CROSS_COMPILE)strip | |
110 | OBJCOPY = $(CROSS_COMPILE)objcopy | |
111 | OBJDUMP = $(CROSS_COMPILE)objdump | |
112 | RANLIB = $(CROSS_COMPILE)RANLIB | |
113 | ||
114 | RELFLAGS= $(PLATFORM_RELFLAGS) | |
115 | DBGFLAGS= -g #-DDEBUG | |
116 | OPTFLAGS= -Os #-fomit-frame-pointer | |
6dd652fa | 117 | ifndef LDSCRIPT |
4aeb251f | 118 | #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug |
e2211743 | 119 | LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds |
6dd652fa WD |
120 | endif |
121 | OBJCFLAGS += --gap-fill=0xff | |
e2211743 | 122 | |
b783edae WD |
123 | gccincdir := $(shell $(CC) -print-file-name=include) |
124 | ||
e2211743 WD |
125 | CPPFLAGS := $(DBGFLAGS) $(OPTFLAGS) $(RELFLAGS) \ |
126 | -D__KERNEL__ -DTEXT_BASE=$(TEXT_BASE) \ | |
127 | -I$(TOPDIR)/include \ | |
27b207fd WD |
128 | -fno-builtin -ffreestanding -nostdinc -isystem \ |
129 | $(gccincdir) -pipe $(PLATFORM_CPPFLAGS) | |
e2211743 WD |
130 | |
131 | ifdef BUILD_TAG | |
132 | CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes \ | |
133 | -DBUILD_TAG='"$(BUILD_TAG)"' | |
134 | else | |
135 | CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes | |
136 | endif | |
137 | ||
c40b2956 WD |
138 | # avoid trigraph warnings while parsing pci.h (produced by NIOS gcc-2.9) |
139 | # this option have to be placed behind -Wall -- that's why it is here | |
140 | ifeq ($(ARCH),nios) | |
141 | ifeq ($(findstring 2.9,$(shell $(CC) --version)),2.9) | |
e4cc71aa | 142 | CFLAGS := $(CPPFLAGS) -Wall -Wno-trigraphs |
c40b2956 WD |
143 | endif |
144 | endif | |
145 | ||
b62fa913 MB |
146 | AFLAGS_DEBUG := -Wa,-gstabs |
147 | ||
483a0cf8 MB |
148 | # turn jbsr into jsr for m68k |
149 | ifeq ($(ARCH),m68k) | |
150 | ifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4) | |
151 | AFLAGS_DEBUG := -Wa,-gstabs,-S | |
152 | endif | |
483a0cf8 | 153 | endif |
b62fa913 | 154 | |
e2211743 WD |
155 | AFLAGS := $(AFLAGS_DEBUG) -D__ASSEMBLY__ $(CPPFLAGS) |
156 | ||
7f6c2cbc | 157 | LDFLAGS += -Bstatic -T $(LDSCRIPT) -Ttext $(TEXT_BASE) $(PLATFORM_LDFLAGS) |
e2211743 WD |
158 | |
159 | # Location of a usable BFD library, where we define "usable" as | |
160 | # "built for ${HOST}, supports ${TARGET}". Sensible values are | |
161 | # - When cross-compiling: the root of the cross-environment | |
162 | # - Linux/ppc (native): /usr | |
163 | # - NetBSD/ppc (native): you lose ... (must extract these from the | |
164 | # binutils build directory, plus the native and U-Boot include | |
165 | # files don't like each other) | |
166 | # | |
167 | # So far, this is used only by tools/gdb/Makefile. | |
168 | ||
169 | ifeq ($(HOSTOS)-$(HOSTARCH),darwin-ppc) | |
170 | BFD_ROOT_DIR = /usr/local/tools | |
171 | else | |
ea909b76 WD |
172 | ifeq ($(HOSTARCH),$(ARCH)) |
173 | # native | |
174 | BFD_ROOT_DIR = /usr | |
175 | else | |
e2211743 WD |
176 | #BFD_ROOT_DIR = /LinuxPPC/CDK # Linux/i386 |
177 | #BFD_ROOT_DIR = /usr/pkg/cross # NetBSD/i386 | |
e2211743 WD |
178 | BFD_ROOT_DIR = /opt/powerpc |
179 | endif | |
ea909b76 | 180 | endif |
e2211743 | 181 | |
f046ccd1 EL |
182 | ifeq ($(PCI_CLOCK),PCI_66M) |
183 | CFLAGS := $(CFLAGS) -DPCI_66M | |
184 | endif | |
185 | ||
e2211743 WD |
186 | ######################################################################### |
187 | ||
188 | export CONFIG_SHELL HPATH HOSTCC HOSTCFLAGS CROSS_COMPILE \ | |
189 | AS LD CC CPP AR NM STRIP OBJCOPY OBJDUMP \ | |
190 | MAKE | |
191 | export TEXT_BASE PLATFORM_CPPFLAGS PLATFORM_RELFLAGS CPPFLAGS CFLAGS AFLAGS | |
192 | ||
193 | ######################################################################### | |
194 | ||
195 | %.s: %.S | |
196 | $(CPP) $(AFLAGS) -o $@ $(CURDIR)/$< | |
197 | %.o: %.S | |
198 | $(CC) $(AFLAGS) -c -o $@ $(CURDIR)/$< | |
199 | %.o: %.c | |
200 | $(CC) $(CFLAGS) -c -o $@ $< | |
201 | ||
202 | ######################################################################### |