[BACK]Return to Makefile CVS log [TXT][DIR] Up to [Development] / linux-2.4-xfs / drivers / char / joystick

File: [Development] / linux-2.4-xfs / drivers / char / joystick / Makefile (download)

Revision 1.1, Wed Dec 31 00:54:49 2003 UTC (13 years, 10 months ago) by cattelan
Branch: MAIN
CVS Tags: HEAD

Initial Import 2.4.24pre2

#
# 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