LIB = 

default: run

build:
	gcc func.h func.c main.c -o matrix_app ${LIB}

run: build
		./matrix_app
