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