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