1*1d0f5fa1SDavid Purdy# 2*1d0f5fa1SDavid Purdy# (C) Copyright 2009 3*1d0f5fa1SDavid Purdy# Marvell Semiconductor <www.marvell.com> 4*1d0f5fa1SDavid Purdy# Written-by: Prafulla Wadaskar <prafulla@marvell.com> 5*1d0f5fa1SDavid Purdy# 6*1d0f5fa1SDavid Purdy# See file CREDITS for list of people who contributed to this 7*1d0f5fa1SDavid Purdy# project. 8*1d0f5fa1SDavid Purdy# 9*1d0f5fa1SDavid Purdy# This program is free software; you can redistribute it and/or 10*1d0f5fa1SDavid Purdy# modify it under the terms of the GNU General Public License as 11*1d0f5fa1SDavid Purdy# published by the Free Software Foundation; either version 2 of 12*1d0f5fa1SDavid Purdy# the License, or (at your option) any later version. 13*1d0f5fa1SDavid Purdy# 14*1d0f5fa1SDavid Purdy# This program is distributed in the hope that it will be useful, 15*1d0f5fa1SDavid Purdy# but WITHOUT ANY WARRANTY; without even the implied warranty of 16*1d0f5fa1SDavid Purdy# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17*1d0f5fa1SDavid Purdy# GNU General Public License for more details. 18*1d0f5fa1SDavid Purdy# 19*1d0f5fa1SDavid Purdy# You should have received a copy of the GNU General Public License 20*1d0f5fa1SDavid Purdy# along with this program; If not, see <http://www.gnu.org/licenses/>. 21*1d0f5fa1SDavid Purdy# 22*1d0f5fa1SDavid Purdy 23*1d0f5fa1SDavid Purdyinclude $(TOPDIR)/config.mk 24*1d0f5fa1SDavid Purdy 25*1d0f5fa1SDavid PurdyLIB = $(obj)lib$(BOARD).o 26*1d0f5fa1SDavid Purdy 27*1d0f5fa1SDavid PurdyCOBJS := pogo_e02.o 28*1d0f5fa1SDavid Purdy 29*1d0f5fa1SDavid PurdySRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) 30*1d0f5fa1SDavid PurdyOBJS := $(addprefix $(obj),$(COBJS)) 31*1d0f5fa1SDavid PurdySOBJS := $(addprefix $(obj),$(SOBJS)) 32*1d0f5fa1SDavid Purdy 33*1d0f5fa1SDavid Purdy$(LIB): $(obj).depend $(OBJS) $(SOBJS) 34*1d0f5fa1SDavid Purdy $(call cmd_link_o_target, $(OBJS) $(SOBJS)) 35*1d0f5fa1SDavid Purdy 36*1d0f5fa1SDavid Purdy######################################################################### 37*1d0f5fa1SDavid Purdy 38*1d0f5fa1SDavid Purdy# defines $(obj).depend target 39*1d0f5fa1SDavid Purdyinclude $(SRCTREE)/rules.mk 40*1d0f5fa1SDavid Purdy 41*1d0f5fa1SDavid Purdysinclude $(obj).depend 42*1d0f5fa1SDavid Purdy 43*1d0f5fa1SDavid Purdy######################################################################### 44