summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJulien Dessaux2010-04-21 20:57:22 +0200
committerJulien Dessaux2010-04-21 20:57:22 +0200
commit4c76d3d40bbfea365283c13256b3e7cf2d2deb5e (patch)
treeb5f4e70d225ba0247ad0691e37b45b8cb4142f6c /Makefile
parentFixed the clean killing of plugin's threads, fixed exception management and c... (diff)
downloadhsbot-4c76d3d40bbfea365283c13256b3e7cf2d2deb5e.tar.gz
hsbot-4c76d3d40bbfea365283c13256b3e7cf2d2deb5e.tar.bz2
hsbot-4c76d3d40bbfea365283c13256b3e7cf2d2deb5e.zip
Fixed several stuff.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bc49b08..abd30ba 100644
--- a/Makefile
+++ b/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 {} \;