makefile

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

TXT
55
字号
#  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 play @(#)makefile	1.8 7/2/87 ESI 	CFLAGS = $(PROGCFLAGS)SPSLIB = /usr/lib/libesps.aMANDIR = /usr/esps/manSINC   = /usr/include/spsBINDIR = /usr/esps/binOLDBIN = /usr/esps/bin/oldLINT = att lintPROGMOD = 0750MANMOD = 0640SPSLIB = /usr/lib/libesps.a##mcplay:	mcplay.o $(SPSLIB)	cc mcplay.o $(SPSLIB) -lmr -lm -o mcplaymcplay.o: $(SINC)/sps.h $(SINC)/sd.hclean:	rm -f mcplay.o mcplaylint:	mcplay.c 	lint -b $(LINTLIB) -lm $(OSFLAGS) mcplay.c > lintinstall: mcplay	-mv -f $(BINDIR)/mcplay $(OLDBIN)/mcplay	-chmod $(PROGMOD) $(OLDBIN)/mcplay	mv mcplay $(BINDIR)/mcplay	-strip $(BINDIR)/mcplay	chmod $(PROGMOD) $(BINDIR)/mcplay	-diffmk  $(MANDIR)/man1/mcplay.1 mcplay.1 man.diff	@echo diffmked man in man.diff	-rm -f $(MANDIR)/man1/mcplay.1	cp mcplay.1 $(MANDIR)/man1/mcplay.1	chmod $(MANMOD) $(MANDIR)/man1/mcplay.1# on a given system, mcplay will be installed as play	-rm -f $(BINDIR)/play	ln $(BINDIR)/mcplay $(BINDIR)/play	chmod $(PROGMOD) $(BINDIR)/play	-rm -f $(MANDIR)/play.1	ln $(MANDIR)/man1/mcplay.1 $(MANDIR)/man1/play.1	chmod $(MANMOD) $(MANDIR)/man1/play.1

⌨️ 快捷键说明

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