]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/eukrea/cpu9260/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / eukrea / cpu9260 / Makefile
1 #
2 # (C) Copyright 2003-2008
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # (C) Copyright 2008
6 # Stelian Pop <stelian@popies.net
7 # Lead Tech Design <www.leadtechdesign.com>
8 # Ilko Iliev <www.ronetix.at>
9 #
10 # (C) Copyright 2009
11 # Eric Benard <eric@eukrea.com>
12 #
13 # SPDX-License-Identifier: GPL-2.0+
14 #
15
16 include $(TOPDIR)/config.mk
17
18 LIB = $(obj)lib$(BOARD).o
19
20 COBJS-y += $(BOARD).o
21 COBJS-y += led.o
22
23 SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
24 OBJS := $(addprefix $(obj),$(COBJS-y) $(SOBJS))
25 SOBJS := $(addprefix $(obj),$(SOBJS))
26
27 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
28 $(call cmd_link_o_target, $(OBJS))
29
30 #########################################################################
31
32 # defines $(obj).depend target
33 include $(SRCTREE)/rules.mk
34
35 sinclude $(obj).depend
36
37 #########################################################################