source: branches/2.0/drmaa2_utils/autoclean.sh @ 78

Revision 78, 640 bytes checked in by mmamonski, 12 years ago (diff)

DRMAA 2.0 utils cont...

  • Property svn:executable set to *
Line 
1#!/bin/sh
2# $Id: autoclean.sh 13 2011-04-20 15:41:43Z mmamonski $
3
4echo "Removing all generated files. ($PWD)"
5
6make maintainer-clean
7
8rm -f aclocal.m4 configure configure.scan config.h.in confdefs.h libtool
9
10rm -rf autom4te.cache
11rm -rf scripts
12
13find . -name Makefile.in -exec rm -f {} \;
14find . -name Makefile -exec rm -f {} \;
15find . -name \*~ -exec rm -f {} \;
16find . -name \.#* -exec rm -f {} \;
17find . -name \*.core -exec rm -f {} \;
18find . -name \*.log -exec rm -f {} \;
19find . -name \*.a -exec rm -f {} \;
20find . -name \*.o -exec rm -f {} \;
21find . -name \*.lo* -exec rm -f {} \;
22find . -name \*.la* -exec rm -f {} \;
23
24echo "done."
Note: See TracBrowser for help on using the repository browser.