Remove references to p4

This commit is contained in:
Shahram Najm 2016-06-16 18:49:55 +01:00
parent 0461c32b06
commit b9c5e2a985
4 changed files with 6 additions and 16 deletions

View File

@ -38,7 +38,6 @@ do
tar="full_${files[i]}" tar="full_${files[i]}"
EOF EOF
p4 edit ${files[i]}
if [[ ${precision[i]} -gt 0 ]] if [[ ${precision[i]} -gt 0 ]]
then then
grib_set -r -s bitsPerValue=0,decimalScaleFactor=${precision[i]} full_${files[i]} ${files[i]} grib_set -r -s bitsPerValue=0,decimalScaleFactor=${precision[i]} full_${files[i]} ${files[i]}
@ -53,4 +52,3 @@ EOF
grib_dump ${grib2} > /dev/null grib_dump ${grib2} > /dev/null
done done

View File

@ -4,13 +4,9 @@ prov=$1
dest=$2 dest=$2
mkdir -p $dest mkdir -p $dest
p4 edit $dest/*.html
for file in $prov/*.html for file in $prov/*.html
do do
f=`basename $file` f=`basename $file`
cat head.html $file tail.html > $dest/$f cat head.html $file tail.html > $dest/$f
done done
p4 add $dest/*.html

View File

@ -3,7 +3,7 @@
cd ../tools cd ../tools
./make_dox.ksh ./make_dox.ksh
cd ../doxygen cd ../doxygen
p4 edit ../html/*
rm -f ../html/* rm -f ../html/*
touch ../html/Makefile.am touch ../html/Makefile.am
doxygen grib_api_wiz.cfg doxygen grib_api_wiz.cfg

View File

@ -3,30 +3,26 @@ set -ex
set -A tools grib_dump grib_ls grib_get grib_copy grib_set grib_filter grib_compare grib_get_data grib_keys grib_index_build set -A tools grib_dump grib_ls grib_get grib_copy grib_set grib_filter grib_compare grib_get_data grib_keys grib_index_build
export DOXYGEN_USAGE=1 export DOXYGEN_USAGE=1
p4 edit tools.dox
cat tools_head.dox > tools.dox cat tools_head.dox > tools.dox
for tool in ${tools[@]} for tool in ${tools[@]}
do do
p4 edit ${tool}.dox set +e
set +e
./$tool > ${tool}.dox ./$tool > ${tool}.dox
set -e set -e
cat >> ${tool}.dox <<EOF cat >> ${tool}.dox <<EOF
\section ${tool}_examples ${tool} examples \section ${tool}_examples ${tool} examples
EOF EOF
./${tool}.sh >> ${tool}.dox ./${tool}.sh >> ${tool}.dox
cat >> ${tool}.dox <<EOF cat >> ${tool}.dox <<EOF
*/ */
EOF EOF
cat >> tools.dox <<EOF cat >> tools.dox <<EOF
- \ref ${tool} - \ref ${tool}
EOF EOF