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