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