mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 23:51:39 +00:00
55e3d9224b
Allow ALPS, LOGIPS2PP, LIFEBOOK, TRACKPOINT and TOUCHKIT protocol extensions of psmouse to be disabled during compilation. This will allow users save some memory when they are sure that they will only use a certain type of mice. Signed-off-by: Andres Salomon <dilinger@debian.org> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
24 lines
755 B
Makefile
24 lines
755 B
Makefile
#
|
|
# Makefile for the mouse drivers.
|
|
#
|
|
|
|
# Each configuration option enables a list of files.
|
|
|
|
obj-$(CONFIG_MOUSE_AMIGA) += amimouse.o
|
|
obj-$(CONFIG_MOUSE_RISCPC) += rpcmouse.o
|
|
obj-$(CONFIG_MOUSE_INPORT) += inport.o
|
|
obj-$(CONFIG_MOUSE_LOGIBM) += logibm.o
|
|
obj-$(CONFIG_MOUSE_PC110PAD) += pc110pad.o
|
|
obj-$(CONFIG_MOUSE_PS2) += psmouse.o
|
|
obj-$(CONFIG_MOUSE_SERIAL) += sermouse.o
|
|
obj-$(CONFIG_MOUSE_HIL) += hil_ptr.o
|
|
obj-$(CONFIG_MOUSE_VSXXXAA) += vsxxxaa.o
|
|
|
|
psmouse-objs := psmouse-base.o synaptics.o
|
|
|
|
psmouse-$(CONFIG_MOUSE_PS2_ALPS) += alps.o
|
|
psmouse-$(CONFIG_MOUSE_PS2_LOGIPS2PP) += logips2pp.o
|
|
psmouse-$(CONFIG_MOUSE_PS2_LIFEBOOK) += lifebook.o
|
|
psmouse-$(CONFIG_MOUSE_PS2_TRACKPOINT) += trackpoint.o
|
|
psmouse-$(CONFIG_MOUSE_PS2_TOUCHKIT) += touchkit_ps2.o
|