⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 speech signal process tools
💻
字号:
## 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) 1987-1990  AT&T, Inc. #    "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.     ## @(#)Makefile	1.4	1/15/93	ATT/ESI/ERL# # Written by:  # Checked by:# Revised by: David Talkin# #  Makefile for new (and hopefully final!) v32play and v32record#SUNLIB = $(XVIEW_B_OPT) $(XVIEW_LIB) -lmCFLAGS = -g -I../h -I$(XVIEW_INC) -I../../../dsp32/lib  -I../../../dsp32/inc -DFOR_XVIEW $(PROGCFLAGS) -DUSE_DSP32C_VMELPATH = $(WAVESDIR)LBIN = $(BINDIR)LIBSIG = $(WAVESDIR)/xlibsig.a# LINE BELOW FOR TESTING ONLY.# LIBSIG = ../../../libsig/xlibsig.aWSOURCES = nplay.c  ddsetrate.c ddutils.c playrec.c setrate.cprogs: v32play v32recordv32play: newplay.o   nplay.o  surf_stubs.o fab2_stubs.o playrec.o \	setrate.o ddsetrate.o   ddutils.o	cc -o v32play  newplay.o nplay.o  surf_stubs.o \	       fab2_stubs.o playrec.o \	setrate.o ddsetrate.o  ddutils.o \        $(LIBSIG)   $(WAVESDIR)/libds.a $(WSPSLIB) -lmnewplay.c:	esccs indigo_playrec get newplay.cv32record:  ddsetrate.o nrec.o record.o  $(LIBSIG)  ddutils.o version.o	cc  -o v32record ${CFLAGS} record.o  nrec.o ddsetrate.o  ddutils.o \	$(LIBSIG) $(WAVESDIR)/libds.a  version.o $(WSPSLIB) -lmnrec.c: 	esccs wrecord get nrec.cinstall: progs	$(STRIP) v32play	-rm -f $(BINDIR)/v32play	mv v32play $(BINDIR)	chmod $(PROGMOD) $(BINDIR)/v32play	-rm -f $(MANDIR)/man1/v32play.1	cp v32play.1 $(MANDIR)/man1/v32play.1	chmod $(MANMOD) $(MANDIR)/man1/v32play.1	$(STRIP) v32record	-rm -f $(BINDIR)/v32record	mv v32record $(BINDIR)	chmod $(PROGMOD) $(BINDIR)/v32record	-rm -f $(MANDIR)/man1/v32record.1	cp v32record.1 $(MANDIR)/man1/v32record.1	chmod $(MANMOD) $(MANDIR)/man1/v32record.1clean:	-rm -f *.o *~ core v32play v32record$(WSOURCES): ../c/$@	rm -f $@	ln -s ../c/$@ .

⌨️ 快捷键说明

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