1 Star 0 Fork 3

htoooth/cuckooDB

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 422 Bytes
一键复制 编辑 原始数据 按行查看 历史
我的上铺叫路遥 提交于 2015-07-03 23:23 . Rewrite cuckoo hashing
CFLAGS=-g -Wall
CC=gcc
PROG=cuckoo_db
all: $(PROG)
install: $(PROG)
install $(PROG) $(HOME)/bin
LIBS=mozilla-sha1/sha1.o
LIB_H=mozilla-sha1/sha1.h
OBJS=nvrom_test.o cuckoo_db.o $(LIBS)
cuckoo_db: $(OBJS)
$(CC) $(CFLAGS) -o cuckoo_db $(OBJS)
nvrom_test.o: $(LIB_H) cuckoo_db.h
cuckoo_db.o: cuckoo_db.h
.PHONY: clean
clean:
rm -f *.o $(LIBS) $(PROG)
backup: clean
cd .. ; tar jcvf cuckoo_db.tar.bz2 cuckoo_db
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/htoo/cuckooDB.git
git@gitee.com:htoo/cuckooDB.git
htoo
cuckooDB
cuckooDB
master

搜索帮助