makefile

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

TXT
53
字号
# 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) 1990-1992  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# # Makefile for:  splay## Written by:  Derek Lin# Checked by:# Revised by: 	CFLAGS = -O -misalign -I../include -I$(ESPS_BASE)/include/waves -I$(XVIEW_INC) -DFOR_XVIEW $(PROGCFLAGS) LIBSIG = $(ESPS_BASE)/lib/waves/xlibsig.a  $(LIBDIR)/libhdrw.a libespsg.asplay: splay.o dac_codec.o  codec_stubs.o ereader.o $(LIBSIG)	cc -o splay splay.o dac_codec.o  codec_stubs.o ereader.o $(LIBSIG)  -lmlibespsg.a: $(LIBDIR)/libespsg.a	cp $(LIBDIR)/libespsg.a .	ar dv libespsg.a ereader.o	ranlib libespsg.aereader.o: ./ereader.cinstall:	$(BINDIR)/splay clean:	-rm -f *.o *~ core splay *.a$(BINDIR)/splay: splay	-mv -f $(BINDIR)/splay $(OLDBIN)/splay	-chmod $(PROGMOD) $(OLDBIN)/splay	-rm -f $(BINDIR)/splay	mv splay $(BINDIR)/splay	-$(STRIP) $(BINDIR)/splay	chmod $(PROGMOD) $(BINDIR)/splay	-rm -f $(MANDIR)/man1/splay.1	cp splay.1 $(MANDIR)/man1/splay.1	chmod $(MANMOD) $(MANDIR)/man1/splay.1clobber: 	rm -f cplay

⌨️ 快捷键说明

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