Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | # |
| 3 | # Makefile for the input core drivers. |
| 4 | # |
| 5 | |
| 6 | # Each configuration option enables a list of files. |
| 7 | |
Dmitry Torokhov | 57e6b72 | 2006-07-19 01:39:56 -0400 | [diff] [blame] | 8 | obj-$(CONFIG_INPUT) += input-core.o |
Dmitry Torokhov | e95656e | 2017-04-18 17:28:30 -0700 | [diff] [blame] | 9 | input-core-y := input.o input-compat.o input-mt.o input-poller.o ff-core.o |
Jeff LaBundy | e28b5c8 | 2021-03-22 16:42:25 -0700 | [diff] [blame] | 10 | input-core-y += touchscreen.o |
Dmitry Torokhov | 57e6b72 | 2006-07-19 01:39:56 -0400 | [diff] [blame] | 11 | |
Anssi Hannula | 7d928a2 | 2006-07-19 01:40:30 -0400 | [diff] [blame] | 12 | obj-$(CONFIG_INPUT_FF_MEMLESS) += ff-memless.o |
Dmitry Torokhov | 36203c4 | 2009-12-04 10:22:23 -0800 | [diff] [blame] | 13 | obj-$(CONFIG_INPUT_SPARSEKMAP) += sparse-keymap.o |
Dmitry Torokhov | 1932811 | 2012-05-10 22:37:08 -0700 | [diff] [blame] | 14 | obj-$(CONFIG_INPUT_MATRIXKMAP) += matrix-keymap.o |
Stephen Boyd | 45ceaf1 | 2022-03-14 19:45:37 -0700 | [diff] [blame] | 15 | obj-$(CONFIG_INPUT_VIVALDIFMAP) += vivaldi-fmap.o |
Anssi Hannula | 7d928a2 | 2006-07-19 01:40:30 -0400 | [diff] [blame] | 16 | |
Samuel Thibault | f60c8ba | 2015-03-16 21:19:56 -0700 | [diff] [blame] | 17 | obj-$(CONFIG_INPUT_LEDS) += input-leds.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | obj-$(CONFIG_INPUT_MOUSEDEV) += mousedev.o |
| 19 | obj-$(CONFIG_INPUT_JOYDEV) += joydev.o |
| 20 | obj-$(CONFIG_INPUT_EVDEV) += evdev.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | obj-$(CONFIG_INPUT_EVBUG) += evbug.o |
| 22 | |
| 23 | obj-$(CONFIG_INPUT_KEYBOARD) += keyboard/ |
| 24 | obj-$(CONFIG_INPUT_MOUSE) += mouse/ |
| 25 | obj-$(CONFIG_INPUT_JOYSTICK) += joystick/ |
Dmitry Torokhov | 4104d13 | 2007-05-07 16:16:29 -0400 | [diff] [blame] | 26 | obj-$(CONFIG_INPUT_TABLET) += tablet/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | obj-$(CONFIG_INPUT_TOUCHSCREEN) += touchscreen/ |
| 28 | obj-$(CONFIG_INPUT_MISC) += misc/ |
Jiri Kosina | 63f3861 | 2006-12-08 18:41:30 +0100 | [diff] [blame] | 29 | |
Richard Purdie | e17bb1d | 2008-01-30 16:33:59 -0500 | [diff] [blame] | 30 | obj-$(CONFIG_INPUT_APMPOWER) += apm-power.o |
Andrew Duggan | 2b6a321 | 2016-03-10 15:35:49 -0800 | [diff] [blame] | 31 | |
| 32 | obj-$(CONFIG_RMI4_CORE) += rmi4/ |