eccodes/doxygen/make_dox.sh

25 lines
478 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
2016-07-12 15:15:03 +00:00
./process_python.pl ../python/gribapi.py > eccodes.py
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
2016-07-12 15:15:03 +00:00
rm -f eccodes.py