blob: d9fd9bfdb170b242bdd8175f244eea02a097df49 [file] [log] [blame]
wdenke85390d2002-04-01 14:29:03 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenke85390d2002-04-01 14:29:03 +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
Marian Balakowiczf9328632006-09-01 19:49:50 +020025ifneq ($(OBJTREE),$(SRCTREE))
26$(shell mkdir -p $(obj)drivers/epic)
27$(shell mkdir -p $(obj)drivers/i2c)
28endif
wdenke85390d2002-04-01 14:29:03 +000029
Marian Balakowiczf9328632006-09-01 19:49:50 +020030LIB = $(obj)lib$(CPU).a
wdenke85390d2002-04-01 14:29:03 +000031
Marian Balakowiczf9328632006-09-01 19:49:50 +020032START = start.o
33COBJS = traps.o cpu.o cpu_init.o interrupts.o speed.o \
34 drivers/epic/epic1.o drivers/i2c/i2c.o pci.o
35COBJS_LN = bedbug_603e.o
wdenke85390d2002-04-01 14:29:03 +000036
Marian Balakowiczf9328632006-09-01 19:49:50 +020037SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) $(addprefix $(obj),$(COBJS_LN:.o=.c))
38OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS) $(COBJS_LN))
39START := $(addprefix $(obj),$(START))
40
41all: $(obj).depend $(START) $(LIB)
wdenke85390d2002-04-01 14:29:03 +000042
43$(LIB): $(OBJS)
wdenk7205e402003-09-10 22:30:53 +000044 $(AR) crv $@ $(OBJS)
wdenke85390d2002-04-01 14:29:03 +000045
Marian Balakowiczf9328632006-09-01 19:49:50 +020046$(obj)bedbug_603e.c:
47 ln -s $(src)../mpc8260/bedbug_603e.c $(obj)bedbug_603e.c
wdenk43d96162003-03-06 00:02:04 +000048
wdenke85390d2002-04-01 14:29:03 +000049#########################################################################
50
Marian Balakowiczf9328632006-09-01 19:49:50 +020051# defines $(obj).depend target
52include $(SRCTREE)/rules.mk
wdenke85390d2002-04-01 14:29:03 +000053
Marian Balakowiczf9328632006-09-01 19:49:50 +020054sinclude $(obj).depend
wdenke85390d2002-04-01 14:29:03 +000055
56#########################################################################