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