~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to lib-src/soundtouch/bootstrap

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: bootstrap,v 1.2 2006/09/18 07:31:35 richardash1981 Exp $
2
 
 
3
 
#!/bin/sh
4
 
 
5
 
if [ "$1" = "--clean" ]
6
 
then
7
 
        if [ -a Makefile ]
8
 
        then
9
 
                make maintainer-clean
10
 
        elif [ -a configure ]
11
 
        then
12
 
                configure && $0 --clean
13
 
        else 
14
 
                bootstrap && configure && $0 --clean
15
 
        fi
16
 
 
17
 
        rm -rf configure libtool aclocal.m4 `find . -name Makefile.in` autom4te*.cache config/config.guess config/config.h.in config/config.sub config/depcomp config/install-sh config/ltmain.sh config/missing config/mkinstalldirs config/stamp-h config/stamp-h.in
18
 
 
19
 
        #gettextize files
20
 
        #rm -f ABOUT-NLS config/config.rpath config/m4/codeset.m4 config/m4/gettext.m4 config/m4/glibc21.m4 config/m4/iconv.m4 config/m4/intdiv0.m4 config/m4/inttypes-pri.m4 config/m4/inttypes.m4 config/m4/inttypes_h.m4 config/m4/isc-posix.m4 config/m4/lcmessage.m4 config/m4/lib-ld.m4 config/m4/lib-link.m4 config/m4/lib-prefix.m4 config/m4/progtest.m4 config/m4/stdint_h.m4 config/m4/uintmax_t.m4 config/m4/ulonglong.m4 po/Makefile.in.in po/Rules-quot po/boldquot.sed po/en@boldquot.header po/en@quot.header po/insert-header.sin po/quot.sed po/remove-potcdate.sin 
21
 
 
22
 
else
23
 
        export AUTOMAKE="automake --add-missing --foreign"
24
 
        autoreconf -fisv && rm -f `find . -name "*~"` && rm -f ChangeLog
25
 
        exit $?
26
 
fi