Skip to content
Snippets Groups Projects
Select Git revision
  • e9901331f73c4ea79c875ea38595fdf198eea33c
  • master default protected
2 results

Makefile

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