1*6cb144bcSMacpaul Lin#
2*6cb144bcSMacpaul Lin# Copyright (C) 2011 Andes Technology Corporation
3*6cb144bcSMacpaul Lin# Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com>
4*6cb144bcSMacpaul Lin# Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
5*6cb144bcSMacpaul Lin#
6*6cb144bcSMacpaul Lin# See file CREDITS for list of people who contributed to this
7*6cb144bcSMacpaul Lin# project.
8*6cb144bcSMacpaul Lin#
9*6cb144bcSMacpaul Lin# This program is free software; you can redistribute it and/or
10*6cb144bcSMacpaul Lin# modify it under the terms of the GNU General Public License as
11*6cb144bcSMacpaul Lin# published by the Free Software Foundation; either version 2 of
12*6cb144bcSMacpaul Lin# the License, or (at your option) any later version.
13*6cb144bcSMacpaul Lin#
14*6cb144bcSMacpaul Lin# This program is distributed in the hope that it will be useful,
15*6cb144bcSMacpaul Lin# but WITHOUT ANY WARRANTY; without even the implied warranty of
16*6cb144bcSMacpaul Lin# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17*6cb144bcSMacpaul Lin# GNU General Public License for more details.
18*6cb144bcSMacpaul Lin#
19*6cb144bcSMacpaul Lin# You should have received a copy of the GNU General Public License
20*6cb144bcSMacpaul Lin# along with this program; if not, write to the Free Software
21*6cb144bcSMacpaul Lin# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22*6cb144bcSMacpaul Lin# MA 02111-1307 USA
23*6cb144bcSMacpaul Lin#
24*6cb144bcSMacpaul Lin
25*6cb144bcSMacpaul Lininclude $(TOPDIR)/config.mk
26*6cb144bcSMacpaul Lin
27*6cb144bcSMacpaul LinLIB	= $(obj)lib$(BOARD).o
28*6cb144bcSMacpaul Lin
29*6cb144bcSMacpaul LinCOBJS	:= adp-ag101p.o
30*6cb144bcSMacpaul Lin
31*6cb144bcSMacpaul LinSRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
32*6cb144bcSMacpaul LinOBJS	:= $(addprefix $(obj),$(COBJS) $(SOBJS))
33*6cb144bcSMacpaul Lin
34*6cb144bcSMacpaul Lin$(LIB):	$(OBJS)
35*6cb144bcSMacpaul Lin	$(call cmd_link_o_target, $(OBJS))
36*6cb144bcSMacpaul Lin
37*6cb144bcSMacpaul Lin#########################################################################
38*6cb144bcSMacpaul Lin
39*6cb144bcSMacpaul Lin# defines $(obj).depend target
40*6cb144bcSMacpaul Lininclude $(SRCTREE)/rules.mk
41*6cb144bcSMacpaul Lin
42*6cb144bcSMacpaul Linsinclude $(obj).depend
43*6cb144bcSMacpaul Lin
44*6cb144bcSMacpaul Lin#########################################################################
45