CC=gcc
CFLAGS=-g -ansi -pedantic -Wall
PARSER=bison
VERSION=5 # Controls the version of the program. Use 4 to compile life4.c.

life: life$(VERSION).c readlife1.tab.c
	$(CC) $(CFLAGS) -o life life$(VERSION).c readlife1.tab.c

readlife1.tab.c: readlife1.y
	$(PARSER) readlife1.y

clean:
	rm life readlife*.tab.c
