aboutsummaryrefslogtreecommitdiff
blob: 463753c4591882be4fea560624cb2bb1a61ac0b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env sh

die() {
	echo "!!! $*" > /dev/stderr
	exit -1
}

#autoheader || { echo "failed autoheader"; exit 1; };
aclocal || die "failed aclocal"
[ "`type -t glibtoolize`" = "file" ] && alias libtoolize=glibtoolize
libtoolize --automake -c -f || die "failed libtoolize"
autoconf || die "failed autoconf"
touch ChangeLog 
automake -a -c || die "failed automake"

echo "finished"