10 lines
144 B
Makefile
10 lines
144 B
Makefile
all:
|
|
flex compiler/hell.l
|
|
gcc lex.yy.c -lfl -o hellp
|
|
install:
|
|
install hellp /usr/bin
|
|
clean:
|
|
rm lex.yy.c hellp
|
|
uninstall:
|
|
rm /usr/bin/hellp
|