xref: /openbmc/linux/drivers/input/joystick/iforce/Makefile (revision 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2)
1#
2# Makefile for the I-Force driver
3#
4# By Johann Deneux <deneux@ifrance.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