1254721Semaste# Copyright 2018 The Fuchsia Authors. All rights reserved.
2254721Semaste# Use of this source code is governed by a BSD-style license that can be
3254721Semaste# found in the LICENSE file.
4254721Semaste
5254721SemasteLOCAL_DIR := $(GET_LOCAL_DIR)
6254721Semaste
7254721SemasteMODULE := $(LOCAL_DIR)
8254721Semaste
9254721SemasteMODULE_TYPE := driver
10254721Semaste
11254721SemasteMODULE_SRCS += \
12254721Semaste    $(LOCAL_DIR)/aml-i2c.c \
13254721Semaste
14254721SemasteMODULE_STATIC_LIBS := \
15254721Semaste    system/ulib/ddk \
16254721Semaste    system/ulib/sync \
17254721Semaste
18254721SemasteMODULE_LIBS := \
19254721Semaste    system/ulib/driver \
20254721Semaste    system/ulib/c \
21254721Semaste    system/ulib/zircon \
22254721Semaste
23254721SemasteMODULE_HEADER_DEPS := system/dev/lib/amlogic
24254721Semaste
25254721Semasteinclude make/module.mk
26