]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/woodburn/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / woodburn / Makefile
1 #
2 # Copyright (C) 2007, Guennadi Liakhovetski <lg@denx.de>
3 #
4 # (C) Copyright 2008-2009 Freescale Semiconductor, Inc.
5 #
6 # SPDX-License-Identifier: GPL-2.0+
7 #
8
9 include $(TOPDIR)/config.mk
10
11 LIB = $(obj)lib$(BOARD).o
12
13 COBJS := woodburn.o
14 SOBJS := lowlevel_init.o
15
16 SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
17 OBJS := $(addprefix $(obj),$(COBJS))
18 SOBJS := $(addprefix $(obj),$(SOBJS))
19
20 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
21 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
22
23 #########################################################################
24
25 # defines $(obj).depend target
26 include $(SRCTREE)/rules.mk
27
28 sinclude $(obj).depend
29
30 #########################################################################