makefile

来自「Linux内核源代码 为压缩文件 是<<Linux内核>&gt」· 代码 · 共 43 行

TXT
43
字号
## Makefile for the soundmodem device driver.## Note! Dependencies are done automagically by 'make dep', which also# removes any old dependencies. DON'T put your own dependencies here# unless it's something special (ie not a .c file).## Note 2! The CFLAGS definitions are now inherited from the# parent makes..#O_TARGET	:= soundmodem.oobj-y		:= sm.oobj-$(CONFIG_SOUNDMODEM_SBC) += sm_sbc.oobj-$(CONFIG_SOUNDMODEM_WSS) += sm_wss.oobj-$(CONFIG_SOUNDMODEM_AFSK1200) += sm_afsk1200.oobj-$(CONFIG_SOUNDMODEM_AFSK2400_7) += sm_afsk2400_7.oobj-$(CONFIG_SOUNDMODEM_AFSK2400_8) += sm_afsk2400_8.oobj-$(CONFIG_SOUNDMODEM_AFSK2666) += sm_afsk2666.oobj-$(CONFIG_SOUNDMODEM_HAPN4800) += sm_hapn4800.oobj-$(CONFIG_SOUNDMODEM_PSK4800) += sm_psk4800.oobj-$(CONFIG_SOUNDMODEM_FSK9600) += sm_fsk9600.oobj-m		:= $(O_TARGET)all:		all_targets.PHONY:		allgentbl:		gentbl.c		$(HOSTCC) $(HOSTCFLAGS) $< -o $@ -lmTBLHDR		:= sm_tbl_afsk1200.h sm_tbl_afsk2400_8.h TBLHDR		+= sm_tbl_afsk2666.h sm_tbl_psk4800.hTBLHDR		+= sm_tbl_hapn4800.h sm_tbl_fsk9600.h$(TBLHDR):	gentbl		./gentblfastdep:	$(TBLHDR)include $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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