eccodes/doxygen/make_dox.sh

46 lines
980 B
Bash
Raw Normal View History

2013-03-25 12:04:10 +00:00
#!/bin/sh
2016-07-11 10:37:33 +00:00
# No need to do tools. We use another mechanism. See top-level
# confluence directory
#cd ../tools
#./make_dox.ksh
#cd ../doxygen
2016-06-16 17:49:55 +00:00
2016-07-11 10:37:33 +00:00
set -e
./process_C_header.pl ../src/grib_api.h ../src/eccodes.h > eccodes.h
# Python doxygen module will be "ecCodes" to distinguish it from "eccodes" for F90
./process_python.pl ../python/gribapi.py > ecCodes.py
2016-07-12 15:15:03 +00:00
2016-07-11 10:37:33 +00:00
rm -fr ../html/*
2013-03-25 12:04:10 +00:00
touch ../html/Makefile.am
doxygen grib_api_wiz.cfg
2016-07-11 10:37:33 +00:00
# Do not copy this. Use default generated doxygen.css
# cp doxygen.css ../html/
# Remove temp files
rm -f eccodes.h
rm -f ecCodes.py
# Hack. Change the links from any example code to confluence
F90_file=../html/classeccodes.html
Py_file=../html/namespaceec_codes.html
fnames="
bufr_get_keys
grib_index
grib_get_keys
grib_clone
grib_copy_message
count_messages
samples
set_missing
"
for fn in $fnames; do
perl -p -i -e "s|$fn\.f90|<a href=\"https://software.ecmwf.int/wiki/display/ECC/$fn\" target=\"_blank\">$fn.f90</a>|" $F90_file
done
echo DONE