Upgrade Doxygen configuration files to the latest version.

This commit is contained in:
Dean Camera
2013-01-20 13:58:53 +00:00
parent 3059a33db2
commit 2413d114b7
78 changed files with 1065 additions and 689 deletions

View File

@@ -19,10 +19,6 @@ upgrade-doxygen:
@echo Upgrading Doxygen.conf files...
@for doxygen_conf in `find $(LUFA_ROOT) -name Doxygen.conf`; do \
doxygen -u $$doxygen_conf; \
sed "s/MARKDOWN_SUPPORT *= *YES/MARKDOWN_SUPPORT = NO/1" $$doxygen_conf > $$doxygen_conf.new; \
sed "s/DISABLE_INDEX *= *NO/DISABLE_INDEX = YES/1" $$doxygen_conf.new > $$doxygen_conf.new2; \
mv -u $$doxygen_conf.new2 $$doxygen_conf; \
rm $$doxygen_conf.new; \
done;
@echo Doxygen configuration update complete.