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