]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/netstar/Makefile
NetStar: eeprom - fix linker error
[people/ms/u-boot.git] / board / netstar / Makefile
CommitLineData
511d0c72 1#
f9328639
MB
2# (C) Copyright 2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
ac7eb8a3
WD
4#
5# (C) Copyright 2005
6# Ladislav Michl, 2N Telekomunikace, michl@2n.cz
7#
8# See file CREDITS for list of people who contributed to this
9# project.
10#
11# This program is free software; you can redistribute it and/or
12# modify it under the terms of the GNU General Public License as
13# published by the Free Software Foundation; either version 2 of
14# the License, or (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24# MA 02111-1307 USA
25#
26
27include $(TOPDIR)/config.mk
28
f9328639 29LIB = $(obj)lib$(BOARD).a
ac7eb8a3 30
0fc4f64c 31COBJS := netstar.o
3a67566c 32SOBJS := setup.o
ac7eb8a3 33
3a67566c 34SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
f9328639
MB
35OBJS := $(addprefix $(obj),$(COBJS))
36SOBJS := $(addprefix $(obj),$(SOBJS))
37
ac7eb8a3 38LOAD_ADDR = 0x10400000
ac7eb8a3 39
3a67566c 40#########################################################################
ac7eb8a3 41
f9328639
MB
42all: $(obj).depend $(LIB) $(obj)eeprom.srec $(obj)eeprom.bin \
43 $(obj)crcek.srec $(obj)crcek.bin $(obj)crcit
ac7eb8a3
WD
44
45$(LIB): $(OBJS) $(SOBJS)
2b208f53 46 $(AR) $(ARFLAGS) $@ $^
ac7eb8a3 47
3a67566c
LM
48$(obj)eeprom_start.o:
49 echo "b eeprom" | $(CC) $(AFLAGS) -c -x assembler -o $@ -
50
51$(obj)eeprom: $(obj)eeprom_start.o $(obj)eeprom.o
52 $(LD) -Ttext $(LOAD_ADDR) -e eeprom -o $@ $^ \
48677a1e 53 -L$(obj)../../examples/standalone -lstubs \
3a67566c 54 $(PLATFORM_LIBS)
ac7eb8a3 55
3a67566c
LM
56$(obj)eeprom.srec: $(obj)eeprom
57 $(OBJCOPY) -S -O srec $(<:.o=) $@
58
59$(obj)eeprom.bin: $(obj)eeprom
60 $(OBJCOPY) -S -O binary $< $@
ac7eb8a3 61
f9328639 62$(obj)crcek.srec: $(obj)crcek.o
3a67566c
LM
63 $(LD) -g -Ttext 0x00000000 -e crcek -o $(<:.o=) $^
64 $(OBJCOPY) -S -O srec $(<:.o=) $@
ac7eb8a3 65
f9328639 66$(obj)crcek.bin: $(obj)crcek.srec
3a67566c 67 $(OBJCOPY) -I srec -O binary $< $@
ac7eb8a3 68
f9328639 69$(obj)crcit: $(obj)crcit.o $(obj)crc32.o
9aef7388 70 $(HOSTCC) $(HOSTCFLAGS) -o $@ $^
ac7eb8a3 71
3a67566c 72$(obj)crcit.o: crcit.c
9aef7388 73 $(HOSTCC) $(HOSTCFLAGS) -o $@ -c $<
ac7eb8a3 74
3a67566c
LM
75$(obj)crc32.o: $(SRCTREE)/lib_generic/crc32.c
76 $(HOSTCC) $(HOSTCFLAGS) -DUSE_HOSTCC -I$(TOPDIR)/include \
77 -o $@ -c $<
1aada9cd 78
ac7eb8a3 79clean:
3a67566c
LM
80 rm -f $(SOBJS) $(OBJS) \
81 $(obj)eeprom_start.o $(obj)eeprom.o \
82 $(obj)eeprom $(obj)eeprom.srec $(obj)eeprom.bin \
83 $(obj)crcek.o $(obj)crcek $(obj)crcek.srec $(obj)crcek.bin
ac7eb8a3
WD
84
85distclean: clean
c8a3b109 86 rm -f $(LIB) core *.bak $(obj).depend
ac7eb8a3
WD
87
88#########################################################################
89
f9328639
MB
90# defines $(obj).depend target
91include $(SRCTREE)/rules.mk
ac7eb8a3 92
f9328639 93sinclude $(obj).depend
ac7eb8a3
WD
94
95#########################################################################