blob: 7e8d6ed5f2f9e0872daea1501dc4851379561759 [file] [log] [blame]
wdenk1d9f4102004-10-09 22:21:29 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenk1d9f4102004-10-09 22:21:29 +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
wdenk1d9f4102004-10-09 22:21:29 +000027
Jean-Christophe PLAGNIOL-VILLARD8d460a52009-06-23 00:12:01 +020028COBJS-$(CONFIG_USE_IRQ) += interrupts.o
29COBJS-y += speed.o
30COBJS-y += timer.o
31COBJS-y += usb.o
32COBJS-y += usb_ohci.o
wdenk1d9f4102004-10-09 22:21:29 +000033
Jean-Christophe PLAGNIOL-VILLARD8d460a52009-06-23 00:12:01 +020034
35SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
36OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS-y))
Marian Balakowiczf9328632006-09-01 19:49:50 +020037
38all: $(obj).depend $(LIB)
wdenk1d9f4102004-10-09 22:21:29 +000039
40$(LIB): $(OBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +020041 $(AR) $(ARFLAGS) $@ $(OBJS)
wdenk1d9f4102004-10-09 22:21:29 +000042
43#########################################################################
44
Marian Balakowiczf9328632006-09-01 19:49:50 +020045# defines $(obj).depend target
46include $(SRCTREE)/rules.mk
wdenk1d9f4102004-10-09 22:21:29 +000047
Marian Balakowiczf9328632006-09-01 19:49:50 +020048sinclude $(obj).depend
wdenk1d9f4102004-10-09 22:21:29 +000049
50#########################################################################