blob: fb48aa3e8cf793702ff116cf73ee63750360fc61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
#
# $Id$
#
# re autoconf/automake shell script
#
die(){
echo "$@" ; exit
}
aclocal -I . || die "ahhhhh"
autoheader || die "ahhhhh"
automake || die "ahhhhh"
autoconf || die "ahhhhh"
|