]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/gaisler/gr_xc3s_1500/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / gaisler / gr_xc3s_1500 / 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
14
15 #flash.o
16 SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
17 OBJS := $(addprefix $(obj),$(COBJS))
18 SOBJS := $(addprefix $(obj),$(SOBJS))
19
20 $(LIB): $(obj).depend $(OBJS)
21 $(call cmd_link_o_target, $(OBJS))
22
23 #########################################################################
24
25 # defines $(obj).depend target
26 include $(SRCTREE)/rules.mk
27
28 sinclude $(obj).depend
29
30 #########################################################################