fix_lex:	lex.yy.c
	gcc -o fix_lex lex.yy.c -ll

lex.yy.c:	lex.l
	flex lex.l

clean:
	rm -f lex.yy.c

realclean:
	rm -f lex.yy.c fix_lex
