⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 speech signal process tools
💻
字号:
# #  This material contains proprietary software of Entropic Speech, Inc.   #  Any reproduction, distribution, or publication without the the prior	   #  written permission of Entropic Speech, Inc. is strictly prohibited.#  Any public distribution of copies of this work authorized in writing by#  Entropic Speech, Inc. must bear the notice			# 								#      "Copyright (c) 1987 Entropic Speech, Inc.; All rights reserved"# 				## makefile for fft @(#)makefile	1.1 6/8/87 ESI 	CFLAGS = -DSCCS SPSLIB = /usr/lib/libesps.aLIBES = -lespsMANDIR = /usr/esps/manSINC   = /usr/include/spsBINDIR = /usr/esps/binOLDBIN = /usr/esps/bin/oldLINT = att lintPROGMOD = 0750MANMOD = 0640FFTOBJS =	fft.o FFTSRCS = 	fft.cfft:	$(FFTOBJS) $(SPSLIB) 	cc -o fft $(CFLAGS) $(FFTOBJS) $(SPSLIB) -lmfft.o:	$(SINC)/sps.h $(SINC)/sd.h $(SINC)/spec.hlint:	$(LINT) $(FFTSRCS) $(LINTLIB) -lm > fft.lininstall: fft	-mv -f $(BINDIR)/fft $(OLDBIN)/fft	-chmod $(PROGMOD) $(OLDBIN)/fft	mv fft $(BINDIR)/fft	-strip $(BINDIR)/fft	chmod $(PROGMOD) $(BINDIR)/fft	-diffmk  $(MANDIR)/man1/fft.1 fft.1 man.diff	@echo diffmked man in man.diff	-rm -f $(MANDIR)/man1/fft.1	cp fft.1 $(MANDIR)/man1/fft.1	chmod $(MANMOD) $(MANDIR)/man1/fft.1clean: 	rm -f fft $(FFTOBJS)

⌨️ 快捷键说明

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