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