📄 decodera.mak
字号:
#-----------------------------------------------------------------------
# Makefile for compiler the decoder of the
# G.729 Annex C Floating point implementation of
# the 8 kbit/s G.729 Annex A algorithm
# This makefile was prepared for Unix systems
#-----------------------------------------------------------------------
# Define compiler options
#CC_OPT=-std # For Digital cc compiler
# Targets
OBJETS = \
decodera.o dec_ld8a.o lpcfunca.o postfila.o tab_ld8a.o\
bits.o de_acelp.o dec_gain.o dec_lag3.o filter.o\
gainpred.o lspdec.o lspgetq.o p_parity.o post_pro.o\
pred_lt3.o util.o
# Generation of the executable
decodera : $(OBJETS)
$(CC) -o decodera $(OBJETS) -lm
# Compilations if necessary
decodera.o : decodera.c typedef.h ld8a.h
$(CC) -c $(CC_OPT) decodera.c
dec_ld8a.o : dec_ld8a.c typedef.h ld8a.h
$(CC) -c $(CC_OPT) dec_ld8a.c
lpcfunca.o : lpcfunca.c typedef.h ld8a.h tab_ld8a.h
$(CC) -c $(CC_OPT) lpcfunca.c
postfila.o : postfila.c typedef.h ld8a.h
$(CC) -c $(CC_OPT) postfila.c
tab_ld8a.o : tab_ld8a.c typedef.h ld8a.h
$(CC) -c $(CC_OPT) tab_ld8a.c
bits.o : bits.c typedef.h version.h ld8a.h\
tab_ld8a.h
$(CC) -c $(CC_OPT) bits.c
de_acelp.o : de_acelp.c typedef.h version.h ld8a.h
$(CC) -c $(CC_OPT) de_acelp.c
dec_gain.o : dec_gain.c typedef.h version.h ld8a.h\
tab_ld8a.h
$(CC) -c $(CC_OPT) dec_gain.c
dec_lag3.o : dec_lag3.c typedef.h version.h ld8a.h
$(CC) -c $(CC_OPT) dec_lag3.c
filter.o : filter.c typedef.h version.h ld8a.h
$(CC) -c $(CC_OPT) filter.c
gainpred.o : gainpred.c typedef.h version.h ld8a.h\
tab_ld8a.h
$(CC) -c $(CC_OPT) gainpred.c
lspdec.o : lspdec.c typedef.h version.h ld8a.h\
tab_ld8a.h
$(CC) -c $(CC_OPT) lspdec.c
lspgetq.o : lspgetq.c typedef.h version.h ld8a.h
$(CC) -c $(CC_OPT) lspgetq.c
p_parity.o : p_parity.c typedef.h version.h ld8a.h
$(CC) -c $(CC_OPT) p_parity.c
post_pro.o : post_pro.c typedef.h version.h ld8a.h\
tab_ld8a.h
$(CC) -c $(CC_OPT) post_pro.c
pred_lt3.o : pred_lt3.c typedef.h version.h ld8a.h\
tab_ld8a.h
$(CC) -c $(CC_OPT) pred_lt3.c
util.o : util.c typedef.h version.h ld8a.h
$(CC) -c $(CC_OPT) util.c
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -