blob: ab11b9b46b6a51ba606c16c58fb4f13b9b4e532f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
echo "NOTE: this script is obsolete. Use autoreconf instead!"
echo Running libtoolize...
libtoolize --automake
echo Running aclocal...
aclocal
echo Running autoheader...
autoheader
echo Running autoconf...
autoconf
echo Running automake...
automake -a -c
rm -f config.cache config.status
echo "To compile run './configure', and then 'make'."
|