default:
	bison -d ex1.ypp
	flex ex1.lpp
	g++ -o mycalc ex1.tab.cpp lex.yy.c

clean:
	rm -f ex1.output ex1.tab.hpp ex1.tab.cpp lex.yy.c 
