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-232ifeq ($(CONFIG_INPUT_IFORCE_232),m)ifeq ($(CONFIG_INPUT_IFORCE_USB),y)CONFIG_INPUT_IFORCE_USB := mendifendififeq ($(CONFIG_INPUT_IFORCE_USB),m)ifeq ($(CONFIG_INPUT_IFORCE_232),y)CONFIG_INPUT_IFORCE_232 := mendifendif# Object file lists.obj-y :=obj-m :=obj-n :=obj- :=# Each configuration option enables a list of files.obj-$(CONFIG_INPUT_GAMEPORT) += gameport.oobj-$(CONFIG_INPUT_SERIO) += serio.oobj-$(CONFIG_INPUT_SERPORT) += serport.oobj-$(CONFIG_INPUT_NS558) += ns558.oobj-$(CONFIG_INPUT_LIGHTNING) += lightning.oobj-$(CONFIG_INPUT_PCIGAME) += pcigame.oobj-$(CONFIG_INPUT_CS461X) += cs461x.oobj-$(CONFIG_INPUT_EMU10K1) += emu10k1-gp.oobj-$(CONFIG_INPUT_WARRIOR) += warrior.oobj-$(CONFIG_INPUT_MAGELLAN) += magellan.oobj-$(CONFIG_INPUT_SPACEORB) += spaceorb.oobj-$(CONFIG_INPUT_SPACEBALL) += spaceball.oobj-$(CONFIG_INPUT_STINGER) += stinger.oobj-$(CONFIG_INPUT_IFORCE_232) += iforce.oobj-$(CONFIG_INPUT_IFORCE_USB) += iforce.oobj-$(CONFIG_INPUT_ANALOG) += analog.oobj-$(CONFIG_INPUT_A3D) += a3d.oobj-$(CONFIG_INPUT_ADI) += adi.oobj-$(CONFIG_INPUT_COBRA) += cobra.oobj-$(CONFIG_INPUT_GF2K) += gf2k.oobj-$(CONFIG_INPUT_GRIP) += grip.oobj-$(CONFIG_INPUT_INTERACT) += interact.oobj-$(CONFIG_INPUT_TMDC) += tmdc.oobj-$(CONFIG_INPUT_SIDEWINDER) += sidewinder.oobj-$(CONFIG_INPUT_DB9) += db9.oobj-$(CONFIG_INPUT_GAMECON) += gamecon.oobj-$(CONFIG_INPUT_TURBOGRAFX) += turbografx.oobj-$(CONFIG_INPUT_AMIJOY) += amijoy.o# The global Rules.make.include $(TOPDIR)/Rules.make
