2007-12-08 23:42:33 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2009-04-13 10:27:40 +02:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# Author: Lasse Collin
|
|
|
|
#
|
|
|
|
# This file has been put into the public domain.
|
|
|
|
# You can do whatever you want with this file.
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
2007-12-08 23:42:33 +01:00
|
|
|
set -e -x
|
|
|
|
|
|
|
|
autopoint -f
|
|
|
|
libtoolize -c -f || glibtoolize -c -f
|
2007-12-09 15:34:25 +01:00
|
|
|
aclocal -I m4
|
2007-12-08 23:42:33 +01:00
|
|
|
autoconf
|
|
|
|
autoheader
|
|
|
|
automake -acf --foreign
|