xref: /openbmc/u-boot/config.mk (revision ea909b76)
1e2211743Swdenk#
2e2211743Swdenk# (C) Copyright 2000
3e2211743Swdenk# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4e2211743Swdenk#
5e2211743Swdenk# See file CREDITS for list of people who contributed to this
6e2211743Swdenk# project.
7e2211743Swdenk#
8e2211743Swdenk# This program is free software; you can redistribute it and/or
9e2211743Swdenk# modify it under the terms of the GNU General Public License as
10e2211743Swdenk# published by the Free Software Foundation; either version 2 of
11e2211743Swdenk# the License, or (at your option) any later version.
12e2211743Swdenk#
13e2211743Swdenk# This program is distributed in the hope that it will be useful,
14e2211743Swdenk# but WITHOUT ANY WARRANTY; without even the implied warranty of
15e2211743Swdenk# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16e2211743Swdenk# GNU General Public License for more details.
17e2211743Swdenk#
18e2211743Swdenk# You should have received a copy of the GNU General Public License
19e2211743Swdenk# along with this program; if not, write to the Free Software
20e2211743Swdenk# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21e2211743Swdenk# MA 02111-1307 USA
22e2211743Swdenk#
23e2211743Swdenk
24e2211743Swdenk#########################################################################
25e2211743Swdenk
26e2211743Swdenk#
27e2211743Swdenk# When cross-compiling on NetBSD, we have to define __PPC__ or else we
28e2211743Swdenk# will pick up a va_list declaration that is incompatible with the
29e2211743Swdenk# actual argument lists emitted by the compiler.
30e2211743Swdenk#
31e2211743Swdenk# [Tested on NetBSD/i386 1.5 + cross-powerpc-netbsd-1.3]
32e2211743Swdenk
33e2211743Swdenkifeq ($(ARCH),ppc)
34e2211743Swdenkifeq ($(CROSS_COMPILE),powerpc-netbsd-)
35e2211743SwdenkPLATFORM_CPPFLAGS+= -D__PPC__
36e2211743Swdenkendif
37e2211743Swdenkifeq ($(CROSS_COMPILE),powerpc-openbsd-)
38e2211743SwdenkPLATFORM_CPPFLAGS+= -D__PPC__
39e2211743Swdenkendif
40e2211743Swdenkendif
41e2211743Swdenk
42e2211743Swdenkifeq ($(ARCH),arm)
43e2211743Swdenkifeq ($(CROSS_COMPILE),powerpc-netbsd-)
44e2211743SwdenkPLATFORM_CPPFLAGS+= -D__ARM__
45e2211743Swdenkendif
46e2211743Swdenkifeq ($(CROSS_COMPILE),powerpc-openbsd-)
47e2211743SwdenkPLATFORM_CPPFLAGS+= -D__ARM__
48e2211743Swdenkendif
49e2211743Swdenkendif
50e2211743Swdenk
51e2211743Swdenkifdef	ARCH
52e2211743Swdenksinclude $(TOPDIR)/$(ARCH)_config.mk	# include architecture dependend rules
53e2211743Swdenkendif
54e2211743Swdenkifdef	CPU
55e2211743Swdenksinclude $(TOPDIR)/cpu/$(CPU)/config.mk	# include  CPU	specific rules
56e2211743Swdenkendif
57e2211743Swdenkifdef	VENDOR
58e2211743SwdenkBOARDDIR = $(VENDOR)/$(BOARD)
59e2211743Swdenkelse
60e2211743SwdenkBOARDDIR = $(BOARD)
61e2211743Swdenkendif
62e2211743Swdenkifdef	BOARD
63e2211743Swdenksinclude $(TOPDIR)/board/$(BOARDDIR)/config.mk	# include board specific rules
64e2211743Swdenkendif
65e2211743Swdenk
66e2211743Swdenk#########################################################################
67e2211743Swdenk
68e2211743SwdenkCONFIG_SHELL	:= $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
69e2211743Swdenk		    else if [ -x /bin/bash ]; then echo /bin/bash; \
70e2211743Swdenk		    else echo sh; fi ; fi)
71e2211743Swdenk
72e2211743Swdenkifeq ($(HOSTOS)-$(HOSTARCH),darwin-ppc)
73e2211743SwdenkHOSTCC		= cc
74e2211743Swdenkelse
75e2211743SwdenkHOSTCC		= gcc
76e2211743Swdenkendif
77e2211743SwdenkHOSTCFLAGS	= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
78e2211743SwdenkHOSTSTRIP	= strip
79e2211743Swdenk
80e2211743Swdenk#########################################################################
81e2211743Swdenk
82e2211743Swdenk#
83e2211743Swdenk# Include the make variables (CC, etc...)
84e2211743Swdenk#
85e2211743SwdenkAS	= $(CROSS_COMPILE)as
86e2211743SwdenkLD	= $(CROSS_COMPILE)ld
87e2211743SwdenkCC	= $(CROSS_COMPILE)gcc
88e2211743SwdenkCPP	= $(CC) -E
89e2211743SwdenkAR	= $(CROSS_COMPILE)ar
90e2211743SwdenkNM	= $(CROSS_COMPILE)nm
91e2211743SwdenkSTRIP	= $(CROSS_COMPILE)strip
92e2211743SwdenkOBJCOPY = $(CROSS_COMPILE)objcopy
93e2211743SwdenkOBJDUMP = $(CROSS_COMPILE)objdump
94e2211743SwdenkRANLIB	= $(CROSS_COMPILE)RANLIB
95e2211743Swdenk
96e2211743SwdenkRELFLAGS= $(PLATFORM_RELFLAGS)
97e2211743SwdenkDBGFLAGS= -g #-DDEBUG
98e2211743SwdenkOPTFLAGS= -Os #-fomit-frame-pointer
99e2211743Swdenk#LDSCRIPT := board/$(BOARDDIR)/u-boot.lds.debug
100e2211743SwdenkLDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
101e2211743SwdenkOBJCFLAGS := --gap-fill=0xff
102e2211743Swdenk
103e2211743SwdenkCPPFLAGS := $(DBGFLAGS) $(OPTFLAGS) $(RELFLAGS)		\
104e2211743Swdenk	-D__KERNEL__ -DTEXT_BASE=$(TEXT_BASE)		\
105e2211743Swdenk	-I$(TOPDIR)/include				\
106e2211743Swdenk	-fno-builtin					\
107e2211743Swdenk	-pipe $(PLATFORM_CPPFLAGS)
108e2211743Swdenk
109e2211743Swdenkifdef BUILD_TAG
110e2211743SwdenkCFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes \
111e2211743Swdenk	-DBUILD_TAG='"$(BUILD_TAG)"'
112e2211743Swdenkelse
113e2211743SwdenkCFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes
114e2211743Swdenkendif
115e2211743Swdenk
116e2211743SwdenkAFLAGS_DEBUG := -Wa,-gstabs
117e2211743SwdenkAFLAGS := $(AFLAGS_DEBUG) -D__ASSEMBLY__ $(CPPFLAGS)
118e2211743Swdenk
1197f6c2cbcSwdenkLDFLAGS += -Bstatic -T $(LDSCRIPT) -Ttext $(TEXT_BASE) $(PLATFORM_LDFLAGS)
120e2211743Swdenk
121e2211743Swdenk# Location of a usable BFD library, where we define "usable" as
122e2211743Swdenk# "built for ${HOST}, supports ${TARGET}".  Sensible values are
123e2211743Swdenk# - When cross-compiling: the root of the cross-environment
124e2211743Swdenk# - Linux/ppc (native): /usr
125e2211743Swdenk# - NetBSD/ppc (native): you lose ... (must extract these from the
126e2211743Swdenk#   binutils build directory, plus the native and U-Boot include
127e2211743Swdenk#   files don't like each other)
128e2211743Swdenk#
129e2211743Swdenk# So far, this is used only by tools/gdb/Makefile.
130e2211743Swdenk
131e2211743Swdenkifeq ($(HOSTOS)-$(HOSTARCH),darwin-ppc)
132e2211743SwdenkBFD_ROOT_DIR =		/usr/local/tools
133e2211743Swdenkelse
134*ea909b76Swdenkifeq ($(HOSTARCH),$(ARCH))
135*ea909b76Swdenk# native
136*ea909b76SwdenkBFD_ROOT_DIR =		/usr
137*ea909b76Swdenkelse
138e2211743Swdenk#BFD_ROOT_DIR =		/LinuxPPC/CDK		# Linux/i386
139e2211743Swdenk#BFD_ROOT_DIR =		/usr/pkg/cross		# NetBSD/i386
140e2211743SwdenkBFD_ROOT_DIR =		/opt/powerpc
141e2211743Swdenkendif
142*ea909b76Swdenkendif
143e2211743Swdenk
144e2211743Swdenk#########################################################################
145e2211743Swdenk
146e2211743Swdenkexport	CONFIG_SHELL HPATH HOSTCC HOSTCFLAGS CROSS_COMPILE \
147e2211743Swdenk	AS LD CC CPP AR NM STRIP OBJCOPY OBJDUMP \
148e2211743Swdenk	MAKE
149e2211743Swdenkexport	TEXT_BASE PLATFORM_CPPFLAGS PLATFORM_RELFLAGS CPPFLAGS CFLAGS AFLAGS
150e2211743Swdenk
151e2211743Swdenk#########################################################################
152e2211743Swdenk
153e2211743Swdenk%.s:	%.S
154e2211743Swdenk	$(CPP) $(AFLAGS) -o $@ $(CURDIR)/$<
155e2211743Swdenk%.o:	%.S
156e2211743Swdenk	$(CC) $(AFLAGS) -c -o $@ $(CURDIR)/$<
157e2211743Swdenk%.o:	%.c
158e2211743Swdenk	$(CC) $(CFLAGS) -c -o $@ $<
159e2211743Swdenk
160e2211743Swdenk#########################################################################
161