]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/Seagate/goflexhome/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / Seagate / goflexhome / Makefile
CommitLineData
0ad6c34c
SR
1#
2# Copyright (C) 2013 Suriyan Ramasami <suriyan.r@gmail.com>
3#
4# Based on dockstar/Makefile originally written by
5# Copyright (C) 2010 Eric C. Cooper <ecc@cmu.edu>
6#
7# Based on sheevaplug/Makefile originally written by
8# Prafulla Wadaskar <prafulla@marvell.com>
9# (C) Copyright 2009
10# Marvell Semiconductor <www.marvell.com>
11#
1a459660 12# SPDX-License-Identifier: GPL-2.0+
0ad6c34c
SR
13#
14
15include $(TOPDIR)/config.mk
16
17LIB = $(obj)lib$(BOARD).o
18
19COBJS := goflexhome.o
20
21SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
22OBJS := $(addprefix $(obj),$(COBJS))
23SOBJS := $(addprefix $(obj),$(SOBJS))
24
25$(LIB): $(obj).depend $(OBJS) $(SOBJS)
26 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
27
28#########################################################################
29
30# defines $(obj).depend target
31include $(SRCTREE)/rules.mk
32
33sinclude $(obj).depend
34
35#########################################################################