diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-03-09 22:36:56 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-03-09 22:36:56 +0000 |
commit | d5291c2e102e3cd0979179eef89ce2cb083614f3 (patch) | |
tree | ce03fdd0ad535e89f861a66c3707f9cfeed86f3c /Projects/MissileLauncher | |
parent | 3ea356a72054b540e1c529fee5f55b10324254a4 (diff) | |
download | lufa-d5291c2e102e3cd0979179eef89ce2cb083614f3.tar.gz lufa-d5291c2e102e3cd0979179eef89ce2cb083614f3.tar.bz2 lufa-d5291c2e102e3cd0979179eef89ce2cb083614f3.zip |
Only abort Doxygen documentation generation if a non-unsupported tag warning is encountered.
Diffstat (limited to 'Projects/MissileLauncher')
-rw-r--r-- | Projects/MissileLauncher/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/MissileLauncher/makefile b/Projects/MissileLauncher/makefile index 3de086271..aa11e1f4f 100644 --- a/Projects/MissileLauncher/makefile +++ b/Projects/MissileLauncher/makefile @@ -693,7 +693,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 ": warning:" ;); then \ exit 1; \ fi; @echo Documentation Generation Complete. |