]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/LEOX/elpt860/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / LEOX / elpt860 / Makefile
1
2 #######################################################################
3 #
4 # Copyright (C) 2000, 2001, 2002, 2003
5 # The LEOX team <team@leox.org>, http://www.leox.org
6 #
7 # (C) Copyright 2006
8 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9 #
10 # LEOX.org is about the development of free hardware and software resources
11 # for system on chip.
12 #
13 # Description: U-Boot port on the LEOX's ELPT860 CPU board
14 # ~~~~~~~~~~~
15 #
16 #######################################################################
17 #
18 # SPDX-License-Identifier: GPL-2.0+
19 #
20 #######################################################################
21
22 include $(TOPDIR)/config.mk
23
24 LIB = $(obj)lib$(BOARD).o
25
26 COBJS = $(BOARD).o flash.o
27
28 SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
29 OBJS := $(addprefix $(obj),$(COBJS))
30 SOBJS := $(addprefix $(obj),$(SOBJS))
31
32 $(LIB): $(obj).depend $(OBJS)
33 $(call cmd_link_o_target, $(OBJS))
34
35 #########################################################################
36
37 # defines $(obj).depend target
38 include $(SRCTREE)/rules.mk
39
40 sinclude $(obj).depend
41
42 #########################################################################