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