| Revision 1,
680 bytes
checked in by mmamonski, 15 years ago
(diff) |
|
Torque/PBS DRMAA initial commit
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | # $Id: autoclean.sh 2420 2009-06-24 14:40:21Z lukasz $ |
|---|
| 3 | |
|---|
| 4 | echo "Removing all generated files. ($PWD)" |
|---|
| 5 | |
|---|
| 6 | make maintainer-clean |
|---|
| 7 | |
|---|
| 8 | rm -f aclocal.m4 configure configure.scan config.h.in confdefs.h libtool |
|---|
| 9 | |
|---|
| 10 | rm -rf autom4te.cache |
|---|
| 11 | rm -rf scripts |
|---|
| 12 | |
|---|
| 13 | find . -name Makefile.in -exec rm -f {} \; |
|---|
| 14 | find . -name Makefile -exec rm -f {} \; |
|---|
| 15 | find . -name \*~ -exec rm -f {} \; |
|---|
| 16 | find . -name \.#* -exec rm -f {} \; |
|---|
| 17 | find . -name \*.core -exec rm -f {} \; |
|---|
| 18 | find . -name \*.log -exec rm -f {} \; |
|---|
| 19 | find . -name \*.a -exec rm -f {} \; |
|---|
| 20 | find . -name \*.o -exec rm -f {} \; |
|---|
| 21 | find . -name \*.lo* -exec rm -f {} \; |
|---|
| 22 | find . -name \*.la* -exec rm -f {} \; |
|---|
| 23 | |
|---|
| 24 | (cd drmaa_utils && sh autoclean.sh "$@") |
|---|
| 25 | echo "done." |
|---|
Note: See
TracBrowser
for help on using the repository browser.