Skip to content
Snippets Groups Projects
Select Git revision
  • 29d1dc65d8ba8fd77ead458df4cb1f461834e2a0
  • master default
  • zs2021
  • zs1920
4 results

first-even.py

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