hepmc - Blame information for rev 78

Subversion Repositories:
Rev:
Rev Author Line No. Line
5 garren 1 #! /bin/sh
2  
3 set -x
4 # cleanup should not be necessary
5 # however, in some cases strange results are found if you do not start clean
6 rm -rf autom4te.cache
7 rm -f aclocal.m4
8 rm -f Makefile.in */Makefile.in */defs.h.in
9 rm -f missing install-sh depcomp
10 rm -f configure config.*
11 # run autotool commands
12 aclocal
13 autoheader
14 automake --add-missing --copy
15 autoconf
16  
78 garren 17 # To avoid confusing people with failures in the documentation build,
18 # build documents during the bootstrap process.
19 cd doc; ./buildDoc.sh
65 garren 20  
5 garren 21 # ready to make a source code distribution tarball