1 #
2 # Makefile for the input core drivers.
3 #
4
5 # The target object and module list name.
6
7 O_TARGET := inputdrv.o
8
9 # Objects that export symbols.
10
11 export-objs := input.o
12
13 # Object file lists.
14
15 obj-y :=
16 obj-m :=
17 obj-n :=
18 obj- :=
19
20 # Each configuration option enables a list of files.
21
22 obj-$(CONFIG_INPUT) += input.o
23 obj-$(CONFIG_INPUT_KEYBDEV) += keybdev.o
24 obj-$(CONFIG_INPUT_MOUSEDEV) += mousedev.o
25 obj-$(CONFIG_INPUT_JOYDEV) += joydev.o
26 obj-$(CONFIG_INPUT_EVDEV) += evdev.o
27
28 # The global Rules.make.
29
30 include $(TOPDIR)/Rules.make
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.