]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/cpu/arm926ejs/pantheon/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / arm / cpu / arm926ejs / pantheon / Makefile
CommitLineData
896e2ca9
LW
1#
2# (C) Copyright 2011
3# Marvell Semiconductor <www.marvell.com>
4# Written-by: Lei Wen <leiwen@marvell.com>
5#
1a459660 6# SPDX-License-Identifier: GPL-2.0+
896e2ca9
LW
7#
8
9include $(TOPDIR)/config.mk
10
11LIB = $(obj)lib$(SOC).o
12
13COBJS-y = cpu.o timer.o dram.o
14
15SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
16OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS-y))
17
18all: $(obj).depend $(LIB)
19
20$(LIB): $(OBJS)
26ddff2d 21 $(call cmd_link_o_target, $(OBJS))
896e2ca9
LW
22
23#########################################################################
24
25# defines $(obj).depend target
26include $(SRCTREE)/rules.mk
27
28sinclude $(obj).depend
29
30#########################################################################