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