]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/chromebook-x86/coreboot/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / chromebook-x86 / coreboot / Makefile
CommitLineData
ef5a5b00
GB
1#
2# Copyright (c) 2011 The Chromium OS Authors.
3# (C) Copyright 2008
4# Graeme Russ, graeme.russ@gmail.com.
5#
6# (C) Copyright 2006
7# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8#
9# (C) Copyright 2002
10# Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
11#
1a459660 12# SPDX-License-Identifier: GPL-2.0+
ef5a5b00
GB
13#
14
15include $(TOPDIR)/config.mk
16
17LIB = $(obj)lib$(BOARD).o
18
ef5a5b00
GB
19SOBJS-y += coreboot_start.o
20
21SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
22OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
23
24$(LIB): $(obj).depend $(OBJS) $(SOBJS)
25 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
26
27#########################################################################
28
29# defines $(obj).depend target
30include $(SRCTREE)/rules.mk
31
32sinclude $(obj).depend
33
34#########################################################################