1 |
#!/bin/sh |
2 |
|
3 |
rm -fr Makefile Makefile.in \ |
4 |
make-dist.sh make-bin-dist.sh \ |
5 |
autom4te.cache aclocal.m4 config.cache config.guess config.log config.status config.sub configure \ |
6 |
depcomp install-sh ltmain.sh missing \ |
7 |
.deps \ |
8 |
resources.c \ |
9 |
jscoverage generate-resources \ |
10 |
doc/instrumented \ |
11 |
tests/Makefile tests/Makefile.in tests/.deps |
12 |
|
13 |
find . -name core -exec rm {} \; |
14 |
find . -name '*.o' -exec rm {} \; |
15 |
find . -name '*.gcno' -exec rm {} \; |
16 |
find . -name '*.gcda' -exec rm {} \; |
17 |
|
18 |
cd js |
19 |
make distclean |
20 |
rm -fr src/*.o src/fdlibm/*.o autom4te.cache |