~ubuntu-branches/ubuntu/natty/gavl/natty

« back to all changes in this revision

Viewing changes to cvs_clean.sh

  • Committer: Bazaar Package Importer
  • Author(s): Free Ekanayaka
  • Date: 2006-05-17 14:24:46 UTC
  • Revision ID: james.westby@ubuntu.com-20060517142446-iqm0jgfbkmy27n5w
Tags: upstream-0.2.3
ImportĀ upstreamĀ versionĀ 0.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
CVSCLEANFILES="config.guess config.status config.sub configure gavl.spec gavl.pc libtool ltmain.sh depcomp install-sh missing  mkinstalldirs"
 
4
 
 
5
SUBDIRS="src gavl gavl/c gavl/mmx gavl/mmxext include"
 
6
 
 
7
echo "Cleaning up..."
 
8
for i in $CVSCLEANFILES; do
 
9
echo "Removing $i"
 
10
rm -rf $i
 
11
done
 
12
echo Removing autom4te*
 
13
rm -rf autom4te*
 
14
for i in $SUBDIRS; do
 
15
echo Removing $i/Makefile
 
16
rm -f $i/Makefile 
 
17
echo Removing $i/Makefile.in
 
18
rm -f $i/Makefile.in
 
19
echo Removing $i/.libs $i/.deps
 
20
rm -rf $i/.libs $i/.deps
 
21
done
 
22
echo "You can now rerun autogen.sh"