Makefile 406 B

1234567891011121314151617181920
  1. #
  2. # Makefile for the I-Force driver
  3. #
  4. # By Johann Deneux <deneux@ifrance.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