~ubuntu-branches/ubuntu/oneiric/gerbv/oneiric

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Ramakrishnan Muthukrishnan
  • Date: 2008-02-12 22:44:38 UTC
  • mfrom: (3.1.5 hardy)
  • Revision ID: james.westby@ubuntu.com-20080212224438-zfxpim9ax1huyf65
Tags: 2.0.1-3
debian/control: made extra-xdg-menus as a recommendation instead of
dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
rm -f confdefs.h config.* configure aclocal.m4 stamp-h* install-sh missing mkinstalldirs
 
3
rm -rf autom4te.cache
 
4
find . -name Makefile -exec rm {} \;
 
5
find . -name Makefile.in -exec rm {} \;
 
6
 
 
7
echo "Running aclocal..."
 
8
aclocal $ACLOCAL_FLAGS || exit 1
 
9
echo "... done with aclocal."
 
10
 
 
11
echo "Running autoheader..."
 
12
autoheader || exit 1
 
13
echo "... done with autoheader."
 
14
 
 
15
echo "Running automake..."
 
16
automake --copy --add-missing || exit 1
 
17
echo "... done with automake."
 
18
 
 
19
echo "Running autoconf..."
 
20
autoconf || exit 1
 
21
echo "... done with autoconf."