blob: 114d8adeb2fa9f3025516ef3dd2f6df3069740a2 [file] [log] [blame]
wdenkdc7c9a12003-03-26 06:55:25 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenkdc7c9a12003-03-26 06:55:25 +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$(SOC).a
wdenkdc7c9a12003-03-26 06:55:25 +000027
Jean-Christophe PLAGNIOL-VILLARDac7260a2009-05-15 23:45:22 +020028SOBJS += lowlevel_init.o
29
30COBJS += bcm5221.o
31COBJS += dm9161.o
32COBJS += ether.o
33COBJS += i2c.o
Tom Rix6dceeaa2009-09-27 07:47:24 -050034COBJS-$(CONFIG_KS8721_PHY) += ks8721.o
Jean-Christophe PLAGNIOL-VILLARDac7260a2009-05-15 23:45:22 +020035COBJS += lxt972.o
36COBJS += reset.o
37COBJS += spi.o
Jean-Christophe PLAGNIOL-VILLARDb54384e2009-05-15 23:47:02 +020038COBJS += timer.o
Jean-Christophe PLAGNIOL-VILLARDac7260a2009-05-15 23:45:22 +020039COBJS += usb.o
wdenkdc7c9a12003-03-26 06:55:25 +000040
Tom Rix6dceeaa2009-09-27 07:47:24 -050041SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) $(COBJS-y:.o=.c)
42OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS) $(COBJS-y))
wdenkdc7c9a12003-03-26 06:55:25 +000043
Marian Balakowiczf9328632006-09-01 19:49:50 +020044all: $(obj).depend $(LIB)
45
46$(LIB): $(OBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +020047 $(AR) $(ARFLAGS) $@ $(OBJS)
wdenkdc7c9a12003-03-26 06:55:25 +000048
49#########################################################################
50
Marian Balakowiczf9328632006-09-01 19:49:50 +020051# defines $(obj).depend target
52include $(SRCTREE)/rules.mk
wdenkdc7c9a12003-03-26 06:55:25 +000053
Marian Balakowiczf9328632006-09-01 19:49:50 +020054sinclude $(obj).depend
wdenkdc7c9a12003-03-26 06:55:25 +000055
56#########################################################################