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