compile:
	yacc -d matops.y
	lex matpat.l
	gcc y.tab.c lex.yy.c matarith.c symboltable.c

run: compile
	./a.out input.txt

clean:
	-rm -f a.out lex.yy.c y.tab.c y.tab.h
