Skip to content
Snippets Groups Projects
Commit 2f89c839 authored by Pavel Veselý's avatar Pavel Veselý
Browse files

cuckoo: fixing CPP Makefile

parent e9901331
No related branches found
No related tags found
No related merge requests found
...@@ -4,8 +4,8 @@ test: cuckoo_hash_test ...@@ -4,8 +4,8 @@ test: cuckoo_hash_test
INCLUDE ?= . INCLUDE ?= .
CXXFLAGS=-std=c++20 -O2 -Wall -Wextra -g -Wno-sign-compare -Wno-array-bounds -I$(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 cuckoo_hash_test: cuckoo_hash_test.cpp test_main.cpp cuckoo_hash.h hash_functions.h random.h
$(CXX) $(CXXFLAGS) $^ -o $@ $(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@
clean: clean:
rm -f cuckoo_hash_test rm -f cuckoo_hash_test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment