YFLAGS = -dv -t
CFLAGS = -g
example3.out: yacc-two.o lex-two.o main.o
	cc -o example3 main.o yacc-two.o lex-two.o -ll

main.o:main.c
yacc-two.o: yacc-two.y
lex-two.o: lex-two.l

clean:
	rm -f *.o example3 y.tab.h y.output
