blob: 868ca4281f180a6b0c105cd9ce0529e4e5da59bc [file] [log] [blame]
wdenke831ad52002-10-17 21:52:26 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenke831ad52002-10-17 21:52:26 +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
24include $(TOPDIR)/config.mk
25
Marian Balakowiczf9328632006-09-01 19:49:50 +020026LIB = $(obj)lib$(BOARD).a
wdenke831ad52002-10-17 21:52:26 +000027
Marian Balakowiczf9328632006-09-01 19:49:50 +020028COBJS := trab.o flash.o vfd.o cmd_trab.o memory.o tsc2000.o auto_update.o
wdenk400558b2005-04-02 23:52:25 +000029SOBJS := lowlevel_init.o
wdenke831ad52002-10-17 21:52:26 +000030
Marian Balakowiczf9328632006-09-01 19:49:50 +020031COBJS_FKT := trab_fkt.o rs485.o tsc2000.o
32
33SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) $(COBJS_FKT:.o=.c)
34OBJS := $(addprefix $(obj),$(COBJS))
35SOBJS := $(addprefix $(obj),$(SOBJS))
36
37OBJS_FKT := $(addprefix $(obj),$(COBJS_FKT))
38
wdenkf5300ab2003-09-12 15:35:15 +000039gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
40
41LOAD_ADDR = 0xc100000
42
43#########################################################################
44
Marian Balakowiczf9328632006-09-01 19:49:50 +020045all: $(LIB) $(obj)trab_fkt.srec $(obj)trab_fkt.bin
wdenkf5300ab2003-09-12 15:35:15 +000046
Marian Balakowiczf9328632006-09-01 19:49:50 +020047$(LIB): $(obj).depend $(OBJS) $(SOBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +020048 $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
wdenke831ad52002-10-17 21:52:26 +000049
Marian Balakowiczf9328632006-09-01 19:49:50 +020050$(obj)trab_fkt.srec: $(OBJS_FKT) $(LIB)
51 $(LD) -g -Ttext $(LOAD_ADDR) -o $(<:.o=) -e trab_fkt $^ $(LIB) \
52 -L$(obj)../../examples -lstubs \
53 -L$(obj)../../lib_generic -lgeneric \
wdenkf5300ab2003-09-12 15:35:15 +000054 -L$(gcclibdir) -lgcc
55 $(OBJCOPY) -O srec $(<:.o=) $@
56
Marian Balakowiczf9328632006-09-01 19:49:50 +020057$(obj)trab_fkt.bin: $(obj)trab_fkt.srec
Wolfgang Denkd2ed2f62006-03-11 23:07:09 +010058 $(OBJCOPY) -I srec -O binary $< $@
wdenkf5300ab2003-09-12 15:35:15 +000059
wdenke831ad52002-10-17 21:52:26 +000060clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +020061 rm -f $(SOBJS) $(OBJS) $(OBJS_FKT)
wdenke831ad52002-10-17 21:52:26 +000062
63distclean: clean
64 rm -f $(LIB) core *.bak .depend
65
66#########################################################################
67
Marian Balakowiczf9328632006-09-01 19:49:50 +020068# defines $(obj).depend target
69include $(SRCTREE)/rules.mk
wdenke831ad52002-10-17 21:52:26 +000070
Marian Balakowiczf9328632006-09-01 19:49:50 +020071sinclude $(obj).depend
wdenke831ad52002-10-17 21:52:26 +000072
73#########################################################################