]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/voiceblue/Makefile
imported Ka-Ro specific additions to U-Boot 2009.08 for TX28
[karo-tx-uboot.git] / board / voiceblue / Makefile
1 # (C) Copyright 2000-2006
2 # Wolfgang Denk, DENX Software Engineering, wd@denx.de
3 #
4 # (C) Copyright 2005
5 # Ladislav Michl, 2N Telekomunikace, michl@2n.cz
6 #
7 # See file CREDITS for list of people who contributed to this
8 # project.
9 #
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License version 2 as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 # MA 02111-1307 USA
23 #
24
25 include $(TOPDIR)/config.mk
26
27 LIB     = $(obj)lib$(BOARD).a
28
29 COBJS   := voiceblue.o
30 SOBJS   := setup.o
31
32 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c) eeprom.c eeprom_start.S
33 OBJS    := $(addprefix $(obj),$(COBJS))
34 SOBJS   := $(addprefix $(obj),$(SOBJS))
35
36 gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
37
38 LOAD_ADDR = 0x10400000
39 LDSCRIPT = $(TOPDIR)/board/$(BOARDDIR)/eeprom.lds
40 lnk = $(if $(obj),$(obj),.)
41
42 all:    $(obj).depend $(LIB) $(obj)eeprom.srec $(obj)eeprom.bin
43
44 $(LIB): $(OBJS) $(SOBJS)
45         $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
46
47 $(obj)eeprom.srec:      $(obj)eeprom.o $(obj)eeprom_start.o $(obj)u-boot.lds
48         cd $(lnk) && $(LD) -T $(obj)u-boot.lds -g -Ttext $(LOAD_ADDR) \
49                 -o $(<:.o=) -e eeprom eeprom.o eeprom_start.o \
50                 -L$(obj)../../examples/standalone -lstubs \
51                 -L$(obj)../../lib_generic -lgeneric \
52                 -L$(gcclibdir) -lgcc
53         $(OBJCOPY) -O srec $(<:.o=) $@
54
55 $(obj)eeprom.bin:       $(obj)eeprom.srec
56         $(OBJCOPY) -I srec -O binary $< $@ 2>/dev/null
57
58 $(obj)u-boot.lds: $(LDSCRIPT)
59         $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$^ >$@
60
61 clean:
62         rm -f $(SOBJS) $(OBJS) $(obj)eeprom \
63                 $(obj)eeprom.srec $(obj)eeprom.bin \
64                 $(obj)eeprom.o $(obj)eeprom_start.o \
65                  $(obj)u-boot.lds
66
67 distclean:      clean
68         rm -f $(LIB) core *.bak $(obj).depend
69
70 #########################################################################
71
72 # defines $(obj).depend target
73 include $(SRCTREE)/rules.mk
74
75 sinclude $(obj).depend
76
77 #########################################################################