do propper error checking and release memmory when it is not required anymore
[rrdtool.git] / MakeMakefile
1 #!/bin/sh
2 #
3 # Run this script after the first cvs checkout to build
4 # makefiles and friends
5 set -x
6 #
7 find . -name Makefile | xargs rm -f
8 find . -name Makefile.in | xargs rm -f
9
10
11 # wget ftp://ftp.gnu.org/gnu/libtool/libtool-1.4.2.tar.gz
12 libtoolize --copy
13 cp ltmain.sh config
14
15 # wget ftp://sources.redhat.com/pub/automake/automake-1.5.tar.gz
16 aclocal
17 autoheader --warnings=all
18 automake --foreign --add-missing --force-missing --copy 
19
20 # wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.52.tar.gz
21 autoconf 
22
23