1# Copyright 2017 The Fuchsia Authors
2#
3# Use of this source code is governed by a MIT-style
4# license that can be found in the LICENSE file or at
5# https://opensource.org/licenses/MIT
6
7SRC_DIR := system/ulib/pretty
8LOCAL_DIR := $(GET_LOCAL_DIR)
9
10MODULE := $(LOCAL_DIR)
11
12KERNEL_INCLUDES += $(SRC_DIR)/include
13
14MODULE_SRCS := \
15    $(SRC_DIR)/hexdump.c \
16    $(SRC_DIR)/sizes.c \
17
18include make/module.mk
19
20