1#!/bin/sh
2# $Id$
3
4PROGNAME=xye
5FILES='	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
20test -w configure && (if (./configure) then make distclean; fi)
21for file in $FILES; do test -w $file && rm -f $file; done
22test -w src/.deps && rm -rf src/.deps
23