CC = gcc -Wall -DYYDEBUG

OBJS = gr1.o

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

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

