makefile

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

TXT
55
字号
##  This material contains proprietary software of Entropic Speech, Inc.   #  Any reproduction, distribution, or publication without 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, 1988 Entropic Speech, Inc. All rights reserved."###  makefile for plotspec#  @(#)makefile	3.3  12/23/88  ESI 	CFLAGS = -O $(PROGCFLAGS)PROGNAME = plotspecOBJS = plotspec.o drawbox.o plot2data.o plotphdata.o \	printtime.o plotscale.o plotexscal.oSRCS = plotspec.c drawbox.c plot2data.c plotphdata.c \	printtime.c plotscale.c plotexscal.c$(PROGNAME):	$(SPSLIB) $(OBJS)	cc $(CFLAGS) $(OBJS) $(SPSLIB) -lm -o $(PROGNAME)plotspec.o:	$(SINC)/esps.h $(SINC)/unix.h $(SINC)/spec.h $(SINC)/feaspec.hdrawbox.o:	$(SINC)/esps.h $(SINC)/unix.hprinttime.c:	../plotsd/printtime.c	rm -f printtime.c	ln ../plotsd/printtime.c .plotscale.c:	../plotsd/plotscale.c	rm -f plotscale.c	ln ../plotsd/plotscale.c .plotexscal.c:	../plotsd/plotexscal.c	rm -f plotexscal.c	ln ../plotsd/plotexscal.c .install:	$(PROGNAME)	$(STRIP) $(PROGNAME)	-rm -f $(PLOTDIR)/$(PROGNAME)	mv $(PROGNAME) $(PLOTDIR)/$(PROGNAME)	chmod $(PROGMOD) $(PLOTDIR)/$(PROGNAME)clean:	rm -f $(OBJS) $(PROGNAME)lint:		$(SRCS)	$(LINT) $(LINTFLAGS) $(SRCS) $(LINTLIB) -lm > linttest:	@echo "Plotspec tested by test of cover script."

⌨️ 快捷键说明

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