Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0
2#
3# Makefile for the mouse drivers.
4#
5
6# Each configuration option enables a list of files.
7
8obj-$(CONFIG_MOUSE_AMIGA) += amimouse.o
9obj-$(CONFIG_MOUSE_APPLETOUCH) += appletouch.o
10obj-$(CONFIG_MOUSE_ATARI) += atarimouse.o
11obj-$(CONFIG_MOUSE_BCM5974) += bcm5974.o
12obj-$(CONFIG_MOUSE_CYAPA) += cyapatp.o
13obj-$(CONFIG_MOUSE_ELAN_I2C) += elan_i2c.o
14obj-$(CONFIG_MOUSE_GPIO) += gpio_mouse.o
15obj-$(CONFIG_MOUSE_MAPLE) += maplemouse.o
16obj-$(CONFIG_MOUSE_PS2) += psmouse.o
17obj-$(CONFIG_MOUSE_RISCPC) += rpcmouse.o
18obj-$(CONFIG_MOUSE_SERIAL) += sermouse.o
19obj-$(CONFIG_MOUSE_SYNAPTICS_I2C) += synaptics_i2c.o
20obj-$(CONFIG_MOUSE_SYNAPTICS_USB) += synaptics_usb.o
21obj-$(CONFIG_MOUSE_VSXXXAA) += vsxxxaa.o
22
23cyapatp-objs := cyapa.o cyapa_gen3.o cyapa_gen5.o cyapa_gen6.o
24psmouse-objs := psmouse-base.o synaptics.o focaltech.o
25
26psmouse-$(CONFIG_MOUSE_PS2_ALPS) += alps.o
27psmouse-$(CONFIG_MOUSE_PS2_BYD) += byd.o
28psmouse-$(CONFIG_MOUSE_PS2_ELANTECH) += elantech.o
29psmouse-$(CONFIG_MOUSE_PS2_LOGIPS2PP) += logips2pp.o
30psmouse-$(CONFIG_MOUSE_PS2_LIFEBOOK) += lifebook.o
31psmouse-$(CONFIG_MOUSE_PS2_SENTELIC) += sentelic.o
32psmouse-$(CONFIG_MOUSE_PS2_TRACKPOINT) += trackpoint.o
33psmouse-$(CONFIG_MOUSE_PS2_TOUCHKIT) += touchkit_ps2.o
34psmouse-$(CONFIG_MOUSE_PS2_CYPRESS) += cypress_ps2.o
35psmouse-$(CONFIG_MOUSE_PS2_VMMOUSE) += vmmouse.o
36
37psmouse-$(CONFIG_MOUSE_PS2_SMBUS) += psmouse-smbus.o
38
39elan_i2c-objs := elan_i2c_core.o
40elan_i2c-$(CONFIG_MOUSE_ELAN_I2C_I2C) += elan_i2c_i2c.o
41elan_i2c-$(CONFIG_MOUSE_ELAN_I2C_SMBUS) += elan_i2c_smbus.o