diff options
Diffstat (limited to 'BuildTests/ModuleTest/makefile.avr8')
-rw-r--r-- | BuildTests/ModuleTest/makefile.avr8 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/BuildTests/ModuleTest/makefile.avr8 b/BuildTests/ModuleTest/makefile.avr8 index f41470f7a..b94ac50e9 100644 --- a/BuildTests/ModuleTest/makefile.avr8 +++ b/BuildTests/ModuleTest/makefile.avr8 @@ -707,9 +707,12 @@ clean_list : doxygen:
@echo Generating Project Documentation \($(TARGET)\)...
- @doxygen Doxygen.conf
+ @if ( doxygen Doxygen.conf 2>&1 | grep "warning" ;); then \
+ exit 1; \
+ fi;
@echo Documentation Generation Complete.
+
clean_doxygen:
rm -rf Documentation
|