Skip to content
Snippets Groups Projects
Select Git revision
  • 4b2f6d8ef7519d5eded20fc3f24659c7bb152be0
  • devel default
  • master
  • fo
  • jirka/typing
  • fo-base
  • mj/submit-images
  • jk/issue-96
  • jk/issue-196
  • honza/add-contestant
  • honza/mr7
  • honza/mrf
  • honza/mrd
  • honza/mra
  • honza/mr6
  • honza/submit-images
  • honza/kolo-vs-soutez
  • jh-stress-test-wip
  • shorten-schools
19 results

upgrade-20210930.sql

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