1# Copyright 2018 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 := driver
10
11MODULE_SRCS += \
12    $(LOCAL_DIR)/aml-pcie-clk.cpp \
13    $(LOCAL_DIR)/aml-pcie-device.cpp \
14    $(LOCAL_DIR)/aml-pcie.cpp \
15    $(LOCAL_DIR)/binding.c \
16
17MODULE_STATIC_LIBS := \
18    system/dev/pci/designware \
19    system/ulib/ddk \
20    system/ulib/fbl \
21    system/ulib/hwreg \
22    system/ulib/sync \
23    system/ulib/zxcpp \
24
25
26MODULE_LIBS := \
27    system/ulib/c \
28    system/ulib/driver \
29    system/ulib/zircon \
30
31MODULE_HEADER_DEPS := system/dev/lib/amlogic
32
33include make/module.mk
34