added places for download
[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 --automake
13
14 # wget ftp://sources.redhat.com/pub/automake/automake-1.5.tar.gz
15 aclocal
16 autoheader --warnings=all
17 automake --foreign --add-missing --force-missing --copy 
18
19 # wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.52.tar.gz
20 autoconf 
21
22