1 Star 1 Fork 3

我的上铺叫路遥 / CuckooFilter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 437 Bytes
一键复制 编辑 原始数据 按行查看 历史
我的上铺叫路遥 提交于 2015-08-26 20:07 . Add delete feature
CFLAGS=-g -Wall
CC=gcc
PROG=cuckoo_db
LIBS=mozilla-sha1/sha1.o
LIB_H=mozilla-sha1/sha1.h
OBJS=nvrom_test.o cuckoo_filter.o $(LIBS)
all: $(PROG)
install: $(PROG)
install $(PROG) $(HOME)/bin
$(PROG): $(OBJS)
$(CC) $(CFLAGS) -o $(PROG) $(OBJS)
nvrom_test.o: $(LIB_H) cuckoo_filter.h
cuckoo_filter.o: cuckoo_filter.h
.PHONY: clean
clean:
rm -f *.o $(LIBS) $(PROG)
backup: clean
cd .. ; tar jcvf cuckoo_filter.tar.bz2 cuckoo_filter
C
1
https://gitee.com/begeekmyfriend/CuckooFilter.git
git@gitee.com:begeekmyfriend/CuckooFilter.git
begeekmyfriend
CuckooFilter
CuckooFilter
master

搜索帮助