]> git.ipfire.org Git - thirdparty/u-boot.git/blob - arch/arm/cpu/armv7/vf610/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[thirdparty/u-boot.git] / arch / arm / cpu / armv7 / vf610 / Makefile
1 #
2 # Copyright 2013 Freescale Semiconductor, Inc.
3 #
4 # SPDX-License-Identifier: GPL-2.0+
5 #
6
7 include $(TOPDIR)/config.mk
8
9 LIB = $(obj)lib$(SOC).o
10
11 COBJS += generic.o
12 COBJS += timer.o
13
14 SRCS := $(COBJS:.o=.c)
15 OBJS := $(addprefix $(obj),$(COBJS))
16
17 all: $(obj).depend $(LIB)
18
19 $(LIB): $(OBJS)
20 $(call cmd_link_o_target, $(OBJS))
21
22 #########################################################################
23
24 # defines $(obj).depend target
25 include $(SRCTREE)/rules.mk
26
27 sinclude $(obj).depend
28
29 #########################################################################