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

submit.py

Blame
  • Makefile 296 B
    test: matrix_transpose_test
    	./$<
    
    CXXFLAGS=-std=c++11 -O2 -Wall -Wextra -g -Wno-sign-compare
    
    matrix_transpose_test: matrix_transpose_test.cpp matrix_transpose.h matrix_tests.h test_main.cpp
    	$(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@
    
    clean:
    	rm -f matrix_transpose_test
    
    .PHONY: clean test