lib: show offset and rectype in HexDumpParser
[barry.git] / maintainer / tar-prepare.sh
blobd512983a573beba07e01a3b29ff4017e4477b080
1 #!/bin/sh
3 if [ -n "$1" ] ; then
4 echo
5 echo "Usage: ./tar-prepare.sh"
6 echo
7 echo "This script prepares a Barry directory for release, assuming"
8 echo "that it is run from inside the root of a freshly extracted"
9 echo "Barry source tree."
10 echo
11 exit 1
14 set -e
16 # Are we in a Barry root tree?
17 if ! [ -f AUTHORS -a -f ChangeLog -a -f COPYING -a -f buildgen.sh ] ; then
18 echo "Can't find Barry files. Please run from root of Barry tree."
19 exit 1
22 # Generate web docs
23 (cd doc/www && ./static.sh)
25 # Generate doxygen docs
26 (doxygen && rm -f doxygen.log)
28 # Generate configure scripts
29 ./buildgen.sh
31 # Clean up the extraneous autoconf clutter
32 rm -rf \
33 autom4te.cache \
34 gui/autom4te.cache \
35 opensync-plugin/autom4te.cache \
36 opensync-plugin-0.4x/autom4te.cache