1 Star 0 Fork 4

CharleyChenli/G711

forked from lmc/G711 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 296 Bytes
一键复制 编辑 原始数据 按行查看 历史
Carlos Escriche 提交于 2016-03-04 14:35 . Initial commit
CC=gcc
CFLAGS=-c -Wall
all: example
example: example.o g711.o g711_table.o
$(CC) example.o g711.o g711_table.o -o example
example.o: example.c
$(CC) $(CFLAGS) example.c
g711_table.o: g711_table.c
$(CC) $(CFLAGS) g711_table.c
g711.o: g711.c
$(CC) $(CFLAGS) g711.c
clean:
rm *.o example
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/charleychenli/G711.git
[email protected]:charleychenli/G711.git
charleychenli
G711
G711
master

搜索帮助