]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/AndesTech/adp-ag101p/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / AndesTech / adp-ag101p / Makefile
CommitLineData
6cb144bc
ML
1#
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#
1a459660 6# SPDX-License-Identifier: GPL-2.0+
6cb144bc
ML
7#
8
9include $(TOPDIR)/config.mk
10
11LIB = $(obj)lib$(BOARD).o
12
13COBJS := adp-ag101p.o
14
15SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
16OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS))
17
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#########################################################################