CC=c99
CFLAGS=-Wall -pedantic -g3

all: eval

test: all
	./eval

clean:
	$(RM) eval *.o a.out
