Add partially complete BoardDriverTest build test.
[pub/USBasp.git] / LUFA / CodeTemplates / makefile_template.xmega
index 9243f04..ee95610 100644 (file)
@@ -112,7 +112,7 @@ LUFA_PATH = ### INSERT PATH TO LUFA LIBRARY RELATIVE TO PROJECT DIRECTORY HERE #
 
 
 # LUFA library compile-time options and predefined tokens (add '-D' before each token)
-LUFA_OPTS = ### INSERT LUFA COMPILE TIME TOKES HERE ###
+LUFA_OPTS = ### INSERT LUFA COMPILE TIME TOKENS HERE ###
 
 
 # Create the LUFA source path variables by including the LUFA root makefile
@@ -675,7 +675,9 @@ clean_list :
 
 doxygen:
        @echo Generating Project Documentation \($(TARGET)\)...
-       @doxygen Doxygen.conf
+       @if ( doxygen Doxygen.conf 2>&1 | grep -v "warning: ignoring unsupported tag" ;); then \
+         exit 1; \
+       fi;
        @echo Documentation Generation Complete.
 
 clean_doxygen: