]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/cpu/armv7/s5pc1xx/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / arm / cpu / armv7 / s5pc1xx / Makefile
CommitLineData
399e5ae0
MK
1#
2# (C) Copyright 2000-2003
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# (C) Copyright 2008
6# Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
7#
1a459660 8# SPDX-License-Identifier: GPL-2.0+
399e5ae0
MK
9#
10
11include $(TOPDIR)/config.mk
12
6d8962e8 13LIB = $(obj)lib$(SOC).o
399e5ae0 14
d8e5f554
MK
15SOBJS = cache.o
16SOBJS += reset.o
399e5ae0 17
399e5ae0 18COBJS += clock.o
399e5ae0
MK
19
20SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
21OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS))
22
23all: $(obj).depend $(LIB)
24
25$(LIB): $(OBJS)
6d8962e8 26 $(call cmd_link_o_target, $(OBJS))
399e5ae0
MK
27
28#########################################################################
29
30# defines $(obj).depend target
31include $(SRCTREE)/rules.mk
32
33sinclude $(obj).depend
34
35#########################################################################