all:
	gcc -Wall -pedantic -c matrix.c
	gcc -Wall -pedantic -c lab7.c
	gcc -o lab7 lab7.o matrix.o 

clean:
	rm -f matrix.o lab7.o lab7 
