]> git.ipfire.org Git - thirdparty/u-boot.git/blame - board/LEOX/elpt860/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[thirdparty/u-boot.git] / board / LEOX / elpt860 / Makefile
CommitLineData
8bde7f77 1
3bac3513
WD
2#######################################################################
3#
4# Copyright (C) 2000, 2001, 2002, 2003
5# The LEOX team <team@leox.org>, http://www.leox.org
6#
f9328639
MB
7# (C) Copyright 2006
8# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9#
3bac3513
WD
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#
1a459660 18# SPDX-License-Identifier: GPL-2.0+
3bac3513
WD
19#
20#######################################################################
21
22include $(TOPDIR)/config.mk
23
6d8962e8 24LIB = $(obj)lib$(BOARD).o
f9328639
MB
25
26COBJS = $(BOARD).o flash.o
3bac3513 27
f9328639
MB
28SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
29OBJS := $(addprefix $(obj),$(COBJS))
30SOBJS := $(addprefix $(obj),$(SOBJS))
3bac3513 31
f9328639 32$(LIB): $(obj).depend $(OBJS)
6d8962e8 33 $(call cmd_link_o_target, $(OBJS))
3bac3513
WD
34
35#########################################################################
36
f9328639
MB
37# defines $(obj).depend target
38include $(SRCTREE)/rules.mk
3bac3513 39
f9328639 40sinclude $(obj).depend
3bac3513
WD
41
42#########################################################################