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