]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/cpu/s3c44b0/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / arm / cpu / s3c44b0 / Makefile
CommitLineData
074cff0d 1#
f9328639 2# (C) Copyright 2000-2006
074cff0d
WD
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
074cff0d
WD
6#
7
8include $(TOPDIR)/config.mk
9
6d8962e8 10LIB = $(obj)lib$(CPU).o
074cff0d
WD
11
12START = start.o
b54384e3
JCPV
13
14COBJS += cache.o
15COBJS += cpu.o
16COBJS += timer.o
074cff0d 17
f9328639
MB
18SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
19OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
20START := $(addprefix $(obj),$(START))
21
22all: $(obj).depend $(START) $(LIB)
074cff0d
WD
23
24$(LIB): $(OBJS)
6d8962e8 25 $(call cmd_link_o_target, $(OBJS))
074cff0d
WD
26
27#########################################################################
28
f9328639
MB
29# defines $(obj).depend target
30include $(SRCTREE)/rules.mk
074cff0d 31
f9328639 32sinclude $(obj).depend
074cff0d
WD
33
34#########################################################################