summaryrefslogtreecommitdiff
path: root/Makefile
blob: abd30baf30508aac471ffe809b332ba3839fe18f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 {} \;