Skip to content

Commit 61240bd

Browse files
committed
Reorganizse filter code
1 parent 448c70b commit 61240bd

16 files changed

+8
-4
lines changed

benchmarks/Makefile

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
OPT = -O3 -DNDEBUG
33
#OPT = -g -ggdb
44

5-
CXXFLAGS += -fno-strict-aliasing -Wall -std=c++11 -I. -I../src/ -I../src/cuckoo/ -I../src/gqf/ -I../src/morton/ $(OPT)
5+
CXXFLAGS += -fno-strict-aliasing -Wall -std=c++11 -I. -I../src/ \
6+
-I../src/bloom/ -I../src/cuckoo/ -I../src/gcs \
7+
-I../src/gqf/ -I../src/morton/ -I../src/xorfilter \
8+
$(OPT)
69

710
UNAME_P := $(shell uname -p)
811
ifeq ($(UNAME_P),aarch64)
@@ -17,9 +20,10 @@ endif
1720

1821
LDFLAGS = -Wall
1922

20-
HEADERS = $(wildcard ../src/*.h ../src/cuckoo/*.h ../src/gqf/*.h ../src/morton/*.h) *.h
21-
22-
23+
HEADERS = $(wildcard ../src/*.h \
24+
../src/bloom/*.h ../src/cuckoo/*.h ../src/gcs/*.h \
25+
../src/gqf/*.h ../src/morton/*.h ../src/xorfilter/*.h \
26+
) *.h
2327

2428
.PHONY: all
2529

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)