~ubuntu-branches/ubuntu/saucy/eot-utils/saucy

« back to all changes in this revision

Viewing changes to bootstrap.sh

  • Committer: Bazaar Package Importer
  • Author(s): Jérémy Lal
  • Date: 2010-07-18 11:20:47 UTC
  • Revision ID: james.westby@ubuntu.com-20100718112047-9ug3o5gy5ep8ddxg
Tags: upstream-1.0
Import upstream version 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
:
 
2
# This package uses the GNU automake/autoconf system to help with
 
3
# portability. Automake and autoconf create a script, configure, which
 
4
# in turn creates a Makefile. So, the recommended way to get started
 
5
# with these source files is as follows:
 
6
 
 
7
# autoreconf runs autoconf, autoheader, aclocal, automake, autopoint,
 
8
# and libtoolize where appropriate repeatedly to remake the build
 
9
# system. Option -i installs the auxiliary files that
 
10
# automake/autoconf needs and -v makes the command verbose.
 
11
#
 
12
autoreconf -i -v || exit 1
 
13
 
 
14
# If autoreconf succeeded, there should now be a script called
 
15
# configure. It accepts various options, e.g., to set the directory
 
16
# where to install the finished program later, but we'll just run it
 
17
# with the default options. You can always re-run it later.
 
18
 
 
19
./configure || exit 1
 
20
 
 
21
# If all is well, we have a Makefile now...
 
22
 
 
23
echo
 
24
echo "Build system created. Next, run \"make\" to compile the program(s)."
 
25