makefile.c100

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

C100
58
字号
## 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-1993  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% ERL# # Written by:  # Checked by:# Revised by: David Talkin# #CFLAGS = -g -I$(ESPS_BASE)/include/waves $(PROGCFLAGS) -I.LIBSIG = $(ESPS_BASE)/lib/waves/xlibsig.a $(WSPSLIB)LBIN = $(BINDIR)# LINE BELOW FOR TESTING ONLY.#LIBSIG = ../../../libsig/xlibsig.ahpplay: newplay.o dac_hpaudiolib.o hpaudiolib_stubs.o	cc -g -o $@  newplay.o dac_hpaudiolib.o hpaudiolib_stubs.o \	 $(LIBSIG) -L/opt/audio/lib -lAlib -lmpure: newplay.o dac_hpaudiolib.o hpaudiolib_stubs.o	purify cc -g -o $@  newplay.o dac_hpaudiolib.o hpaudiolib_stubs.o \	 $(LIBSIG) -lAlib -lmnewplay.c:	cp ../../s16audio/newplay.c .install: hpplay 	$(STRIP) hpplay	-rm -f $(BINDIR)/hpplay	mv -f hpplay $(BINDIR)/hpplay	chmod $(PROGMOD) $(BINDIR)/hpplay	-rm $(MANDIR)/man1/hpplay.1	cp hpplay.1 $(MANDIR)/man1/hpplay.1	chmod $(MANMOD) $(MANDIR)/man1/hpplay.1clean:	-rm -f *.o  core

⌨️ 快捷键说明

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