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