CC     = gcc
CFLAGS = -Wall -Wextra -g

all: matrix_test

matrix_test: matrix.o matrix_test.o

clean:
	rm -f matrix_test *.o