makefile

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

TXT
55
字号
# 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) 1986-1990  Entropic Speech, Inc. #    "Copyright (c) 1990-1991  Entropic Research Laboratory, Inc. #                   All rights reserved"## The copyright notice above does not evidence any actual or intended # publication of this source code.     ## %W%	%G%	ESI/ERL# # Written by:  # Checked by:# Revised by:# # Makefile for: gpstohp# CFLAGS = $(PROGCFLAGS) -gOBJS = mcd.o text.o chrs.o imdevhp.oSRCS = mcd.c text.c chrs.c imdevhp.cPROGNAME = gpstohpMANNAME = $(PROGNAME):	$(SPSLIB) $(OBJS)	cc  $(CFLAGS) $(OBJS) $(SPSLIB)  -lm -o $(PROGNAME)$(OBJS):	$(SINC)/esps.h install:	$(PROGNAME)	$(STRIP) $(PROGNAME)	-mv $(BINDIR)/$(PROGNAME) $(OLDBIN)/$(PROGNAME)	-chmod $(PROGMOD) $(OLDBIN)/$(PROGNAME)	mv -f $(PROGNAME) $(BINDIR)/$(PROGNAME)	chmod $(PROGMOD) $(BINDIR)/$(PROGNAME)clean:		-rm -f $(OBJS) $(PROGNAME) tstmcd.o tstmcd	lint:		mcd.lint tstmcd.lintmcd.lint:	$(SRCS) 	$(LINT) $(LINTFLAGS) $(SRCS) $(LINTLIB)  > $(PROGNAME).linttstmcd.lint:	tstmcd.c	$(LINT) $(LINTFLAGS) tstmcd.c $(LINTLIB) > tstmcd.linttest:		$(PROGNAME) tstmcd	sh $(PROGNAME).test

⌨️ 快捷键说明

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