Fixed several stuff.
This commit is contained in:
parent
bfc06f1ff1
commit
4c76d3d40b
10 changed files with 25 additions and 21 deletions
10
Makefile
10
Makefile
|
@ -1,8 +1,14 @@
|
|||
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 {} +
|
||||
- find ./ -name \*.o -exec rm {} \;
|
||||
- find ./ -name \*.hi -exec rm {} \;
|
||||
|
||||
|
|
Reference in a new issue