mirror of
https://github.com/boostorg/preprocessor.git
synced 2025-07-19 15:32:05 +02:00
26 lines
937 B
Bash
Executable File
26 lines
937 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (C) 2001
|
|
# Housemarque Oy
|
|
# http://www.housemarque.com
|
|
#
|
|
# Permission to copy, use, modify, sell and distribute this software is
|
|
# granted provided this copyright notice appears in all copies. This
|
|
# software is provided "as is" without express or implied warranty, and
|
|
# with no claim as to its suitability for any purpose.
|
|
|
|
rm -f reference/*.html reference/*.htm
|
|
doxygen doxygen_reference.dox
|
|
rm reference/doxygen.css reference/doxygen.gif
|
|
|
|
cd reference
|
|
|
|
for html in *.html
|
|
do
|
|
sed -e 's/enum__params__with__a__default_8hpp.html/enum_params_with_a_default.htm/g' -e 's/enum__params__with__defaults_8hpp.html/enum_params_with_defaults.htm/g' -e 's/<!-- Generated by Doxygen ...... -->/<!-- Generated by Doxygen -->/g' $html > $html.tmp
|
|
mv $html.tmp $html
|
|
done
|
|
|
|
mv enum__params__with__a__default_8hpp.html enum_params_with_a_default.htm
|
|
mv enum__params__with__defaults_8hpp.html enum_params_with_defaults.htm
|