aboutsummaryrefslogtreecommitdiff
path: root/Projects/LEDNotifier/makefile
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-03-09 22:36:56 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-03-09 22:36:56 +0000
commit6de350f9f867bdd2d49128082ae9375b82370819 (patch)
treece03fdd0ad535e89f861a66c3707f9cfeed86f3c /Projects/LEDNotifier/makefile
parent50bd690266588432561947355f52c663bd125a20 (diff)
Only abort Doxygen documentation generation if a non-unsupported tag warning is encountered.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2104 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Projects/LEDNotifier/makefile')
-rw-r--r--Projects/LEDNotifier/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/LEDNotifier/makefile b/Projects/LEDNotifier/makefile
index cde0b4e2..ca9c7bad 100644
--- a/Projects/LEDNotifier/makefile
+++ b/Projects/LEDNotifier/makefile
@@ -697,7 +697,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.