8 lines
160 B
Makefile
8 lines
160 B
Makefile
all:
|
|
ghc --make -Wall -O2 Main.hs -o hsbot -XScopedTypeVariables
|
|
|
|
clean:
|
|
- rm hsbot
|
|
- find ./ -name \*.o -exec rm {} +
|
|
- find ./ -name \*.hi -exec rm {} +
|
|
|