git @ Cat's Eye Technologies Robin / master clean.sh
master

Tree @master (Download .tar.gz)

clean.sh @masterraw · history · blame

1
2
3
4
5
6
7
8
9
#!/bin/sh

find . -name "*.o"  -exec rm {} \;
find . -name "*.hi" -exec rm {} \;
find . -name "*.jsmod" -exec rm {} \;
find . -name "*.exe" -exec rm {} \;
rm -rf pkg/*.robin demo/robin.js
rm -rf dist-newstyle
rm -f .ghc.environment.*