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