blob: 0b13dc475ee42417317491d29ae4c180b145de55 [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 +000039LOAD_ADDR = 0xc100000
40
41#########################################################################
42
Marian Balakowiczf9328632006-09-01 19:49:50 +020043all: $(LIB) $(obj)trab_fkt.srec $(obj)trab_fkt.bin
wdenkf5300ab2003-09-12 15:35:15 +000044
Marian Balakowiczf9328632006-09-01 19:49:50 +020045$(LIB): $(obj).depend $(OBJS) $(SOBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +020046 $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
wdenke831ad52002-10-17 21:52:26 +000047
Marian Balakowiczf9328632006-09-01 19:49:50 +020048$(obj)trab_fkt.srec: $(OBJS_FKT) $(LIB)
49 $(LD) -g -Ttext $(LOAD_ADDR) -o $(<:.o=) -e trab_fkt $^ $(LIB) \
Wolfgang Denk48677a12009-07-22 23:53:23 +020050 -L$(obj)../../examples/standalone -lstubs \
Peter Tyser78acc472010-04-12 22:28:05 -050051 -L$(obj)../../lib -lgeneric \
Wolfgang Denk52b1bf22009-07-23 13:15:59 +020052 $(PLATFORM_LIBS)
wdenkf5300ab2003-09-12 15:35:15 +000053 $(OBJCOPY) -O srec $(<:.o=) $@
54
Marian Balakowiczf9328632006-09-01 19:49:50 +020055$(obj)trab_fkt.bin: $(obj)trab_fkt.srec
Wolfgang Denkd2ed2f62006-03-11 23:07:09 +010056 $(OBJCOPY) -I srec -O binary $< $@
wdenkf5300ab2003-09-12 15:35:15 +000057
wdenke831ad52002-10-17 21:52:26 +000058clean:
Marian Balakowiczf9328632006-09-01 19:49:50 +020059 rm -f $(SOBJS) $(OBJS) $(OBJS_FKT)
wdenke831ad52002-10-17 21:52:26 +000060
61distclean: clean
Wolfgang Denkc8a3b102008-07-02 23:49:18 +020062 rm -f $(LIB) core *.bak $(obj).depend
wdenke831ad52002-10-17 21:52:26 +000063
64#########################################################################
65
Marian Balakowiczf9328632006-09-01 19:49:50 +020066# defines $(obj).depend target
67include $(SRCTREE)/rules.mk
wdenke831ad52002-10-17 21:52:26 +000068
Marian Balakowiczf9328632006-09-01 19:49:50 +020069sinclude $(obj).depend
wdenke831ad52002-10-17 21:52:26 +000070
71#########################################################################