From: James S. <jsi...@us...> - 2002-01-23 05:26:40
|
Update of /cvsroot/linuxconsole/ruby/linux/drivers/input/keyboard In directory usw-pr-cvs1:/tmp/cvs-serv4573 Added Files: Makefile Log Message: new home for keyboard drivers. --- NEW FILE: Makefile --- # # Makefile for the input core drivers. # # The target object and module list name. O_TARGET := keybdrv.o # Each configuration option enables a list of files. obj-$(CONFIG_KEYBOARD_ATKBD) += atkbd.o obj-$(CONFIG_KEYBOARD_MAPLE) += maple_keyb.o obj-$(CONFIG_KEYBOARD_PS2SERKBD) += ps2serkbd.o obj-$(CONFIG_KEYBOARD_SUNKBD) += sunkbd.o obj-$(CONFIG_KEYBOARD_XTKBD) += xtkbd.o # The global Rules.make. include $(TOPDIR)/Rules.make |