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

Makefile

Blame
  • Makefile 300 B
    test: find_duplicates_test
    	./$<
    
    INCLUDE ?= .
    CXXFLAGS=-std=c++11 -O2 -Wall -Wextra -g -Wno-sign-compare -I$(INCLUDE)
    
    find_duplicates_test: find_duplicates_test.cpp find_duplicates.h test_main.cpp
    	$(CXX) $(CXXFLAGS) $(filter %.cpp,$^) -o $@
    
    clean:
    	rm -f find_duplicates_test
    
    .PHONY: clean test