Parent Directory
|
Revision Log
remove the symbols header file
| 1 | #!/bin/bash |
| 2 | |
| 3 | for f in \ |
| 4 | `find . -name Makefile.in -o -name Makefile` \ |
| 5 | `find . -name .libs -o -name .deps -type d` \ |
| 6 | `find . -name '*.o' -o -name '*.la' -o -name '*.lo' -o -name '*.loT'` \ |
| 7 | aclocal.m4* autom4te.cache \ |
| 8 | configure config.* \ |
| 9 | depcomp install-sh ltmain.sh missing mkinstalldirs libtool \ |
| 10 | compile sandbox stamp-* symbols.h ; |
| 11 | do |
| 12 | rm -rf $f |
| 13 | done |
| ViewVC Help | |
| Powered by ViewVC 1.1.13 |