1# Copyright 2017 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 := hostapp
10
11MODULE_SRCS += \
12    $(LOCAL_DIR)/abigen.cpp \
13    $(LOCAL_DIR)/abigen_generator.cpp \
14    $(LOCAL_DIR)/generator.cpp \
15    $(LOCAL_DIR)/header_generator.cpp \
16    $(LOCAL_DIR)/json_generator.cpp \
17    $(LOCAL_DIR)/kernel_wrapper_generator.cpp \
18    $(LOCAL_DIR)/rust_binding_generator.cpp \
19    $(LOCAL_DIR)/syscall_parser.cpp \
20    $(LOCAL_DIR)/types.cpp \
21    $(LOCAL_DIR)/vdso_wrapper_generator.cpp \
22    $(LOCAL_DIR)/parser/parser.cpp \
23
24include make/module.mk
25