marker:
	yacc marker.y
	gcc y.tab.c -ly
	./a.out

showstack:
	yacc -d showstack.y
	gcc y.tab.c -ly
	./a.out

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