Skip to content
Snippets Groups Projects
Select Git revision
  • 767916bc323915bb8a9aaf1f7a24075e64c94e2c
  • 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