1# Copyright 2016 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)/biotime.cpp
13
14MODULE_STATIC_LIBS := \
15    system/ulib/fbl \
16    system/ulib/perftest \
17    system/ulib/sync \
18    system/ulib/zircon-internal \
19    system/ulib/zxcpp \
20
21MODULE_LIBS := \
22    system/ulib/fdio \
23    system/ulib/zircon \
24    system/ulib/c
25
26include make/module.mk
27