compile:
	lex graphtokens.l
	gcc LL1.c

run: compile
	a.out input.txt

demo: compile
	a.out INPUT.txt

clean:
	-rm -f lex.yy.c a.out
