]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/wandboard/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / wandboard / Makefile
CommitLineData
e2d282a1
FE
1#
2# (C) Copyright 2013 Freescale Semiconductor, Inc.
3#
1a459660 4# SPDX-License-Identifier: GPL-2.0+
e2d282a1
FE
5#
6
7include $(TOPDIR)/config.mk
8
9LIB = $(obj)lib$(BOARD).o
10
11COBJS := wandboard.o
12
13SRCS := $(COBJS:.o=.c)
14OBJS := $(addprefix $(obj),$(COBJS))
15
16$(LIB): $(obj).depend $(OBJS)
17 $(call cmd_link_o_target, $(OBJS))
18
19#########################################################################
20
21# defines $(obj).depend target
22include $(SRCTREE)/rules.mk
23
24sinclude $(obj).depend
25
26#########################################################################