/drivers/input/joystick/iforce/Makefile

https://bitbucket.org/cresqo/cm7-p500-kernel · Makefile · 20 lines · 9 code · 5 blank · 6 comment · 0 complexity · 254113e48ec78581619f8c85b7d92368 MD5 · raw file

  1. #
  2. # Makefile for the I-Force driver
  3. #
  4. # By Johann Deneux <johann.deneux@gmail.com>
  5. #
  6. # Goal definition
  7. iforce-objs := iforce-ff.o iforce-main.o iforce-packets.o
  8. obj-$(CONFIG_JOYSTICK_IFORCE) += iforce.o
  9. ifeq ($(CONFIG_JOYSTICK_IFORCE_232),y)
  10. iforce-objs += iforce-serio.o
  11. endif
  12. ifeq ($(CONFIG_JOYSTICK_IFORCE_USB),y)
  13. iforce-objs += iforce-usb.o
  14. endif
  15. EXTRA_CFLAGS = -Werror-implicit-function-declaration