Skip to content
Snippets Groups Projects
Select Git revision
  • d985ea7639dd8a63fc8157f00ed69a200477a10d
  • master default
  • zs-dobrichovice
3 results

flask

Blame
  • 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