Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
663f9bd5
Commit
663f9bd5
authored
Mar 09, 2012
by
Dean Camera
Browse files
Update Doxygen documentation build scripts to fail if any warnings are generated.
parent
62c5a14f
Changes
89
Hide whitespace changes
Inline
Side-by-side
Bootloaders/CDC/makefile
View file @
663f9bd5
...
...
@@ -694,7 +694,9 @@ 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
:
...
...
Bootloaders/DFU/makefile
View file @
663f9bd5
...
...
@@ -689,7 +689,9 @@ 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
:
...
...
Bootloaders/HID/makefile
View file @
663f9bd5
...
...
@@ -686,7 +686,9 @@ 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
:
...
...
BuildTests/ModuleTest/makefile.avr8
View file @
663f9bd5
...
...
@@ -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
...
...
BuildTests/ModuleTest/makefile.uc3
View file @
663f9bd5
...
...
@@ -481,7 +481,9 @@ 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
:
...
...
BuildTests/ModuleTest/makefile.xmega
View file @
663f9bd5
...
...
@@ -701,7 +701,9 @@ 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
:
...
...
BuildTests/SingleUSBModeTest/makefile.avr8
View file @
663f9bd5
...
...
@@ -691,7 +691,9 @@ 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
:
...
...
BuildTests/SingleUSBModeTest/makefile.uc3
View file @
663f9bd5
...
...
@@ -454,7 +454,9 @@ 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
:
...
...
BuildTests/SingleUSBModeTest/makefile.xmega
View file @
663f9bd5
...
...
@@ -673,7 +673,9 @@ 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
:
...
...
BuildTests/StaticAnalysisTest/makefile
View file @
663f9bd5
...
...
@@ -42,4 +42,5 @@ staticcheck:
cppcheck
--quiet
--inline-suppr
--check-config
--template
=
$(MESSAGE_TEMPLATE)
$
(
INCLUDE_PATHS:%
=
-I
%
)
$
(
EXCLUDE_LIST:%
=
-i
%
)
$(LUFA_ROOT_PATH)
cppcheck
--quiet
--inline-suppr
--error-exitcode
=
1
--std
=
c99
--force
--enable
=
all
--inconclusive
$
(
SUPPRESS_WARNINGS:%
=
--suppress
=
%
)
--template
=
$(MESSAGE_TEMPLATE)
$
(
INCLUDE_PATHS:%
=
-I
%
)
$
(
EXCLUDE_LIST:%
=
-i
%
)
$(LUFA_ROOT_PATH)
%
:
\ No newline at end of file
%
:
\ No newline at end of file
Demos/Device/ClassDriver/AudioInput/makefile
View file @
663f9bd5
...
...
@@ -698,7 +698,9 @@ 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
:
...
...
Demos/Device/ClassDriver/AudioOutput/makefile
View file @
663f9bd5
...
...
@@ -699,7 +699,9 @@ 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
:
...
...
Demos/Device/ClassDriver/DualVirtualSerial/makefile
View file @
663f9bd5
...
...
@@ -695,7 +695,9 @@ 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
:
...
...
Demos/Device/ClassDriver/GenericHID/makefile
View file @
663f9bd5
...
...
@@ -695,7 +695,9 @@ 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
:
...
...
Demos/Device/ClassDriver/Joystick/makefile
View file @
663f9bd5
...
...
@@ -695,7 +695,9 @@ 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
:
...
...
Demos/Device/ClassDriver/Keyboard/makefile
View file @
663f9bd5
...
...
@@ -695,7 +695,9 @@ 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
:
...
...
Demos/Device/ClassDriver/KeyboardMouse/makefile
View file @
663f9bd5
...
...
@@ -695,7 +695,9 @@ 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
:
...
...
Demos/Device/ClassDriver/KeyboardMouseMultiReport/makefile
View file @
663f9bd5
...
...
@@ -695,7 +695,9 @@ 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
:
...
...
Demos/Device/ClassDriver/MIDI/makefile
View file @
663f9bd5
...
...
@@ -695,7 +695,9 @@ 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
:
...
...
Demos/Device/ClassDriver/MassStorage/makefile
View file @
663f9bd5
...
...
@@ -698,7 +698,9 @@ 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
:
...
...
Prev
1
2
3
4
5
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment