hepmc - Blame information for rev 65

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  
65 garren 17 # run doxygen if present
18 if [ `whereis doxygen | wc -w` == 2 ]; then
19 cd doc; doxygen doxygen.conf
20 fi
21  
5 garren 22 # ready to make a source code distribution tarball