]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/arm920t/ep93xx/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / arch / arm / cpu / arm920t / ep93xx / Makefile
1 #
2 # Cirrus Logic EP93xx CPU-specific Makefile
3 #
4 # Copyright (C) 2009 Matthias Kaehlcke <matthias@kaehlcke.net>
5 #
6 # Copyright (C) 2004, 2005
7 # Cory T. Tusar, Videon Central, Inc., <ctusar@videon-central.com>
8 #
9 # Copyright (C) 2006
10 # Dominic Rath <Dominic.Rath@gmx.de>
11 #
12 # Based on an original Makefile, which is
13 #
14 # (C) Copyright 2000, 2001, 2002
15 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
16 #
17 # SPDX-License-Identifier:      GPL-2.0+
18 #
19 include $(TOPDIR)/config.mk
20
21 LIB = $(obj)lib$(SOC).o
22
23 COBJS   = cpu.o led.o speed.o timer.o
24 SOBJS   = lowlevel_init.o
25
26 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
27 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS))
28
29 all:    $(obj).depend $(LIB)
30
31 $(LIB): $(OBJS)
32         $(call cmd_link_o_target, $(OBJS))
33
34 #########################################################################
35
36 # defines $(obj).depend target
37 include $(SRCTREE)/rules.mk
38
39 sinclude $(obj).depend
40
41 #########################################################################