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
10KERNEL_INCLUDES += kernel/dev/interrupt/arm_gic/v2/include
11
12MODULE_SRCS += \
13	$(LOCAL_DIR)/arm_gicv3.cpp \
14	$(LOCAL_DIR)/arm_gicv3_pcie.cpp
15
16MODULE_DEPS += \
17	kernel/dev/interrupt \
18	kernel/dev/interrupt/arm_gic/common \
19	kernel/dev/pdev \
20	kernel/dev/pdev/interrupt \
21
22include make/module.mk
23