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