Select Git revision
protocols.py
-
Martin Mareš authoredMartin Mareš authored
Makefile 268 B
test: cuckoo_hash_test
./$<
INCLUDE ?= .
CXXFLAGS=-std=c++20 -O2 -Wall -Wextra -g -Wno-sign-compare -Wno-array-bounds -I$(INCLUDE)
cuckoo_hash_test: cuckoo_hash_test.cpp test_main.cpp
$(CXX) $(CXXFLAGS) $^ -o $@
clean:
rm -f cuckoo_hash_test
.PHONY: clean test