mirror of
https://github.com/openharmony/drivers_adapter_khdf_linux.git
synced 2026-07-16 05:31:52 -04:00
dbfa39e2de
Signed-off-by: YOUR_NAME <huangkai71@huawei.com>
47 lines
2.2 KiB
Makefile
47 lines
2.2 KiB
Makefile
#
|
|
# Copyright (c) 2020-2021 Huawei Device Co., Ltd.
|
|
#
|
|
# This software is licensed under the terms of the GNU General Public
|
|
# License version 2, as published by the Free Software Foundation, and
|
|
# may be copied, distributed, and modified under those terms.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
#
|
|
|
|
INPUT_ROOT_DIR = ../../../../../framework/model/input/driver
|
|
|
|
obj-$(CONFIG_DRIVERS_HDF_INPUT) += \
|
|
$(INPUT_ROOT_DIR)/input_bus_ops/input_i2c_ops.o \
|
|
$(INPUT_ROOT_DIR)/hdf_input_device_manager.o \
|
|
$(INPUT_ROOT_DIR)/input_config_parser.o \
|
|
$(INPUT_ROOT_DIR)/event_hub.o \
|
|
$(INPUT_ROOT_DIR)/hdf_touch.o \
|
|
$(INPUT_ROOT_DIR)/hdf_key.o \
|
|
$(INPUT_ROOT_DIR)/hdf_hid_adapter.o \
|
|
$(INPUT_ROOT_DIR)/hdf_encoder.o
|
|
|
|
obj-$(CONFIG_DRIVERS_HDF_TP_5P5_GT911) += \
|
|
$(INPUT_ROOT_DIR)/touchscreen/touch_gt911.o
|
|
obj-$(CONFIG_DRIVERS_HDF_TP_2P35_FT6236) += \
|
|
$(INPUT_ROOT_DIR)/touchscreen/touch_ft6336.o
|
|
|
|
ccflags-y += -Iinclude/../drivers/hdf/framework/model/input/driver \
|
|
-Iinclude/../drivers/hdf/framework/model/input/driver/input_bus_ops \
|
|
-Iinclude/../drivers/hdf/framework/include/core \
|
|
-Iinclude/../drivers/hdf/framework/core/common/include/host \
|
|
-Iinclude/../drivers/hdf/framework/include/utils \
|
|
-Iinclude/../drivers/hdf/framework/include/osal \
|
|
-Iinclude/../drivers/hdf/framework/ability/sbuf/include \
|
|
-Iinclude/../drivers/hdf/framework/include/platform \
|
|
-Iinclude/../drivers/hdf/framework/include/config \
|
|
-Iinclude/../drivers/hdf/framework/core/host/include \
|
|
-Iinclude/../drivers/hdf/framework/core/shared/include \
|
|
-Iinclude/../drivers/hdf/framework/utils/include \
|
|
-Iinclude/../drivers/hdf/khdf/osal/include
|
|
ccflags-y += -I$(PROJECT_ROOT)/third_party/bounds_checking_function/include \
|
|
-I$(PROJECT_ROOT)/third_party/FreeBSD/sys/dev/evdev
|