File: autogen.sh

package info (click to toggle)
libgc 1%3A7.4.2-8
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,660 kB
  • ctags: 5,628
  • sloc: ansic: 33,541; cpp: 1,145; makefile: 155; asm: 99; sh: 26
file content (18 lines) | stat: -rwxr-xr-x 719 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
set -e

# This script creates (or regenerates) configure (as well as aclocal.m4,
# config.h.in, Makefile.in, etc.) missing in the source repository.
#
# If you compile from a distribution tarball, you can skip this.  Otherwise,
# make sure that you have Autoconf, Automake, Libtool, and pkg-config
# installed on your system, and that the corresponding *.m4 files are visible
# to the aclocal.  The latter can be achieved by using packages shipped by
# your OS, or by installing custom versions of all four packages to the same
# prefix.  Otherwise, you may need to invoke autoreconf with the appropriate
# -I options to locate the required *.m4 files.

autoreconf -i

echo
echo "Ready to run './configure'."