1*4a442d31STsiChungLiew#
2*4a442d31STsiChungLiew# (C) Copyright 2000-2003
3*4a442d31STsiChungLiew# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4*4a442d31STsiChungLiew#
5*4a442d31STsiChungLiew# See file CREDITS for list of people who contributed to this
6*4a442d31STsiChungLiew# project.
7*4a442d31STsiChungLiew#
8*4a442d31STsiChungLiew# This program is free software; you can redistribute it and/or
9*4a442d31STsiChungLiew# modify it under the terms of the GNU General Public License as
10*4a442d31STsiChungLiew# published by the Free Software Foundation; either version 2 of
11*4a442d31STsiChungLiew# the License, or (at your option) any later version.
12*4a442d31STsiChungLiew#
13*4a442d31STsiChungLiew# This program is distributed in the hope that it will be useful,
14*4a442d31STsiChungLiew# but WITHOUT ANY WARRANTY; without even the implied warranty of
15*4a442d31STsiChungLiew# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16*4a442d31STsiChungLiew# GNU General Public License for more details.
17*4a442d31STsiChungLiew#
18*4a442d31STsiChungLiew# You should have received a copy of the GNU General Public License
19*4a442d31STsiChungLiew# along with this program; if not, write to the Free Software
20*4a442d31STsiChungLiew# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21*4a442d31STsiChungLiew# MA 02111-1307 USA
22*4a442d31STsiChungLiew#
23*4a442d31STsiChungLiew
24*4a442d31STsiChungLiewinclude $(TOPDIR)/config.mk
25*4a442d31STsiChungLiew
26*4a442d31STsiChungLiewLIB	= $(obj)lib$(BOARD).a
27*4a442d31STsiChungLiew
28*4a442d31STsiChungLiewCOBJS	= $(BOARD).o mii.o
29*4a442d31STsiChungLiew
30*4a442d31STsiChungLiewSRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
31*4a442d31STsiChungLiewOBJS	:= $(addprefix $(obj),$(COBJS))
32*4a442d31STsiChungLiewSOBJS	:= $(addprefix $(obj),$(SOBJS))
33*4a442d31STsiChungLiew
34*4a442d31STsiChungLiew$(LIB):	$(obj).depend $(OBJS)
35*4a442d31STsiChungLiew	$(AR) $(ARFLAGS) $@ $(OBJS)
36*4a442d31STsiChungLiew
37*4a442d31STsiChungLiew#########################################################################
38*4a442d31STsiChungLiew
39*4a442d31STsiChungLiew# defines $(obj).depend target
40*4a442d31STsiChungLiewinclude $(SRCTREE)/rules.mk
41*4a442d31STsiChungLiew
42*4a442d31STsiChungLiewsinclude $(obj).depend
43*4a442d31STsiChungLiew
44*4a442d31STsiChungLiew#########################################################################
45