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)/astro.c \
13    $(LOCAL_DIR)/astro-bluetooth.c \
14    $(LOCAL_DIR)/astro-gpio.c \
15    $(LOCAL_DIR)/astro-i2c.c \
16    $(LOCAL_DIR)/astro-usb.c \
17    $(LOCAL_DIR)/astro-display.c \
18    $(LOCAL_DIR)/astro-touch.c \
19    $(LOCAL_DIR)/astro-rawnand.c \
20    $(LOCAL_DIR)/astro-sdio.c \
21    $(LOCAL_DIR)/astro-canvas.c \
22    $(LOCAL_DIR)/astro-light.c \
23    $(LOCAL_DIR)/astro-thermal.c \
24    $(LOCAL_DIR)/astro-video.c \
25    $(LOCAL_DIR)/astro-clk.c \
26    $(LOCAL_DIR)/astro-audio.c \
27    $(LOCAL_DIR)/astro-tee.c \
28
29MODULE_STATIC_LIBS := \
30    system/dev/lib/amlogic \
31    system/ulib/ddk \
32    system/ulib/sync \
33    system/dev/lib/broadcom \
34
35MODULE_LIBS := \
36    system/ulib/driver \
37    system/ulib/c \
38    system/ulib/zircon
39
40include make/module.mk
41