aboutsummaryrefslogtreecommitdiff
path: root/Bootloaders
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-04-09 10:04:40 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-04-09 10:04:40 +0000
commit1067b399f9751a17edfb189b0274c0760cc29cda (patch)
treed82c436b76d8d6e5dd923d890d4dab06183429c8 /Bootloaders
parent740259fe0eecb960162aea6437b1a750b5c0ae87 (diff)
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. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2150 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Bootloaders')
-rw-r--r--Bootloaders/CDC/makefile2
-rw-r--r--Bootloaders/DFU/makefile2
-rw-r--r--Bootloaders/HID/makefile2
3 files changed, 3 insertions, 3 deletions
diff --git a/Bootloaders/CDC/makefile b/Bootloaders/CDC/makefile
index 9f437d75..ca04b6bc 100644
--- a/Bootloaders/CDC/makefile
+++ b/Bootloaders/CDC/makefile
@@ -694,7 +694,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.
diff --git a/Bootloaders/DFU/makefile b/Bootloaders/DFU/makefile
index 34710384..d23c53ab 100644
--- a/Bootloaders/DFU/makefile
+++ b/Bootloaders/DFU/makefile
@@ -689,7 +689,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.
diff --git a/Bootloaders/HID/makefile b/Bootloaders/HID/makefile
index f967eaa5..efbb6a64 100644
--- a/Bootloaders/HID/makefile
+++ b/Bootloaders/HID/makefile
@@ -686,7 +686,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.