6 lines
63 B
Makefile
6 lines
63 B
Makefile
|
all:
|
||
|
flex hell.l
|
||
|
gcc lex.yy.c -lfl
|
||
|
clean:
|
||
|
rm lex.yy.c a.out
|