]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/bf527-sdp/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / bf527-sdp / Makefile
1 #
2 # U-boot - Makefile
3 #
4 # Copyright (c) 2005-2008 Analog Device Inc.
5 #
6 # (C) Copyright 2000-2006
7 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 #
9 # SPDX-License-Identifier: GPL-2.0+
10 #
11
12 include $(TOPDIR)/config.mk
13
14 LIB = $(obj)lib$(BOARD).o
15
16 COBJS-y := $(BOARD).o
17
18 SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
19 OBJS := $(addprefix $(obj),$(COBJS-y))
20 SOBJS := $(addprefix $(obj),$(SOBJS-y))
21
22 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
23 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
24
25 #########################################################################
26
27 # defines $(obj).depend target
28 include $(SRCTREE)/rules.mk
29
30 sinclude $(obj).depend
31
32 #########################################################################