blob: 5bf2adacb7fc0ef080d8f508aca62c7304b0d167 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#
# Makefile for lge touch core driver
#
# Each configuration option enables a list of files.
# Touch Core Driver Common Header Code..!!
ccflags-y += -I$(srctree)/drivers/input/touchscreen/lge/
obj-$(CONFIG_LGE_TOUCH_CORE_BASE) += touch_core_base.o
touch_core_base-objs += touch_core.o \
touch_core_sysfs.o \
touch_common.o \
touch_i2c.o \
touch_spi.o \
touch_model.o \
touch_notify.o \
touch_hwif.o
obj-$(CONFIG_LGE_TOUCH_CORE_BASE) += lgsic/
|