Skip to content
Snippets Groups Projects
Select Git revision
  • 4ceb2b74c2765c194b1897be72e7e2abdb27e9be
  • upstream default protected
  • master
3 results

index.html

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