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