blob: 218e08d132209bb99142eaf989b0444b23ed4cea [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
jjako73c46b12004-09-09 20:24:46 +000014find . -exec chmod go-w '{}' \;
15
jjakoa7e13972003-07-06 21:27:33 +000016aclocal
17autoheader
18touch config.h.in
19automake
20autoconf
21./configure
22make clean
jjako7ca679d2004-01-13 07:18:53 +000023
24rm config.status
25rm libtool
26rm -r autom4te.cache/
jjako7ca679d2004-01-13 07:18:53 +000027
jjako73c46b12004-09-09 20:24:46 +000028