]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/corscience/tricorder/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / board / corscience / tricorder / Makefile
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 #
8 # SPDX-License-Identifier:      GPL-2.0+
9 #
10
11 include $(TOPDIR)/config.mk
12
13 LIB     = $(obj)lib$(BOARD).o
14
15 COBJS   := tricorder.o
16
17 SRCS    := $(COBJS:.o=.c)
18 OBJS    := $(addprefix $(obj),$(COBJS))
19
20 $(LIB): $(obj).depend $(OBJS)
21         $(call cmd_link_o_target, $(OBJS))
22
23 #########################################################################
24
25 # defines $(obj).depend target
26 include $(SRCTREE)/rules.mk
27
28 sinclude $(obj).depend
29
30 #########################################################################