blob: 35d42fa31bfd8ebd7a71527d3e8324a74d5eed3c [file] [log] [blame]
jjakoa7e13972003-07-06 21:27:33 +00001#! /bin/sh
2
jjako7ca679d2004-01-13 07:18:53 +00003# bootstrap - Execute relevant autotools scripts
4
5# After running this script the directory is ready for distribution as
jjakodea04112004-01-13 07:35:36 +00006# a tarball. It should also be executed before checking milestones
7# into CVS.
jjako7ca679d2004-01-13 07:18:53 +00008
jjakodea04112004-01-13 07:35:36 +00009# After executing this script the project can be build by executing:
10# ./configure
11# make
12# make install
jjako7ca679d2004-01-13 07:18:53 +000013
jjakoa7e13972003-07-06 21:27:33 +000014aclocal
15autoheader
16touch config.h.in
17automake
18autoconf
19./configure
20make clean
jjako7ca679d2004-01-13 07:18:53 +000021
22rm config.status
23rm libtool
24rm -r autom4te.cache/
jjako7ca679d2004-01-13 07:18:53 +000025