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

View File

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

View File

@ -3,7 +3,7 @@
cd ../tools
./make_dox.ksh
cd ../doxygen
p4 edit ../html/*
rm -f ../html/*
touch ../html/Makefile.am
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
export DOXYGEN_USAGE=1
p4 edit tools.dox
cat tools_head.dox > tools.dox
for tool in ${tools[@]}
do
p4 edit ${tool}.dox
set +e
set +e
./$tool > ${tool}.dox
set -e
set -e
cat >> ${tool}.dox <<EOF
cat >> ${tool}.dox <<EOF
\section ${tool}_examples ${tool} examples
EOF
./${tool}.sh >> ${tool}.dox
cat >> ${tool}.dox <<EOF
cat >> ${tool}.dox <<EOF
*/
EOF
cat >> tools.dox <<EOF
cat >> tools.dox <<EOF
- \ref ${tool}
EOF