1# Copyright 2017 The Fuchsia Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5LOCAL_DIR := $(GET_LOCAL_DIR)
6
7MODULE := $(LOCAL_DIR)
8
9ULIB_DIR := third_party/ulib/uboringssl
10SRC_DIR := $(ULIB_DIR)/crypto
11
12KERNEL_INCLUDES += $(ULIB_DIR)/include
13
14MODULE_COMPILEFLAGS += -DOPENSSL_NO_ASM
15
16MODULE_SRCS := \
17    $(SRC_DIR)/chacha/chacha.c \
18    $(SRC_DIR)/fipsmodule/sha/sha256.c \
19    $(SRC_DIR)/fipsmodule/sha/sha512.c \
20
21include make/module.mk
22