blob: 5e26bd7dd5218931c820694a2109429d8ba078ce [file] [log] [blame]
wdenkefee1702002-07-20 20:14:13 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenkefee1702002-07-20 20:14:13 +00003# 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
Marian Balakowiczf9328632006-09-01 19:49:50 +020024BIN_FILES = img2srec$(SFX) mkimage$(SFX) envcrc$(SFX) gen_eth_addr$(SFX) bmp_logo$(SFX)
wdenkefee1702002-07-20 20:14:13 +000025
Marian Balakowiczf9328632006-09-01 19:49:50 +020026OBJ_LINKS = environment.o crc32.o
27OBJ_FILES = img2srec.o mkimage.o envcrc.o gen_eth_addr.o bmp_logo.o
wdenkefee1702002-07-20 20:14:13 +000028
wdenk3e386912003-04-05 00:53:31 +000029ifeq ($(ARCH),mips)
Marian Balakowiczf9328632006-09-01 19:49:50 +020030BIN_FILES += inca-swap-bytes$(SFX)
31OBJ_FILES += inca-swap-bytes.o
wdenk3e386912003-04-05 00:53:31 +000032endif
33
wdenkef1464c2003-10-08 22:14:02 +000034# Don't build by default
35#ifeq ($(ARCH),ppc)
Marian Balakowiczf9328632006-09-01 19:49:50 +020036#BIN_FILES += mpc86x_clk$(SFX)
37#OBJ_FILES += mpc86x_clk.o
wdenkef1464c2003-10-08 22:14:02 +000038#endif
39
Marian Balakowiczf9328632006-09-01 19:49:50 +020040LOGO_H = $(OBJTREE)/include/bmp_logo.h
wdenkefee1702002-07-20 20:14:13 +000041
42ifeq ($(LOGO_BMP),)
43LOGO_BMP= logos/denx.bmp
44endif
45
46#-------------------------------------------------------------------------
47
48HOSTARCH := $(shell uname -m | \
49 sed -e s/i.86/i386/ \
50 -e s/sun4u/sparc64/ \
51 -e s/arm.*/arm/ \
52 -e s/sa110/arm/ \
53 -e s/powerpc/ppc/ \
54 -e s/Power\ Macintosh/ppc/ \
55 -e s/macppc/ppc/)
56
57HOSTOS := $(shell uname -s | tr A-Z a-z | \
58 sed -e 's/\(cygwin\).*/cygwin/')
59
60TOOLSUBDIRS =
61
62#
63# Mac OS X / Darwin's C preprocessor is Apple specific. It
64# generates numerous errors and warnings. We want to bypass it
65# and use GNU C's cpp. To do this we pass the -traditional-cpp
66# option to the compiler. Note that the -traditional-cpp flag
67# DOES NOT have the same semantics as GNU C's flag, all it does
68# is invoke the GNU preprocessor in stock ANSI/ISO C fashion.
69#
70# Apple's linker is similar, thanks to the new 2 stage linking
71# multiple symbol definitions are treated as errors, hence the
72# -multiply_defined suppress option to turn off this error.
73#
74ifeq ($(HOSTOS)-$(HOSTARCH),darwin-ppc)
wdenkefee1702002-07-20 20:14:13 +000075HOST_CFLAGS = -traditional-cpp -Wall
76HOST_LDFLAGS =-multiply_defined suppress
Aubrey.Li5dfaa502007-05-14 11:47:35 +080077HOST_ENVIRO_CFLAGS =
wdenkefee1702002-07-20 20:14:13 +000078
79else
wdenkefee1702002-07-20 20:14:13 +000080ifeq ($(HOSTOS)-$(HOSTARCH),netbsd-ppc)
81HOST_CFLAGS = -Wall -pedantic
82HOST_LDFLAGS =
83HOST_ENVIRO_CFLAGS =
84
85#
86# Everyone else
87#
88else
wdenkefee1702002-07-20 20:14:13 +000089HOST_CFLAGS = -Wall -pedantic
90HOST_LDFLAGS =
91HOST_ENVIRO_CFLAGS =
92endif
93endif
94
95#
96# Cygwin needs .exe files :-(
97#
98ifeq ($(HOSTOS),cygwin)
99SFX = .exe
100else
101SFX =
102endif
103
wdenkefee1702002-07-20 20:14:13 +0000104#
105# Include this after HOSTOS HOSTARCH check
106# so that we can act intelligently.
107#
108include $(TOPDIR)/config.mk
109
Marian Balakowiczf9328632006-09-01 19:49:50 +0200110# now $(obj) is defined
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200111SRCS := $(addprefix $(obj),$(OBJ_LINKS:.o=.c)) $(OBJ_FILES:.o=.c)
Marian Balakowiczf9328632006-09-01 19:49:50 +0200112BINS := $(addprefix $(obj),$(BIN_FILES))
113
wdenkefee1702002-07-20 20:14:13 +0000114#
115# Use native tools and options
116#
Marian Balakowiczf9328632006-09-01 19:49:50 +0200117CPPFLAGS = -idirafter $(SRCTREE)/include \
118 -idirafter $(OBJTREE)/include2 \
119 -idirafter $(OBJTREE)/include \
120 -DTEXT_BASE=$(TEXT_BASE) -DUSE_HOSTCC
wdenkefee1702002-07-20 20:14:13 +0000121CFLAGS = $(HOST_CFLAGS) $(CPPFLAGS) -O
122AFLAGS = -D__ASSEMBLY__ $(CPPFLAGS)
123CC = $(HOSTCC)
124STRIP = $(HOSTSTRIP)
125MAKEDEPEND = makedepend
126
Marian Balakowiczf9328632006-09-01 19:49:50 +0200127all: $(obj).depend $(BINS) $(LOGO_H) subdirs
wdenkefee1702002-07-20 20:14:13 +0000128
Marian Balakowiczf9328632006-09-01 19:49:50 +0200129$(obj)envcrc$(SFX): $(obj)envcrc.o $(obj)crc32.o $(obj)environment.o
wdenkefee1702002-07-20 20:14:13 +0000130 $(CC) $(CFLAGS) -o $@ $^
131
Marian Balakowiczf9328632006-09-01 19:49:50 +0200132$(obj)img2srec$(SFX): $(obj)img2srec.o
wdenkefee1702002-07-20 20:14:13 +0000133 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
134 $(STRIP) $@
135
Marian Balakowiczf9328632006-09-01 19:49:50 +0200136$(obj)mkimage$(SFX): $(obj)mkimage.o $(obj)crc32.o
wdenkefee1702002-07-20 20:14:13 +0000137 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
138 $(STRIP) $@
139
Marian Balakowiczf9328632006-09-01 19:49:50 +0200140$(obj)ncb$(SFX): $(obj)ncb.o
wdenkeedcd072004-09-08 22:03:11 +0000141 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
142 $(STRIP) $@
143
Marian Balakowiczf9328632006-09-01 19:49:50 +0200144$(obj)gen_eth_addr$(SFX): $(obj)gen_eth_addr.o
wdenkefee1702002-07-20 20:14:13 +0000145 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
146 $(STRIP) $@
147
Marian Balakowiczf9328632006-09-01 19:49:50 +0200148$(obj)bmp_logo$(SFX): $(obj)bmp_logo.o
wdenkefee1702002-07-20 20:14:13 +0000149 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
150 $(STRIP) $@
151
Marian Balakowiczf9328632006-09-01 19:49:50 +0200152$(obj)inca-swap-bytes$(SFX): $(obj)inca-swap-bytes.o
wdenk3e386912003-04-05 00:53:31 +0000153 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
154 $(STRIP) $@
155
Marian Balakowiczf9328632006-09-01 19:49:50 +0200156$(obj)mpc86x_clk$(SFX): $(obj)mpc86x_clk.o
wdenkef1464c2003-10-08 22:14:02 +0000157 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
158 $(STRIP) $@
159
Marian Balakowiczf9328632006-09-01 19:49:50 +0200160$(obj)envcrc.o: $(src)envcrc.c
161 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenkefee1702002-07-20 20:14:13 +0000162
Marian Balakowiczf9328632006-09-01 19:49:50 +0200163$(obj)crc32.o: $(obj)crc32.c
164 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenkefee1702002-07-20 20:14:13 +0000165
Marian Balakowiczf9328632006-09-01 19:49:50 +0200166$(obj)mkimage.o: $(src)mkimage.c
167 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenkefee1702002-07-20 20:14:13 +0000168
Marian Balakowiczf9328632006-09-01 19:49:50 +0200169$(obj)ncb.o: $(src)ncb.c
170 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenkeedcd072004-09-08 22:03:11 +0000171
Marian Balakowiczf9328632006-09-01 19:49:50 +0200172$(obj)gen_eth_addr.o: $(src)gen_eth_addr.c
173 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenkefee1702002-07-20 20:14:13 +0000174
Marian Balakowiczf9328632006-09-01 19:49:50 +0200175$(obj)inca-swap-bytes.o: $(src)inca-swap-bytes.c
176 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenk3e386912003-04-05 00:53:31 +0000177
Marian Balakowiczf9328632006-09-01 19:49:50 +0200178$(obj)mpc86x_clk.o: $(src)mpc86x_clk.c
179 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenkef1464c2003-10-08 22:14:02 +0000180
wdenkefee1702002-07-20 20:14:13 +0000181subdirs:
wdenke0ac62d2003-08-17 18:55:18 +0000182ifeq ($(TOOLSUBDIRS),)
183 @:
184else
wdenkefee1702002-07-20 20:14:13 +0000185 @for dir in $(TOOLSUBDIRS) ; do \
186 $(MAKE) \
187 HOSTOS=$(HOSTOS) \
188 HOSTARCH=$(HOSTARCH) \
189 HOST_CFLAGS="$(HOST_CFLAGS)" \
190 HOST_LDFLAGS="$(HOST_LDFLAGS)" \
191 -C $$dir || exit 1 ; \
192 done
wdenke0ac62d2003-08-17 18:55:18 +0000193endif
194
Marian Balakowiczf9328632006-09-01 19:49:50 +0200195$(obj)environment.c:
196 @rm -f $(obj)environment.c
197 ln -s $(src)../common/environment.c $(obj)environment.c
wdenkefee1702002-07-20 20:14:13 +0000198
Marian Balakowiczf9328632006-09-01 19:49:50 +0200199$(obj)environment.o: $(obj)environment.c
200 $(CC) -g $(HOST_ENVIRO_CFLAGS) $(CPPFLAGS) -c -o $@ $<
wdenkefee1702002-07-20 20:14:13 +0000201
Marian Balakowiczf9328632006-09-01 19:49:50 +0200202$(obj)crc32.c:
203 @rm -f $(obj)crc32.c
204 ln -s $(src)../lib_generic/crc32.c $(obj)crc32.c
wdenkefee1702002-07-20 20:14:13 +0000205
Marian Balakowiczf9328632006-09-01 19:49:50 +0200206$(LOGO_H): $(obj)bmp_logo $(LOGO_BMP)
207 $(obj)./bmp_logo $(LOGO_BMP) >$@
wdenkefee1702002-07-20 20:14:13 +0000208
209#########################################################################
210
Marian Balakowiczf9328632006-09-01 19:49:50 +0200211# defines $(obj).depend target
212include $(SRCTREE)/rules.mk
wdenkefee1702002-07-20 20:14:13 +0000213
Marian Balakowiczf9328632006-09-01 19:49:50 +0200214sinclude $(obj).depend
wdenkefee1702002-07-20 20:14:13 +0000215
216#########################################################################