Makefile (84B)
1 all: 2 lex -o lex.c lex.l 3 cc lex.c -o lex 4 ./lex input.txt 5 6 clean: 7 rm -f lex.c lex