makefile

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

TXT
85
字号
# 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) 1995 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.7 10/3/95 ERL# # Makefile for:  waves+ libsig# 	INC = ../waves/src/hCFLAGS = -g -I$(INC) -I$(XVIEW_INC) -DHEAD_STANDALONE -DFOR_XVIEW $(PROGCFLAGS) LPATH = $(SPSDIR)LBIN = $(BINDIR)LIB = $(WAVESDIR)/xlibsig.a# The following is for test purposes only# LIB = ./xlibsig.aDSP32C_BIN = $(SPSDIR)/32cbinDSP32_BIN = $(SPSDIR)/32binLIB_OBJS =  read_data.o parse.o header.o convert_data.o write_data.o \	signal.o environment.o copheader.o tag_writer.o SUTILS = hget addhead rmhead convert scalexlibsig.a: $(LIB_OBJS)	ar rv $@   $?	$(RANLIB) $@install: xlibsig.a	-rm -f $(WAVESDIR)/xlibsig.a	cp xlibsig.a $(WAVESDIR)	chmod $(LIBMOD) $(WAVESDIR)/xlibsig.a	$(RANLIB) $(WAVESDIR)/xlibsig.asutils: $(SUTILS)all:	$(LIB) $(SUTILS)clean: 	-rm -f *.o $(SUTILS) xlibsig.aclobber:	-rm -f xlibsig.aenvironment.o: environment.c	$(CC) -c ${CFLAGS}  -DDPATH=\"${LPATH}\" -DLBIN=\"${LBIN}\" \	 -DDSP32_BIN=\"${DSP32_BIN}\" -DDSP32C_BIN=\"${DSP32C_BIN}\" \	environment.cscale: scale.o $(LIB) $(SPSLIB)	rm -f $@	$(CC) -o scale ${CFLAGS} scale.o $(LIB) $(SPSLIB)hget: hget.o  $(LIB) $(SPSLIB)	rm -f $@	$(CC) -o hget ${CFLAGS} hget.o   $(LIB) $(SPSLIB)rmhead: rmhead.o $(LIB) $(SPSLIB)	rm -f $@	$(CC) -o rmhead ${CFLAGS} rmhead.o $(LIB) $(SPSLIB)addhead: addhead.o $(LIB) $(SPSLIB)	rm -f $@	$(CC) -o addhead ${CFLAGS} addhead.o $(LIB) $(SPSLIB)convert: convert.o $(LIB) $(SPSLIB)	rm -f $@	$(CC) -o convert ${CFLAGS} convert.o $(LIB) $(SPSLIB)doc: ../../text/*.help.src	cd ../../text; make_doc `pwd | sed 's/\/text//'`

⌨️ 快捷键说明

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