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)
8MODULE_SO_NAME := $(LOCAL_DIR)
9MODULE_TYPE := userlib
10
11MODULE_SRCS += \
12    $(LOCAL_DIR)/volume.cpp \
13
14MODULE_LIBS := \
15    system/ulib/c \
16    system/ulib/crypto \
17    system/ulib/driver \
18    system/ulib/fdio \
19    system/ulib/fs-management \
20    system/ulib/zircon \
21
22MODULE_STATIC_LIBS := \
23    third_party/ulib/uboringssl \
24    system/ulib/ddk \
25    system/ulib/fbl \
26    system/ulib/fs-management \
27    system/ulib/pretty \
28    system/ulib/sync \
29    system/ulib/zx \
30    system/ulib/zxcpp
31
32MODULE_COMPILEFLAGS := -fsanitize=integer-divide-by-zero,signed-integer-overflow -fsanitize-undefined-trap-on-error
33
34include make/module.mk
35