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