]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/cpu/arm920t/ep93xx/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / arm / cpu / arm920t / ep93xx / Makefile
CommitLineData
fcfb632b
MK
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#
1a459660 17# SPDX-License-Identifier: GPL-2.0+
fcfb632b
MK
18#
19include $(TOPDIR)/config.mk
20
6d8962e8 21LIB = $(obj)lib$(SOC).o
fcfb632b
MK
22
23COBJS = cpu.o led.o speed.o timer.o
24SOBJS = lowlevel_init.o
25
26SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
27OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
28
29all: $(obj).depend $(LIB)
30
31$(LIB): $(OBJS)
6d8962e8 32 $(call cmd_link_o_target, $(OBJS))
fcfb632b
MK
33
34#########################################################################
35
36# defines $(obj).depend target
37include $(SRCTREE)/rules.mk
38
39sinclude $(obj).depend
40
41#########################################################################