Add some new bears from Thomas Adam
[cteddy.git] / bootstrap.sh
blobe5b0e82804ac53700b8553f3b8cb0b940cc2174d
1 #! /bin/sh
3 # Copyright 2008 Philip Allison <sane@not.co.uk>
5 # This file is part of cteddy.
7 # cteddy is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # cteddy is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with cteddy. If not, see <http://www.gnu.org/licenses/>.
20 # Bootstrap: get a local copy ready for building, from scratch.
22 # Run the following, in order:
23 # * autoheader: create `config.h.in' (or other named header file) from
24 # `configure.ac'
25 # * automake: create all `Makefile.in' files from all `Makefile.am' files,
26 # apparently finding them via `configure.ac'
27 # * `--add-missing' and `--copy' add copies of (not symlinks to) any
28 # standard files which are missing from the distribution
29 # * autoconf: create `configure' from `configure.ac'
31 # One is then in a position to `configure; make; make install'. :)
33 aclocal && autoheader && automake --add-missing --copy && autoconf