CC = gcc -Wall -DYYDEBUG

OBJS = gr2.o

gr2 : $(OBJS)
	$(CC) -o gr2 $(OBJS)

gr2.c gr2.h: gr2.y
	bison -d -o gr2.c gr2.y

