all:
	gcc -c -o matrix.o matrix.c
	gcc -c -o matrix_test.o matrix_test.c
	gcc -o matrix_test matrix.o matrix_test.o

clean:
	rm *.o matrix_test
