blob: e8e02801a6be0d76b638cc1fc452d9448c80032e [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
Heiko Schocher566a4942007-06-22 19:11:54 +020024BIN_FILES = img2srec$(SFX) mkimage$(SFX) envcrc$(SFX) ubsha1$(SFX) gen_eth_addr$(SFX) bmp_logo$(SFX)
wdenkefee1702002-07-20 20:14:13 +000025
Heiko Schocher566a4942007-06-22 19:11:54 +020026OBJ_LINKS = environment.o crc32.o sha1.o
27OBJ_FILES = img2srec.o mkimage.o envcrc.o ubsha1.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
Heiko Schocher566a4942007-06-22 19:11:54 +0200129$(obj)envcrc$(SFX): $(obj)envcrc.o $(obj)crc32.o $(obj)environment.o $(obj)sha1.o
130 $(CC) $(CFLAGS) -o $@ $^
131
132$(obj)ubsha1$(SFX): $(obj)ubsha1.o $(obj)sha1.o
wdenkefee1702002-07-20 20:14:13 +0000133 $(CC) $(CFLAGS) -o $@ $^
134
Marian Balakowiczf9328632006-09-01 19:49:50 +0200135$(obj)img2srec$(SFX): $(obj)img2srec.o
wdenkefee1702002-07-20 20:14:13 +0000136 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
137 $(STRIP) $@
138
Heiko Schocher566a4942007-06-22 19:11:54 +0200139$(obj)mkimage$(SFX): $(obj)mkimage.o $(obj)crc32.o $(obj)sha1.o
wdenkefee1702002-07-20 20:14:13 +0000140 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
141 $(STRIP) $@
142
Marian Balakowiczf9328632006-09-01 19:49:50 +0200143$(obj)ncb$(SFX): $(obj)ncb.o
wdenkeedcd072004-09-08 22:03:11 +0000144 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
145 $(STRIP) $@
146
Marian Balakowiczf9328632006-09-01 19:49:50 +0200147$(obj)gen_eth_addr$(SFX): $(obj)gen_eth_addr.o
wdenkefee1702002-07-20 20:14:13 +0000148 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
149 $(STRIP) $@
150
Marian Balakowiczf9328632006-09-01 19:49:50 +0200151$(obj)bmp_logo$(SFX): $(obj)bmp_logo.o
wdenkefee1702002-07-20 20:14:13 +0000152 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
153 $(STRIP) $@
154
Marian Balakowiczf9328632006-09-01 19:49:50 +0200155$(obj)inca-swap-bytes$(SFX): $(obj)inca-swap-bytes.o
wdenk3e386912003-04-05 00:53:31 +0000156 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
157 $(STRIP) $@
158
Marian Balakowiczf9328632006-09-01 19:49:50 +0200159$(obj)mpc86x_clk$(SFX): $(obj)mpc86x_clk.o
wdenkef1464c2003-10-08 22:14:02 +0000160 $(CC) $(CFLAGS) $(HOST_LDFLAGS) -o $@ $^
161 $(STRIP) $@
162
Marian Balakowiczf9328632006-09-01 19:49:50 +0200163$(obj)envcrc.o: $(src)envcrc.c
164 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenkefee1702002-07-20 20:14:13 +0000165
Heiko Schocher566a4942007-06-22 19:11:54 +0200166$(obj)ubsha1.o: $(src)ubsha1.c
167 $(CC) -g $(CFLAGS) -c -o $@ $<
168
Marian Balakowiczf9328632006-09-01 19:49:50 +0200169$(obj)crc32.o: $(obj)crc32.c
170 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenkefee1702002-07-20 20:14:13 +0000171
Heiko Schocher566a4942007-06-22 19:11:54 +0200172$(obj)sha1.o: $(obj)sha1.c
173 $(CC) -g $(CFLAGS) -c -o $@ $<
174
Marian Balakowiczf9328632006-09-01 19:49:50 +0200175$(obj)mkimage.o: $(src)mkimage.c
176 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenkefee1702002-07-20 20:14:13 +0000177
Marian Balakowiczf9328632006-09-01 19:49:50 +0200178$(obj)ncb.o: $(src)ncb.c
179 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenkeedcd072004-09-08 22:03:11 +0000180
Marian Balakowiczf9328632006-09-01 19:49:50 +0200181$(obj)gen_eth_addr.o: $(src)gen_eth_addr.c
182 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenkefee1702002-07-20 20:14:13 +0000183
Marian Balakowiczf9328632006-09-01 19:49:50 +0200184$(obj)inca-swap-bytes.o: $(src)inca-swap-bytes.c
185 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenk3e386912003-04-05 00:53:31 +0000186
Marian Balakowiczf9328632006-09-01 19:49:50 +0200187$(obj)mpc86x_clk.o: $(src)mpc86x_clk.c
188 $(CC) -g $(CFLAGS) -c -o $@ $<
wdenkef1464c2003-10-08 22:14:02 +0000189
wdenkefee1702002-07-20 20:14:13 +0000190subdirs:
wdenke0ac62d2003-08-17 18:55:18 +0000191ifeq ($(TOOLSUBDIRS),)
192 @:
193else
wdenkefee1702002-07-20 20:14:13 +0000194 @for dir in $(TOOLSUBDIRS) ; do \
195 $(MAKE) \
196 HOSTOS=$(HOSTOS) \
197 HOSTARCH=$(HOSTARCH) \
198 HOST_CFLAGS="$(HOST_CFLAGS)" \
199 HOST_LDFLAGS="$(HOST_LDFLAGS)" \
200 -C $$dir || exit 1 ; \
201 done
wdenke0ac62d2003-08-17 18:55:18 +0000202endif
203
Marian Balakowiczf9328632006-09-01 19:49:50 +0200204$(obj)environment.c:
205 @rm -f $(obj)environment.c
206 ln -s $(src)../common/environment.c $(obj)environment.c
wdenkefee1702002-07-20 20:14:13 +0000207
Marian Balakowiczf9328632006-09-01 19:49:50 +0200208$(obj)environment.o: $(obj)environment.c
209 $(CC) -g $(HOST_ENVIRO_CFLAGS) $(CPPFLAGS) -c -o $@ $<
wdenkefee1702002-07-20 20:14:13 +0000210
Marian Balakowiczf9328632006-09-01 19:49:50 +0200211$(obj)crc32.c:
212 @rm -f $(obj)crc32.c
213 ln -s $(src)../lib_generic/crc32.c $(obj)crc32.c
wdenkefee1702002-07-20 20:14:13 +0000214
Heiko Schocher566a4942007-06-22 19:11:54 +0200215$(obj)sha1.c:
216 @rm -f $(obj)sha1.c
217 ln -s $(src)../lib_generic/sha1.c $(obj)sha1.c
218
Marian Balakowiczf9328632006-09-01 19:49:50 +0200219$(LOGO_H): $(obj)bmp_logo $(LOGO_BMP)
220 $(obj)./bmp_logo $(LOGO_BMP) >$@
wdenkefee1702002-07-20 20:14:13 +0000221
222#########################################################################
223
Marian Balakowiczf9328632006-09-01 19:49:50 +0200224# defines $(obj).depend target
225include $(SRCTREE)/rules.mk
wdenkefee1702002-07-20 20:14:13 +0000226
Marian Balakowiczf9328632006-09-01 19:49:50 +0200227sinclude $(obj).depend
wdenkefee1702002-07-20 20:14:13 +0000228
229#########################################################################