📄 makefile
字号:
## Makefile for ALSA# Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz>#snd-ainstr-fm-objs := ainstr_fm.osnd-ainstr-simple-objs := ainstr_simple.osnd-ainstr-gf1-objs := ainstr_gf1.osnd-ainstr-iw-objs := ainstr_iw.o## this function returns:# "m" - CONFIG_SND_SEQUENCER is m# <empty string> - CONFIG_SND_SEQUENCER is undefined# otherwise parameter #1 value#sequencer = $(if $(subst y,,$(CONFIG_SND_SEQUENCER)),$(if $(1),m),$(if $(CONFIG_SND_SEQUENCER),$(1)))# Toplevel Module Dependencyobj-$(call sequencer,$(CONFIG_SND_OPL3_LIB)) += snd-ainstr-fm.oobj-$(call sequencer,$(CONFIG_SND_OPL4_LIB)) += snd-ainstr-fm.oobj-$(call sequencer,$(CONFIG_SND_GUS_SYNTH)) += snd-ainstr-gf1.o snd-ainstr-simple.o snd-ainstr-iw.oobj-$(call sequencer,$(CONFIG_SND_TRIDENT)) += snd-ainstr-simple.o
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -