mirror of https://github.com/ecmwf/eccodes.git
29 lines
593 B
Bash
Executable File
29 lines
593 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# No need to do tools. We use another mechanism. See top-level
|
|
# confluence directory
|
|
#cd ../tools
|
|
#./make_dox.ksh
|
|
#cd ../doxygen
|
|
|
|
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
|
|
|
|
rm -fr ../html/*
|
|
touch ../html/Makefile.am
|
|
doxygen grib_api_wiz.cfg
|
|
|
|
# Do not copy this. Use default generated doxygen.css
|
|
# cp doxygen.css ../html/
|
|
|
|
# ./convert_links.sh
|
|
|
|
# Remove temp files
|
|
rm -f eccodes.h
|
|
rm -f ecCodes.py
|
|
echo DONE
|