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