Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Makefile
Package: G711-729.rar [view]
Upload User: meifeng08
Upload Date: 2013-06-18
Package Size: 5304k
Code Size: 1k
Category:
Voice Compress
Development Platform:
C/C++
- # Makefile for CCITT subroutines and sample programs
- #
- # Modify the CC definition to invoke your ANSI-C compiler
- #
- CC = acc
- # Rules to build sample programs do not depend on a UNIX library program
- #
- ALL = encode decode
- all: $(ALL)
- OBJECTS = g711.o g72x.o g721.o g723_24.o g723_40.o
- encode: $(OBJECTS)
- $(CC) -o $@ encode.c $(OBJECTS)
- decode: $(OBJECTS)
- $(CC) -o $@ decode.c $(OBJECTS)
- # Library rules for UNIX systems
- #
- LIB = ccitt.a
- lib: $(LIB)
- $(LIB): $(OBJECTS)
- @rm -f $(LIB)
- ar cr $(LIB) $(OBJECTS)
- @ranlib $(LIB)
- clean:
- /bin/rm -f $(LIB) $(ALL) *.o