Fast and simple bloom filters in C and Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

6 lines
206 B

default:
$(MAKE) lib
lib: bfilter.c bfilter.h
$(CC) -g -DLIB -c -fpic -Wall -Wextra -pedantic -Wpointer-arith -std=c99 -lfnv -lm -L. -O3 ./bfilter.c -Wl,-rpath./;
$(CC) -shared -o bfilter.so bfilter.o;