blob: 826414f5b19cf45de74c6bec18527f1b0a2c4578 [file] [log] [blame]
Macpaul Lin5f1719c2011-10-19 20:41:10 +00001#
2# Copyright (C) 2011 Andes Technology Corporation
3# Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com>
4# Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
5#
Wolfgang Denk1a459662013-07-08 09:37:19 +02006# SPDX-License-Identifier: GPL-2.0+
Macpaul Lin5f1719c2011-10-19 20:41:10 +00007#
8
9include $(TOPDIR)/config.mk
10
11LIB = $(obj)lib$(BOARD).o
12
ken kuo951344b2013-07-25 02:24:54 +080013COBJS-y := adp-ag101.o
Macpaul Lin5f1719c2011-10-19 20:41:10 +000014
ken kuo951344b2013-07-25 02:24:54 +080015SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
16OBJS := $(addprefix $(obj),$(COBJS-y) $(SOBJS-y))
Macpaul Lin5f1719c2011-10-19 20:41:10 +000017
18$(LIB): $(OBJS)
19 $(call cmd_link_o_target, $(OBJS))
20
21#########################################################################
22
23# defines $(obj).depend target
24include $(SRCTREE)/rules.mk
25
26sinclude $(obj).depend
27
28#########################################################################