Annotation of talos/clean.sh, revision 1.1.1.1

1.1       nick        1: #!/bin/sh
                      2: # $Id: clean.sh,v 1.1 2009-03-28 03:52:29 nick Exp $
                      3: 
                      4: PROGNAME=froggix
                      5: FILES='        aclocal.m4
                      6:        config.cache
                      7:        config.cross.cache
                      8:        config.log
                      9:        config.status
                     10:        configure
                     11:        Makefile
                     12:        Makefile.in
                     13:        src/*.o
                     14:        src/Makefile
                     15:        src/Makefile.in
                     16:        src/$PROGNAME
                     17:        src/$PROGNAME.exe
                     18:        src/std*.txt'
                     19: 
                     20: test -w configure && (if (./configure) then make distclean; fi)
                     21: for file in $FILES; do test -w $file && rm -f $file; done
                     22: test -w src/.deps && rm -rf src/.deps

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>