- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
makefile
资源名称:melpfix.rar [点击查看]
上传用户:cxx_68
上传日期:2021-02-21
资源大小:161k
文件大小:2k
源码类别:
语音压缩
开发平台:
Visual C++
- #------------------------------------------------------------------------------
- #
- # Commands:
- # make [opt] Create optimized executable melp
- # make debug Create debugging executable melp
- # make clean Remove existing object files
- #------------------------------------------------------------------------------
- # Turn on dependency tracking (for include files).
- #------------------------------------------------------------------------------
- .KEEP_STATE:
- #------------------------------------------------------------------------------
- # Specify names of source files and executable.
- #------------------------------------------------------------------------------
- OBJS = melp.o melp_ana.o melp_syn.o melp_chn.o coeff.o
- fsvq_cb.o msvq_cb.o fec_code.o dsp_sub.o melp_sub.o
- mat_lib.o lpc_lib.o vq_lib.o fs_lib.o pit_lib.o math_lib.o
- mathhalf.o mathdp31.o wmops.o complex.o
- EXE = melp
- #------------------------------------------------------------------------------
- # Specify options for compiling, linking, and archiving.
- #------------------------------------------------------------------------------
- CC = gcc
- CFLAGS = -O3 -D$(OSTYPE) -Wall
- LIBS = -lm
- COMPILE.c = $(CC) $(CFLAGS) -c
- LINK.c = $(CC) $(CFLAGS)
- #------------------------------------------------------------------------------
- # Specify conditional settings.
- #------------------------------------------------------------------------------
- debug := CFLAGS = -g -D$(OSTYPE) -Wall
- #------------------------------------------------------------------------------
- # Compile and link command.
- #------------------------------------------------------------------------------
- opt debug : $(OBJS)
- $(LINK.c) -o $(EXE) $(OBJS) $(LIBS)
- #
- # purify
- #
- purify : $(OBJS)
- purify $(LINK.c) -o $(EXE) $(OBJS) $(LIBS)
- #------------------------------------------------------------------------------
- # Define clean (remove temporary files).
- #------------------------------------------------------------------------------
- clean:
- /bin/rm $(OBJS)
- #------------------------------------------------------------------------------
- # End of Makefile.
- #------------------------------------------------------------------------------