From b051c916dbcc015f75047b8b5d18a68367f5e7e1 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Sun, 6 Jan 2008 19:40:40 -0500 Subject: [PATCH] Add a simple script to help run all the autotools for the first time. --- autogen.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 autogen.sh diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..b52b9c1 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +die() +{ + echo $@ 1>&2 + exit 1 +} + +aclocal --force || die "Failed to run aclocal." +autoheader --force || die "Failed to run autoheader." +libtoolize --force --copy || die "Failed to run libtoolize." +automake --force --add-missing || die "Failed to run automake." +autoconf --force || die "Failed to run autoconf." -- 2.43.2