diff options
Diffstat (limited to 'drivers/media/IR/Makefile')
-rw-r--r-- | drivers/media/IR/Makefile | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/drivers/media/IR/Makefile b/drivers/media/IR/Makefile index 171890e7a41d..b998fcced2e4 100644 --- a/drivers/media/IR/Makefile +++ b/drivers/media/IR/Makefile | |||
@@ -1,5 +1,15 @@ | |||
1 | ir-common-objs := ir-functions.o ir-keymaps.o | 1 | ir-common-objs := ir-functions.o |
2 | ir-core-objs := ir-keytable.o ir-sysfs.o | 2 | ir-core-objs := ir-keytable.o ir-sysfs.o ir-raw-event.o rc-map.o |
3 | |||
4 | obj-y += keymaps/ | ||
3 | 5 | ||
4 | obj-$(CONFIG_IR_CORE) += ir-core.o | 6 | obj-$(CONFIG_IR_CORE) += ir-core.o |
5 | obj-$(CONFIG_VIDEO_IR) += ir-common.o | 7 | obj-$(CONFIG_VIDEO_IR) += ir-common.o |
8 | obj-$(CONFIG_IR_NEC_DECODER) += ir-nec-decoder.o | ||
9 | obj-$(CONFIG_IR_RC5_DECODER) += ir-rc5-decoder.o | ||
10 | obj-$(CONFIG_IR_RC6_DECODER) += ir-rc6-decoder.o | ||
11 | obj-$(CONFIG_IR_JVC_DECODER) += ir-jvc-decoder.o | ||
12 | obj-$(CONFIG_IR_SONY_DECODER) += ir-sony-decoder.o | ||
13 | |||
14 | # stand-alone IR receivers/transmitters | ||
15 | obj-$(CONFIG_IR_IMON) += imon.o | ||