diff options
Diffstat (limited to 'reconf')
-rwxr-xr-x | reconf | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +#!/bin/sh +# +# $Id$ +# +# re autoconf/automake shell script +# + +die(){ + echo "$@" ; exit +} + +aclocal || die "ahhhhh" +autoheader || die "ahhhhh" +automake || die "ahhhhh" +autoconf || die "ahhhhh" + |