]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/arm926ejs/armada100/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / arch / arm / cpu / arm926ejs / armada100 / Makefile
1 #
2 # (C) Copyright 2010
3 # Marvell Semiconductor <www.marvell.com>
4 # Written-by: Prafulla Wadaskar <prafulla@marvell.com>
5 #
6 # SPDX-License-Identifier:      GPL-2.0+
7 #
8
9 include $(TOPDIR)/config.mk
10
11 LIB     = $(obj)lib$(SOC).o
12
13 COBJS-y = cpu.o timer.o dram.o
14
15 SRCS    := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
16 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS-y))
17
18 all:    $(obj).depend $(LIB)
19
20 $(LIB): $(OBJS)
21         $(call cmd_link_o_target, $(OBJS))
22
23 #########################################################################
24
25 # defines $(obj).depend target
26 include $(SRCTREE)/rules.mk
27
28 sinclude $(obj).depend
29
30 #########################################################################