URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [drivers/] [char/] [joystick/] [Makefile] - Rev 1765
Compare with Previous | Blame | View Log
#
# Makefile for the joystick drivers.
#
O_TARGET := js.o
# Objects that export symbols.
export-objs := serio.o gameport.o pcigame.o
# I-Force may need both USB and RS-232
ifeq ($(CONFIG_INPUT_IFORCE_232),m)
ifeq ($(CONFIG_INPUT_IFORCE_USB),y)
CONFIG_INPUT_IFORCE_USB := m
endif
endif
ifeq ($(CONFIG_INPUT_IFORCE_USB),m)
ifeq ($(CONFIG_INPUT_IFORCE_232),y)
CONFIG_INPUT_IFORCE_232 := m
endif
endif
# Object file lists.
obj-y :=
obj-m :=
obj-n :=
obj- :=
# Each configuration option enables a list of files.
obj-$(CONFIG_INPUT_GAMEPORT) += gameport.o
obj-$(CONFIG_INPUT_SERIO) += serio.o
obj-$(CONFIG_INPUT_SERPORT) += serport.o
obj-$(CONFIG_INPUT_NS558) += ns558.o
obj-$(CONFIG_INPUT_LIGHTNING) += lightning.o
obj-$(CONFIG_INPUT_PCIGAME) += pcigame.o
obj-$(CONFIG_INPUT_CS461X) += cs461x.o
obj-$(CONFIG_INPUT_EMU10K1) += emu10k1-gp.o
obj-$(CONFIG_INPUT_WARRIOR) += warrior.o
obj-$(CONFIG_INPUT_MAGELLAN) += magellan.o
obj-$(CONFIG_INPUT_SPACEORB) += spaceorb.o
obj-$(CONFIG_INPUT_SPACEBALL) += spaceball.o
obj-$(CONFIG_INPUT_STINGER) += stinger.o
obj-$(CONFIG_INPUT_IFORCE_232) += iforce.o
obj-$(CONFIG_INPUT_IFORCE_USB) += iforce.o
obj-$(CONFIG_INPUT_ANALOG) += analog.o
obj-$(CONFIG_INPUT_A3D) += a3d.o
obj-$(CONFIG_INPUT_ADI) += adi.o
obj-$(CONFIG_INPUT_COBRA) += cobra.o
obj-$(CONFIG_INPUT_GF2K) += gf2k.o
obj-$(CONFIG_INPUT_GRIP) += grip.o
obj-$(CONFIG_INPUT_INTERACT) += interact.o
obj-$(CONFIG_INPUT_TMDC) += tmdc.o
obj-$(CONFIG_INPUT_SIDEWINDER) += sidewinder.o
obj-$(CONFIG_INPUT_DB9) += db9.o
obj-$(CONFIG_INPUT_GAMECON) += gamecon.o
obj-$(CONFIG_INPUT_TURBOGRAFX) += turbografx.o
obj-$(CONFIG_INPUT_AMIJOY) += amijoy.o
# The global Rules.make.
include $(TOPDIR)/Rules.make