Makefile (5c34202b8bf942da411b6599668a76b07449bbfd) | Makefile (5f5655023f2814969b744c1e07494666587243aa) |
---|---|
1# 2# Makefile for the mouse drivers. 3# 4 5# Each configuration option enables a list of files. 6 7obj-$(CONFIG_MOUSE_AMIGA) += amimouse.o 8obj-$(CONFIG_MOUSE_APPLETOUCH) += appletouch.o 9obj-$(CONFIG_MOUSE_ATARI) += atarimouse.o 10obj-$(CONFIG_MOUSE_RISCPC) += rpcmouse.o 11obj-$(CONFIG_MOUSE_INPORT) += inport.o 12obj-$(CONFIG_MOUSE_LOGIBM) += logibm.o 13obj-$(CONFIG_MOUSE_PC110PAD) += pc110pad.o 14obj-$(CONFIG_MOUSE_PS2) += psmouse.o 15obj-$(CONFIG_MOUSE_SERIAL) += sermouse.o 16obj-$(CONFIG_MOUSE_HIL) += hil_ptr.o 17obj-$(CONFIG_MOUSE_VSXXXAA) += vsxxxaa.o | 1# 2# Makefile for the mouse drivers. 3# 4 5# Each configuration option enables a list of files. 6 7obj-$(CONFIG_MOUSE_AMIGA) += amimouse.o 8obj-$(CONFIG_MOUSE_APPLETOUCH) += appletouch.o 9obj-$(CONFIG_MOUSE_ATARI) += atarimouse.o 10obj-$(CONFIG_MOUSE_RISCPC) += rpcmouse.o 11obj-$(CONFIG_MOUSE_INPORT) += inport.o 12obj-$(CONFIG_MOUSE_LOGIBM) += logibm.o 13obj-$(CONFIG_MOUSE_PC110PAD) += pc110pad.o 14obj-$(CONFIG_MOUSE_PS2) += psmouse.o 15obj-$(CONFIG_MOUSE_SERIAL) += sermouse.o 16obj-$(CONFIG_MOUSE_HIL) += hil_ptr.o 17obj-$(CONFIG_MOUSE_VSXXXAA) += vsxxxaa.o |
18obj-$(CONFIG_MOUSE_GPIO) += gpio_mouse.o |
|
18 19psmouse-objs := psmouse-base.o synaptics.o 20 21psmouse-$(CONFIG_MOUSE_PS2_ALPS) += alps.o 22psmouse-$(CONFIG_MOUSE_PS2_LOGIPS2PP) += logips2pp.o 23psmouse-$(CONFIG_MOUSE_PS2_LIFEBOOK) += lifebook.o 24psmouse-$(CONFIG_MOUSE_PS2_TRACKPOINT) += trackpoint.o 25psmouse-$(CONFIG_MOUSE_PS2_TOUCHKIT) += touchkit_ps2.o | 19 20psmouse-objs := psmouse-base.o synaptics.o 21 22psmouse-$(CONFIG_MOUSE_PS2_ALPS) += alps.o 23psmouse-$(CONFIG_MOUSE_PS2_LOGIPS2PP) += logips2pp.o 24psmouse-$(CONFIG_MOUSE_PS2_LIFEBOOK) += lifebook.o 25psmouse-$(CONFIG_MOUSE_PS2_TRACKPOINT) += trackpoint.o 26psmouse-$(CONFIG_MOUSE_PS2_TOUCHKIT) += touchkit_ps2.o |