Remove a note in README.macros that work in progress
[platform/upstream/libgc.git] / autogen.sh
1 #!/bin/sh
2 set -e
3
4 # This script creates (or regenerates) configure (as well as aclocal.m4,
5 # config.h.in, Makefile.in, etc.) missing in the source repository.
6 #
7 # If you compile from a distribution tarball, you can skip this.  Otherwise,
8 # make sure that you have Autoconf, Automake and Libtool installed
9 # on your system, and that the corresponding *.m4 files are visible
10 # to the aclocal.  The latter can be achieved by using packages shipped by
11 # your OS, or by installing custom versions of all four packages to the same
12 # prefix.  Otherwise, you may need to invoke autoreconf with the appropriate
13 # -I options to locate the required *.m4 files.
14
15 autoreconf -i
16
17 echo
18 echo "Ready to run './configure'."