The BIG graph update
[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
8 find . -name Makefile.in | xargs rm
9
10 # libtool 1.4.2
11 libtoolize --automake
12 # automake 2.12
13 aclocal
14 autoheader --warnings=all
15 automake --foreign --add-missing --force-missing --copy 
16 # autoconf 2.52
17 autoconf 
18
19