hell/Makefile

10 lines
144 B
Makefile
Raw Permalink Normal View History

2023-12-04 19:33:10 -05:00
all:
2023-12-05 07:41:13 -05:00
flex compiler/hell.l
2024-07-11 23:46:00 -04:00
gcc lex.yy.c -lfl -o hellp
install:
install hellp /usr/bin
2023-12-04 19:33:10 -05:00
clean:
2024-07-11 23:46:00 -04:00
rm lex.yy.c hellp
uninstall:
rm /usr/bin/hellp