]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/armltd/vexpress/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / armltd / vexpress / Makefile
CommitLineData
b80e41ac
MW
1#
2# (C) Copyright 2000-2004
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
b80e41ac
MW
6#
7
8include $(TOPDIR)/config.mk
9
6d8962e8 10LIB = $(obj)lib$(BOARD).o
b80e41ac 11
9b58a3f6 12COBJS := vexpress_common.o
b80e41ac
MW
13
14SRCS := $(COBJS:.o=.c)
15OBJS := $(addprefix $(obj),$(COBJS))
16
17$(LIB): $(obj).depend $(OBJS)
6d8962e8 18 $(call cmd_link_o_target, $(OBJS))
b80e41ac 19
b80e41ac
MW
20#########################################################################
21
22# defines $(obj).depend target
23include $(SRCTREE)/rules.mk
24
25sinclude $(obj).depend
26
27#########################################################################