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