Makefile
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the input core drivers.
  3. #
  4. # The target object and module list name.
  5. O_TARGET := inputdrv.o
  6. # Objects that export symbols.
  7. export-objs := input.o
  8. # Object file lists.
  9. obj-y :=
  10. obj-m :=
  11. obj-n :=
  12. obj- :=
  13. # Each configuration option enables a list of files.
  14. obj-$(CONFIG_INPUT) += input.o
  15. obj-$(CONFIG_INPUT_KEYBDEV) += keybdev.o
  16. obj-$(CONFIG_INPUT_MOUSEDEV) += mousedev.o
  17. obj-$(CONFIG_INPUT_JOYDEV) += joydev.o
  18. obj-$(CONFIG_INPUT_EVDEV) += evdev.o
  19. # The global Rules.make.
  20. include $(TOPDIR)/Rules.make