]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/pm520/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / pm520 / Makefile
1
2 #
3 # (C) Copyright 2003-2006
4 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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 := $(BOARD).o flash.o
14
15 SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
16 OBJS := $(addprefix $(obj),$(COBJS))
17 SOBJS := $(addprefix $(obj),$(SOBJS))
18
19 $(LIB): $(obj).depend $(OBJS)
20 $(call cmd_link_o_target, $(OBJS))
21
22 #########################################################################
23
24 # defines $(obj).depend target
25 include $(SRCTREE)/rules.mk
26
27 sinclude $(obj).depend
28
29 #########################################################################