Make Doxygen fail for any Doxygen output other than unsupported tags (as these are somewhat benign).

Improve exclusion list for the main library export_tar rule to exclude any compiled library files from the export.
This commit is contained in:
Dean Camera 2012-04-09 10:04:40 +00:00
parent b2fe539d1c
commit 3211b35a4c
88 changed files with 91 additions and 89 deletions

View file

@ -698,7 +698,7 @@ clean_list :
doxygen:
@echo Generating Project Documentation \($(TARGET)\)...
@if ( doxygen Doxygen.conf 2>&1 | grep ": warning:" ;); then \
@if ( doxygen Doxygen.conf 2>&1 | grep -v "warning: ignoring unsupported tag" ;); then \
exit 1; \
fi;
@echo Documentation Generation Complete.