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
7LOCAL_DIR := $(GET_LOCAL_DIR)
8
9KERNEL_INCLUDES += $(LOCAL_DIR)/include
10
11MODULE := $(LOCAL_DIR)
12
13MODULE_SRCS += \
14	$(LOCAL_DIR)/page_tables.cpp
15
16MODULE_DEPS += \
17	kernel/lib/fbl \
18	kernel/lib/hwreg \
19
20include make/module.mk
21