all: hw03_test1 hw03_test2

hw03_test1: matrix_lib.c free_matrix.c test_matrix.c
	gcc $^ -lm -o hw03_test1
hw03_test2: matrix_lib.c free_matrix.c use_matrix.c
	gcc $^ -lm -o hw03_test2
