📄 makefile
字号:
## Makefile for the input core drivers.## The target object and module list name.O_TARGET := inputdrv.o# Objects that export symbols.export-objs := input.o# Object file lists.obj-y :=obj-m :=obj-n :=obj- :=# Each configuration option enables a list of files.obj-$(CONFIG_INPUT) += input.oobj-$(CONFIG_INPUT_KEYBDEV) += keybdev.oobj-$(CONFIG_INPUT_MOUSEDEV) += mousedev.oobj-$(CONFIG_INPUT_JOYDEV) += joydev.oobj-$(CONFIG_INPUT_EVDEV) += evdev.o# The global Rules.make.include $(TOPDIR)/Rules.make
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -