TARGET=checker

all: 
	flex checker.ll
	g++ lex.yy.c -lfl -o $(TARGET)

clean:
	-rm -f lex.yy.c
	-rm -f $(TARGET)
