]> git.ipfire.org Git - people/ms/u-boot.git/blame - lib/tizen/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / lib / tizen / Makefile
CommitLineData
5a4c59be
DL
1#
2# (C) Copyright 2012 Samsung Electronics
3# Donghwa Lee <dh09.lee@samsung.com>
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
5a4c59be
DL
6#
7
8include $(TOPDIR)/config.mk
9
10LIB = $(obj)libtizen.o
11
12SOBJS =
13
14COBJS-$(CONFIG_TIZEN) += tizen.o
15
16COBJS := $(sort $(COBJS-y))
17SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
18OBJS := $(addprefix $(obj),$(SOBJS) $(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#########################################################################