makefile

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

TXT
48
字号
#  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 wrecord (DSP32 record) @(#)Makefile	1.10 11/8/91 ESI 	OBJS = wrecord.o setrate.o record_data.o nrec.o ddsetrate.o ddutils.oWAVES_SRCS = setrate.c ddsetrate.c ddutils.cSRCS = wrecord.c record_data.c  nrec.c $(WAVES_SRCS)CFLAGS = -g $(PROGCFLAGS) -I../waves/src/h -I../dsp32/lib -I../dsp32/inc PROGNAME = wrecordMANNAME = wrecord.1$(PROGNAME):	$(LIBDIR)/$(WHDRLIB) $(WSPSLIB) $(WAVESDIR)/libds.a $(OBJS)	cc -o $(PROGNAME) $(CFLAGS) $(OBJS) ../libsig/libsig.a \		$(WSPSLIB) $(WAVESDIR)/libds.a -lminstall: $(PROGNAME)	-mv -f $(BINDIR)/$(PROGNAME) $(OLDBIN)/$(PROGNAME)	-chmod $(PROGMOD) $(OLDBIN)/$(PROGNAME)	mv $(PROGNAME) $(BINDIR)/$(PROGNAME)	-strip $(BINDIR)/$(PROGNAME)	chmod $(PROGMOD) $(BINDIR)/$(PROGNAME)	-diffmk  $(MANDIR)/man1/$(MANNAME) $(MANNAME) man.diff	@echo diffmked man in man.diff	-rm -f $(MANDIR)/man1/$(MANNAME)	cp $(MANNAME) $(MANDIR)/man1/$(MANNAME)	chmod $(MANMOD) $(MANDIR)/man1/$(MANNAME)# on a given system, wrecord will be installed as play#	-rm -f $(BINDIR)/record#	ln $(BINDIR)/wrecord $(BINDIR)/record#	chmod $(PROGMOD) $(BINDIR)/record#	-rm -f $(MANDIR)/man1/record.1#	ln $(MANDIR)/man1/wrecord.1 $(MANDIR)/man1/record.1#	chmod $(MANMOD) $(MANDIR)/man1/record.1$(WAVES_SRCS): ../waves/src/c/$@	rm -f $@	ln -s ../waves/src/c/$@ .clean:		-rm -f $(PROGNAME) man.diff $(OBJS) $(WAVES_SRCS)

⌨️ 快捷键说明

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