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
9MODULE_TYPE := userapp
10MODULE_GROUP := misc
11
12MODULE_SRCS += $(LOCAL_DIR)/iochk.cpp
13
14MODULE_STATIC_LIBS := \
15    system/ulib/block-client \
16    system/ulib/fbl \
17    system/ulib/fzl \
18    system/ulib/sync \
19    system/ulib/zx \
20    system/ulib/zircon-internal \
21    system/ulib/zxcpp \
22
23MODULE_LIBS := \
24    system/ulib/c \
25    system/ulib/fdio \
26    system/ulib/zircon \
27
28MODULE_FIDL_LIBS := \
29    system/fidl/fuchsia-hardware-skipblock \
30
31include make/module.mk
32