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