makefile

来自「内核linux2.4.20,可跟rtlinux3.2打补丁 组成实时linux系」· 代码 · 共 71 行

TXT
71
字号
## Makefile for the joystick drivers.#O_TARGET	:= js.o# Objects that export symbols.export-objs	:= serio.o gameport.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 := m	endifendififeq ($(CONFIG_INPUT_IFORCE_USB),m)	ifeq ($(CONFIG_INPUT_IFORCE_232),y)		CONFIG_INPUT_IFORCE_232 := m	endifendif# 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

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?