blob: 74a09b92803a16837d6276c32ee2e03a8eecb672 [file] [log] [blame]
# Copyright 2017 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
LOCAL_DIR := $(GET_LOCAL_DIR)
MODULE := $(LOCAL_DIR)
MODULE_TYPE := userlib
MODULE_COMPILEFLAGS += -fvisibility=hidden
MODULE_SRCS += \
$(LOCAL_DIR)/cnd.cpp \
$(LOCAL_DIR)/completion.c \
$(LOCAL_DIR)/mtx.c \
MODULE_LIBS := \
system/ulib/zircon \
system/ulib/zircon-internal
MODULE_EXPORT := a
# This code is used in early startup, where safe-stack setup is not ready yet.
MODULE_COMPILEFLAGS += $(NO_SAFESTACK) $(NO_SANITIZERS)
include make/module.mk