Parent Directory
|
Revision Log
Move clean.sh to scripts. Some 'make distcheck' fixes.
| 1 | #!/bin/bash |
| 2 | |
| 3 | if [[ -f Makefile ]] ; then |
| 4 | make distclean |
| 5 | fi |
| 6 | |
| 7 | for f in \ |
| 8 | `find . -name Makefile.in -o -name Makefile` \ |
| 9 | `find . -name .libs -o -name .deps -type d` \ |
| 10 | `find . -name '*.o' -o -name '*.la' -o -name '*.lo' -o -name '*.loT'` \ |
| 11 | aclocal.m4* autom4te.cache \ |
| 12 | configure config.* \ |
| 13 | depcomp install-sh ltmain.sh missing mkinstalldirs libtool \ |
| 14 | compile stamp-* \ |
| 15 | src/sandbox src/libsandbox.map src/symbols.h; |
| 16 | do |
| 17 | rm -rf $f |
| 18 | done |
| Name | Value |
|---|---|
| svn:eol-style | native |
| svn:executable | * |
| svn:keywords | Author Date Id Revision |
| ViewVC Help | |
| Powered by ViewVC 1.1.13 |