]> git.ipfire.org Git - thirdparty/u-boot.git/blame - drivers/crypto/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[thirdparty/u-boot.git] / drivers / crypto / Makefile
CommitLineData
acbb1eb7
AS
1#
2# Copyright (c) 2013 Samsung Electronics Co., Ltd.
3# http://www.samsung.com
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
acbb1eb7
AS
6#
7
8include $(TOPDIR)/config.mk
9
10LIB := $(obj)libcrypto.o
11
12COBJS-$(CONFIG_EXYNOS_ACE_SHA) += ace_sha.o
13
14COBJS := $(COBJS-y)
15SRCS := $(COBJS:.o=.c)
16OBJS := $(addprefix $(obj),$(COBJS))
17
18all: $(LIB)
19
20$(LIB): $(obj).depend $(OBJS)
21 $(call cmd_link_o_target, $(OBJS))
22
23
24#########################################################################
25
26# defines $(obj).depend target
27include $(SRCTREE)/rules.mk
28
29sinclude $(obj).depend
30
31########################################################################