9
0
Fork 0
This repository has been archived on 2022-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
openggsn/bootstrap

29 lines
484 B
Plaintext
Raw Normal View History

2003-07-06 21:27:33 +00:00
#! /bin/sh
2004-01-13 07:18:53 +00:00
# bootstrap - Execute relevant autotools scripts
# After running this script the directory is ready for distribution as
# a tarball. It should also be executed before checking milestones
# into CVS.
2004-01-13 07:18:53 +00:00
# After executing this script the project can be build by executing:
# ./configure
# make
# make install
2004-01-13 07:18:53 +00:00
2004-09-09 20:24:46 +00:00
find . -exec chmod go-w '{}' \;
2003-07-06 21:27:33 +00:00
aclocal
autoheader
touch config.h.in
automake
autoconf
./configure
make clean
2004-01-13 07:18:53 +00:00
rm config.status
rm libtool
rm -r autom4te.cache/
2004-09-09 20:24:46 +00:00