File:  [Local Repository] / talos / clean.sh
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Tue Jun 30 01:53:08 2009 UTC (14 years, 10 months ago) by nick
Branches: TALOS, MAIN
CVS tags: V1_0, HEAD
Initial Import

#!/bin/sh
# $Id: clean.sh,v 1.1.1.1 2009/06/30 01:53:08 nick Exp $

PROGNAME=froggix
FILES='	aclocal.m4
	config.cache
	config.cross.cache
	config.log
	config.status
	configure
	Makefile
	Makefile.in
	src/*.o
	src/Makefile
	src/Makefile.in
	src/$PROGNAME
	src/$PROGNAME.exe
	src/std*.txt'

test -w configure && (if (./configure) then make distclean; fi)
for file in $FILES; do test -w $file && rm -f $file; done
test -w src/.deps && rm -rf src/.deps

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