makefile
来自「speech signal process tools」· 代码 · 共 53 行
TXT
53 行
# 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_filter @(#)Makefile 3.5 11/10/92 ESI## This makefile includes a default parameter file, which is stored # into the esps libraryCFLAGS = -O $(PROGCFLAGS) OBJS = fft_filter.o SRCS = fft_filter.c PROGNAME = fft_filterMANNAME = fft_filter.1DEFPARAM = Pfft_filter$(PROGNAME): $(SPSLIB) $(OBJS) $(CC) $(CFLAGS) $(OBJS) $(SPSLIB) -lm -o $(PROGNAME)$(OBJS): $(SINC)/esps.h $(SINC)/filt.hinstall: $(PROGNAME) $(STRIP) $(PROGNAME) -mv -f $(BINDIR)/$(PROGNAME) $(OLDBIN)/$(PROGNAME) -chmod $(PROGMOD) $(OLDBIN)/$(PROGNAME) mv -f $(PROGNAME) $(BINDIR)/$(PROGNAME) chmod $(PROGMOD) $(BINDIR)/$(PROGNAME) -diffmk $(MANDIR)/man1/$(MANNAME) $(MANNAME) man.diff @echo diffmked man page left in man.diff -rm $(MANDIR)/man1/$(MANNAME) cp $(MANNAME) $(MANDIR)/man1/$(MANNAME) chmod $(MANMOD) $(MANDIR)/man1/$(MANNAME)# install the default parameter file -rm -f $(PARAMDIR)/$(DEFPARAM) cp $(DEFPARAM) $(PARAMDIR)/$(DEFPARAM) chmod $(LIBMOD) $(PARAMDIR)/$(DEFPARAM)clean: -rm -f $(OBJS) $(PROGNAME) lint: $(SRCS) $(LINT) $(LINTFLAGS) $(SRCS) $(LINTLIB) -lm > linttest: $(PROGNAME) -sh test.script
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?