📄 makefile
字号:
## 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 := 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -