]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/xes/xpedite520x/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / xes / xpedite520x / Makefile
CommitLineData
1f03cbfa
PT
1#
2# Copyright 2008 Extreme Engineering Solutions, Inc.
3# Copyright 2004 Freescale Semiconductor.
4# (C) Copyright 2001-2006
5# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6#
1a459660 7# SPDX-License-Identifier: GPL-2.0+
1f03cbfa
PT
8#
9
10include $(TOPDIR)/config.mk
11
6d8962e8 12LIB = $(obj)lib$(BOARD).o
1f03cbfa
PT
13
14COBJS-y += $(BOARD).o
15COBJS-y += ddr.o
16COBJS-y += law.o
17COBJS-y += tlb.o
18
19SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
20OBJS := $(addprefix $(obj),$(COBJS-y))
21SOBJS := $(addprefix $(obj),$(SOBJS-y))
22
23$(LIB): $(obj).depend $(OBJS) $(SOBJS)
6d8962e8 24 $(call cmd_link_o_target, $(OBJS))
1f03cbfa 25
1f03cbfa
PT
26#########################################################################
27
28# defines $(obj).depend target
29include $(SRCTREE)/rules.mk
30
31sinclude $(obj).depend
32
33#########################################################################