doc/package/todo/index.xml: Migrate information from the plain-text TODO file.
[Ale.git] / bootstrap
blobad9b3280c4568d8895b45028f60ce2ac4a05a111
1 #!/bin/sh
3 # Copyright 2006 David Hilvert <dhilvert@auricle.dyndns.org>,
4 # <dhilvert@ugcs.caltech.edu>
6 # This file is part of the Anti-Lamenessing Engine.
8 # The Anti-Lamenessing Engine is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # The Anti-Lamenessing Engine is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Anti-Lamenessing Engine; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 ###
23 ### 'bootstrap' generates build files for distribution.
24 ###
27 # Check for the existence of a configure script.
30 if test -e configure && test "x$1" != "x-r"; then
31 echo
32 echo "To install:"
33 echo "1) Run './configure'."
34 echo "2) Run 'make'."
35 echo "3) Run 'make install'."
36 echo ""
37 echo "* To regenerate configure, run '$0 -r'"
38 echo
39 exit
42 if ! which gnulib-tool &> /dev/null; then
43 echo "*** Cannot find 'gnulib-tool'. ***"
44 exit
47 if ! which ln &> /dev/null; then
48 echo "*** Cannot find 'ln'. ***"
49 exit
52 if ! which automake &> /dev/null; then
53 echo "*** Cannot find 'automake'. ***"
54 exit
57 if ! which autoreconf &> /dev/null; then
58 echo "*** Cannot find 'autoreconf'. ***"
59 exit
63 # Import GNU extension strndup
66 gnulib-tool --libtool --import strndup error strtod
69 # Placeholders for automake-mandated files.
72 # touch NEWS
73 # touch AUTHORS
76 # Use the automake-mandated spelling for the changelog.
79 # ln -s Changelog ChangeLog
82 # Run autotools' bootstrap script, adding things that automake thinks are
83 # missing, among other things (--install).
86 autoreconf --install
89 # Run automake again, with the --foreign option.
92 # echo ""
93 # echo "Rerunning automake with --foreign flag."
94 # automake --foreign
97 # Indicate that we're done.
100 echo ""
101 echo "Done."
104 # Tell the user what to do next.
107 echo
108 echo "To install:"
109 echo "1) Run './configure'."
110 echo "2) Run 'make'."
111 echo "3) Run 'make install'."