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

Makefile

Blame
  • Makefile 259 B
    test: splay_operation_test
    	./$<
    
    CXXFLAGS=-std=c++11 -O2 -Wall -Wextra -g -Wno-sign-compare
    
    splay_operation_test: splay_operation.h splay_operation_test.cpp test_main.cpp
    	$(CXX) $(CXXFLAGS) $^ -o $@
    
    clean::
    	rm -f splay_operation_test
    
    .PHONY: clean test