You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
456 B
13 lines
456 B
#!/bin/sh
|
|
# Convenience script for regenerating all autogeneratable files that are
|
|
# omitted from the version control repository. In particular, this script
|
|
# also regenerates all aclocal.m4, config.h.in, Makefile.in, configure files
|
|
# with new versions of autoconf or automake.
|
|
#
|
|
# This script requires
|
|
# - autoconf >= 2.60 and automake >= 1.10 in the PATH,
|
|
# - GNU make in the PATH.
|
|
|
|
# Usage: ./autogen.sh
|
|
|
|
make -f Makefile.devel build-prerequisites
|