makefile
来自「speech signal process tools」· 代码 · 共 48 行
TXT
48 行
# 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 wmse_filt @(#)Makefile 3.8 20 Sep 1997 ESI## This makefile includes a default parameter file, which is stored # into the esps libraryCFLAGS = -O $(PROGCFLAGS) OBJS = wmse_filt.o printarr.o itopod.oSRCS = wmse_filt.c printarr.c itopod.cPROGNAME = wmse_filtMANNAME = wmsefilt.1$(PROGNAME): $(SPSLIB) $(OBJS) cc $(CFLAGS) $(OBJS) $(SPSLIB) -lm -o $(PROGNAME)$(OBJS): $(SINC)/esps.h $(SINC)/filt.h $(SINC)/constants.hinstall: $(PROGNAME) $(STRIP) $(PROGNAME) -mv -f $(BINDIR)/$(PROGNAME) $(OLDBIN)/$(PROGNAME) -chmod $(PROGMOD) $(OLDBIN)/$(PROGNAME) mv -f $(PROGNAME) $(BINDIR)/$(PROGNAME) chmod $(PROGMOD) $(BINDIR)/$(PROGNAME) -rm $(MANDIR)/man1/$(MANNAME) cp $(MANNAME) $(MANDIR)/man1/$(MANNAME) chmod $(MANMOD) $(MANDIR)/man1/$(MANNAME) -rm -f $(LIBDIR)/params/Pwmse_filt cp Pwmse_filt $(LIBDIR)/paramsclean: -rm -f $(OBJS) $(PROGNAME) lint: $(SRCS) $(LINT) $(LINTFLAGS) $(SRCS) $(LINTLIB) -lm > linttest: $(PROGNAME) -sh testfile
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?