From: James S. <jsi...@us...> - 2002-01-23 05:29:26
|
Update of /cvsroot/linuxconsole/ruby/linux/drivers/input/serio In directory usw-pr-cvs1:/tmp/cvs-serv5033 Added Files: Makefile Log Message: New home for serial chip input support. --- NEW FILE: Makefile --- # # Makefile for the input core drivers. # # The target object and module list name. O_TARGET := seriodrv.o # Objects that export symbols. export-objs := serio.o # Each configuration option enables a list of files. obj-$(CONFIG_SERIO) += serio.o obj-$(CONFIG_SERIO_I8042) += i8042.o obj-$(CONFIG_SERIO_PARKBD) += parkbd.o obj-$(CONFIG_SERIO_SERPORT) += serport.o obj-$(CONFIG_SERIO_CT82C710) += ct82c710.o obj-$(CONFIG_SERIO_RPCKBD) += rpckbd.o # The global Rules.make. include $(TOPDIR)/Rules.make |