Archived
1
0
Fork 0
This repository has been archived on 2025-03-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
hsbot/Makefile
2010-04-21 20:57:22 +02:00

14 lines
234 B
Makefile

all:
ghc --make -Wall -O2 Main.hs -o hsbot -XScopedTypeVariables
listen:
nc -l 127.0.0.1 6667
run:
runghc -XScopedTypeVariables Main
clean:
- rm hsbot
- find ./ -name \*.o -exec rm {} \;
- find ./ -name \*.hi -exec rm {} \;