Input: clean up Makefile (use input-core-y)
authorDmitry Torokhov <dmitry.torokhov@gmail.com>
Mon, 22 Nov 2010 20:39:28 +0000 (12:39 -0800)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Mon, 22 Nov 2010 20:54:05 +0000 (12:54 -0800)
The proper way to specify multi-source object is to use <name>-y instead
of <name>-obj (which is deprecated) as it allows conditional inclusion
of modules in the list.

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
drivers/input/Makefile

index 7ad212d..9fd1cf2 100644 (file)
@@ -5,7 +5,7 @@
 # Each configuration option enables a list of files.
 
 obj-$(CONFIG_INPUT)            += input-core.o
-input-core-objs := input.o input-compat.o ff-core.o
+input-core-y := input.o input-compat.o ff-core.o
 
 obj-$(CONFIG_INPUT_FF_MEMLESS) += ff-memless.o
 obj-$(CONFIG_INPUT_POLLDEV)    += input-polldev.o