makefile

来自「speech signal process tools」· 代码 · 共 49 行

TXT
49
字号
# This material contains unpublished, proprietary software of # Entropic Research Laboratory, Inc. Any reproduction, distribution, # or publication of this work must be authorized in writing by Entropic # Research Laboratory, Inc., and must bear the notice: ##    "Copyright (c) 1995-1997 Entropic Research Laboratory, Inc. #                   All rights reserved"## The copyright notice above does not evidence any actual or intended # publication of this source code.     ## @(#)Makefile	1.1	10/4/97	ERL# # Written by:   Rod Johnson, Alan Parker# Checked by:# Revised by:# # Makefile for:  esig2fea# CFLAGS = -g $(PROGCFLAGS)PROG = esig2feaSRC = esig2fea.cMAN = esig2fea.1ESIGBASE = ../lib_header/esignal# LIBS doesn't need an explicit "libesignal.a"# because it's contained in libheader.a.LIBS = $(SPSLIB)prog: $(PROG)$(PROG): $(SRC) $(LIBS) $(SINC)/esps.h $(SINC)/fea.h $(ESIGBASE)/src/esignal.h	$(ANSI_CC) $(CFLAGS) -I$(ESIGBASE)/src $(SRC) $(LIBS) -lm -o $(PROG)install: prog	-rm -f $(BINDIR)/$(PROG)	$(STRIP) $(PROG)	mv $(PROG) $(BINDIR)	chmod $(PROGMOD) $(BINDIR)/$(PROG)	-rm -f $(MANDIR)/man1/$(MAN)	cp $(MAN) $(MANDIR)/man1	chmod $(MANMOD) $(MANDIR)/man1/$(MAN)clean:	-rm -f $(PROG) core

⌨️ 快捷键说明

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