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 |
config.h config.h.in stamp-h1 \ |
7 |
depcomp install-sh ltmain.sh missing \ |
8 |
.deps \ |
9 |
resources.c \ |
10 |
jscoverage generate-resources \ |
11 |
doc/instrumented doc/instrumented-inverted doc/instrumented-jsunit \ |
12 |
tests/Makefile tests/Makefile.in tests/.deps |
13 |
|
14 |
find . -name core -exec rm {} \; |
15 |
find . -name '*.o' -exec rm {} \; |
16 |
find . -name '*.gcno' -exec rm {} \; |
17 |
find . -name '*.gcda' -exec rm {} \; |
18 |
|
19 |
cd js |
20 |
make distclean |
21 |
rm -fr src/*.o src/fdlibm/*.o autom4te.cache |