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