blob: cf643beec3cd347be5bbbaadcfcb53b814f68186 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#
2# Makefile for the input core drivers.
3#
4
5# Each configuration option enables a list of files.
6
7obj-$(CONFIG_INPUT) += input-core.o
8input-core-y := input.o input-compat.o input-mt.o ff-core.o
9
10obj-$(CONFIG_INPUT_FF_MEMLESS) += ff-memless.o
11obj-$(CONFIG_INPUT_POLLDEV) += input-polldev.o
12obj-$(CONFIG_INPUT_SPARSEKMAP) += sparse-keymap.o
13
14obj-$(CONFIG_INPUT_MOUSEDEV) += mousedev.o
15obj-$(CONFIG_INPUT_JOYDEV) += joydev.o
16obj-$(CONFIG_INPUT_EVDEV) += evdev.o
17obj-$(CONFIG_INPUT_EVBUG) += evbug.o
18
19obj-$(CONFIG_INPUT_KEYBOARD) += keyboard/
20obj-$(CONFIG_INPUT_MOUSE) += mouse/
21obj-$(CONFIG_INPUT_JOYSTICK) += joystick/
22obj-$(CONFIG_INPUT_TABLET) += tablet/
23obj-$(CONFIG_INPUT_TOUCHSCREEN) += touchscreen/
24obj-$(CONFIG_INPUT_MISC) += misc/
25
26obj-$(CONFIG_INPUT_APMPOWER) += apm-power.o
27obj-$(CONFIG_INPUT_OF_MATRIX_KEYMAP) += of_keymap.o
28obj-$(CONFIG_INPUT_KEYRESET) += keyreset.o