makefile

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

TXT
57
字号
##  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 Entropic Speech, Inc.; All rights reserved"##  makefile for tpen, plotas#  @(#)makefile	3.3  12/4/95  ESI 				CFLAGS = -O $(PROGCFLAGS)install:	$(LIBDIR)/tpen $(LIBDIR)/plotaslint:		tpen.lint plotas.lintTPEN_SRCS = tpen.c geth.cTPEN_OBJS = tpen.o geth.otpen:		$(TPEN_OBJS)	cc $(CFLAGS) $(TPEN_OBJS) -lm -o tpentpen.o:		chars.h $(SINC)/unix.htpen.lint:	$(TPEN_SRCS)	$(LINT) $(LINTFLAGS) $(TPEN_SRCS) $(LINTLIB) > tpen.lint$(LIBDIR)/tpen:	tpen	$(STRIP) tpen	-rm -f $(LIBDIR)/tpen	mv -f tpen $(LIBDIR)/tpen	chmod $(PROGMOD) $(LIBDIR)/tpenPLOTAS_SRCS = plotas.c puth.cPLOTAS_OBJS = plotas.o puth.oplotas:		$(PLOTAS_OBJS)	cc $(CFLAGS) $(PLOTAS_OBJS) -o plotasplotas.lint:	$(PLOTAS_SRCS)	$(LINT) $(LINTFLAGS) $(PLOTAS_SRCS) $(LINTLIB) > plotas.lint$(LIBDIR)/plotas: plotas	$(STRIP) plotas	-rm -f $(LIBDIR)/plotas	mv -f plotas $(LIBDIR)/plotas	chmod $(PROGMOD) $(LIBDIR)/plotasclean:	-rm -f *.o tpen plotastest:	@echo "Tpen and plotas tested by test of cover scripts for plot programs."

⌨️ 快捷键说明

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