blob: 1b9f443add97e5ccef27da3eee66c4a2bb0a2ada (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
all: hello_world
matrix_square_testcase_1:
./judge problems/14-Matrix-Square/testcase_1_double_4x4.vsm problems/14-Matrix-Square/answer_1_double_4x4.vsm
matrix_square_testcase_2:
./judge problems/14-Matrix-Square/testcase_2_float_8x8.vsm problems/14-Matrix-Square/answer_2_float_8x8.vsm
matrix_square:
./judge problems/14-Matrix-Square/testcase.vsm problems/14-Matrix-Square/02.vsm
hello_world:
./judge example/hello_world/testcase.vsm example/hello_world/example.vsm
|