hell/Makefile
2025-03-10 15:20:09 -04:00

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