all: matsolve

clean:
	rm -f matsolve

matsolve: matsolve.c
	gcc -o matsolve matsolve.c -llapack -lcblas -latlas -lm
