]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/bluewater/snapper9260/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / bluewater / snapper9260 / Makefile
CommitLineData
b8d41dda
RM
1#
2# (C) Copyright 2003-2008
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# (C) Copyright 2011 Bluewater Systems
6# Ryan Mallon <ryan@bluewatersys.com>
7#
1a459660 8# SPDX-License-Identifier: GPL-2.0+
b8d41dda
RM
9#
10
11include $(TOPDIR)/config.mk
12
13LIB = $(obj)lib$(BOARD).o
14
15COBJS-y += snapper9260.o
16
17SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
18OBJS := $(addprefix $(obj),$(COBJS-y))
19SOBJS := $(addprefix $(obj),$(SOBJS))
20
21$(LIB): $(obj).depend $(OBJS) $(SOBJS)
22 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
23
b8d41dda
RM
24#########################################################################
25
26# defines $(obj).depend target
27include $(SRCTREE)/rules.mk
28
29sinclude $(obj).depend
30
31#########################################################################