aboutsummaryrefslogtreecommitdiffstats
path: root/Demos
diff options
context:
space:
mode:
Diffstat (limited to 'Demos')
-rw-r--r--Demos/Device/ClassDriver/AudioInput/makefile2
-rw-r--r--Demos/Device/ClassDriver/AudioOutput/makefile2
-rw-r--r--Demos/Device/ClassDriver/DualVirtualSerial/makefile2
-rw-r--r--Demos/Device/ClassDriver/GenericHID/makefile2
-rw-r--r--Demos/Device/ClassDriver/Joystick/makefile2
-rw-r--r--Demos/Device/ClassDriver/Keyboard/makefile2
-rw-r--r--Demos/Device/ClassDriver/KeyboardMouse/makefile2
-rw-r--r--Demos/Device/ClassDriver/KeyboardMouseMultiReport/makefile2
-rw-r--r--Demos/Device/ClassDriver/MIDI/makefile2
-rw-r--r--Demos/Device/ClassDriver/MassStorage/makefile2
-rw-r--r--Demos/Device/ClassDriver/MassStorageKeyboard/makefile2
-rw-r--r--Demos/Device/ClassDriver/Mouse/makefile2
-rw-r--r--Demos/Device/ClassDriver/RNDISEthernet/makefile2
-rw-r--r--Demos/Device/ClassDriver/VirtualSerial/makefile2
-rw-r--r--Demos/Device/ClassDriver/VirtualSerialMassStorage/makefile2
-rw-r--r--Demos/Device/ClassDriver/VirtualSerialMouse/makefile2
-rw-r--r--Demos/Device/Incomplete/Sideshow/makefile2
-rw-r--r--Demos/Device/Incomplete/TestAndMeasurement/makefile2
-rw-r--r--Demos/Device/LowLevel/AudioInput/makefile2
-rw-r--r--Demos/Device/LowLevel/AudioOutput/makefile2
-rw-r--r--Demos/Device/LowLevel/DualVirtualSerial/makefile2
-rw-r--r--Demos/Device/LowLevel/GenericHID/makefile2
-rw-r--r--Demos/Device/LowLevel/Joystick/makefile2
-rw-r--r--Demos/Device/LowLevel/Keyboard/makefile2
-rw-r--r--Demos/Device/LowLevel/KeyboardMouse/makefile2
-rw-r--r--Demos/Device/LowLevel/MIDI/makefile2
-rw-r--r--Demos/Device/LowLevel/MassStorage/makefile2
-rw-r--r--Demos/Device/LowLevel/Mouse/makefile2
-rw-r--r--Demos/Device/LowLevel/RNDISEthernet/makefile2
-rw-r--r--Demos/Device/LowLevel/VirtualSerial/makefile2
-rw-r--r--Demos/DualRole/ClassDriver/MouseHostDevice/makefile2
-rw-r--r--Demos/Host/ClassDriver/AndroidAccessoryHost/makefile2
-rw-r--r--Demos/Host/ClassDriver/AudioInputHost/makefile2
-rw-r--r--Demos/Host/ClassDriver/AudioOutputHost/makefile2
-rw-r--r--Demos/Host/ClassDriver/JoystickHostWithParser/makefile2
-rw-r--r--Demos/Host/ClassDriver/KeyboardHost/makefile2
-rw-r--r--Demos/Host/ClassDriver/KeyboardHostWithParser/makefile2
-rw-r--r--Demos/Host/ClassDriver/MIDIHost/makefile2
-rw-r--r--Demos/Host/ClassDriver/MassStorageHost/makefile2
-rw-r--r--Demos/Host/ClassDriver/MouseHost/makefile2
-rw-r--r--Demos/Host/ClassDriver/MouseHostWithParser/makefile2
-rw-r--r--Demos/Host/ClassDriver/PrinterHost/makefile2
-rw-r--r--Demos/Host/ClassDriver/RNDISEthernetHost/makefile2
-rw-r--r--Demos/Host/ClassDriver/StillImageHost/makefile2
-rw-r--r--Demos/Host/ClassDriver/VirtualSerialHost/makefile2
-rw-r--r--Demos/Host/Incomplete/BluetoothHost/makefile2
-rw-r--r--Demos/Host/LowLevel/AndroidAccessoryHost/makefile2
-rw-r--r--Demos/Host/LowLevel/AudioInputHost/makefile2
-rw-r--r--Demos/Host/LowLevel/AudioOutputHost/makefile2
-rw-r--r--Demos/Host/LowLevel/GenericHIDHost/makefile2
-rw-r--r--Demos/Host/LowLevel/JoystickHostWithParser/makefile2
-rw-r--r--Demos/Host/LowLevel/KeyboardHost/makefile2
-rw-r--r--Demos/Host/LowLevel/KeyboardHostWithParser/makefile2
-rw-r--r--Demos/Host/LowLevel/MIDIHost/makefile2
-rw-r--r--Demos/Host/LowLevel/MassStorageHost/makefile2
-rw-r--r--Demos/Host/LowLevel/MouseHost/makefile2
-rw-r--r--Demos/Host/LowLevel/MouseHostWithParser/makefile2
-rw-r--r--Demos/Host/LowLevel/PrinterHost/makefile2
-rw-r--r--Demos/Host/LowLevel/RNDISEthernetHost/makefile2
-rw-r--r--Demos/Host/LowLevel/StillImageHost/makefile2
-rw-r--r--Demos/Host/LowLevel/VirtualSerialHost/makefile2
61 files changed, 61 insertions, 61 deletions
diff --git a/Demos/Device/ClassDriver/AudioInput/makefile b/Demos/Device/ClassDriver/AudioInput/makefile
index 439630c6b..d71535464 100644
--- a/Demos/Device/ClassDriver/AudioInput/makefile
+++ b/Demos/Device/ClassDriver/AudioInput/makefile
@@ -698,7 +698,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.
diff --git a/Demos/Device/ClassDriver/AudioOutput/makefile b/Demos/Device/ClassDriver/AudioOutput/makefile
index 62c0aad4a..9f121c8ed 100644
--- a/Demos/Device/ClassDriver/AudioOutput/makefile
+++ b/Demos/Device/ClassDriver/AudioOutput/makefile
@@ -699,7 +699,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.
diff --git a/Demos/Device/ClassDriver/DualVirtualSerial/makefile b/Demos/Device/ClassDriver/DualVirtualSerial/makefile
index 25828e40d..f8fea5ff2 100644
--- a/Demos/Device/ClassDriver/DualVirtualSerial/makefile
+++ b/Demos/Device/ClassDriver/DualVirtualSerial/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Device/ClassDriver/GenericHID/makefile b/Demos/Device/ClassDriver/GenericHID/makefile
index e60ce4c15..72af4f061 100644
--- a/Demos/Device/ClassDriver/GenericHID/makefile
+++ b/Demos/Device/ClassDriver/GenericHID/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Device/ClassDriver/Joystick/makefile b/Demos/Device/ClassDriver/Joystick/makefile
index 88bad8e55..45274356f 100644
--- a/Demos/Device/ClassDriver/Joystick/makefile
+++ b/Demos/Device/ClassDriver/Joystick/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Device/ClassDriver/Keyboard/makefile b/Demos/Device/ClassDriver/Keyboard/makefile
index 1f44e38fd..f287a97e2 100644
--- a/Demos/Device/ClassDriver/Keyboard/makefile
+++ b/Demos/Device/ClassDriver/Keyboard/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Device/ClassDriver/KeyboardMouse/makefile b/Demos/Device/ClassDriver/KeyboardMouse/makefile
index cfb60e784..602aa2098 100644
--- a/Demos/Device/ClassDriver/KeyboardMouse/makefile
+++ b/Demos/Device/ClassDriver/KeyboardMouse/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Device/ClassDriver/KeyboardMouseMultiReport/makefile b/Demos/Device/ClassDriver/KeyboardMouseMultiReport/makefile
index 52566b7ec..0d05d8f54 100644
--- a/Demos/Device/ClassDriver/KeyboardMouseMultiReport/makefile
+++ b/Demos/Device/ClassDriver/KeyboardMouseMultiReport/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Device/ClassDriver/MIDI/makefile b/Demos/Device/ClassDriver/MIDI/makefile
index b5790490b..35a0e044e 100644
--- a/Demos/Device/ClassDriver/MIDI/makefile
+++ b/Demos/Device/ClassDriver/MIDI/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Device/ClassDriver/MassStorage/makefile b/Demos/Device/ClassDriver/MassStorage/makefile
index e24d1a2ee..83f53618a 100644
--- a/Demos/Device/ClassDriver/MassStorage/makefile
+++ b/Demos/Device/ClassDriver/MassStorage/makefile
@@ -698,7 +698,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.
diff --git a/Demos/Device/ClassDriver/MassStorageKeyboard/makefile b/Demos/Device/ClassDriver/MassStorageKeyboard/makefile
index 87d40a6a8..1ee62c740 100644
--- a/Demos/Device/ClassDriver/MassStorageKeyboard/makefile
+++ b/Demos/Device/ClassDriver/MassStorageKeyboard/makefile
@@ -698,7 +698,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.
diff --git a/Demos/Device/ClassDriver/Mouse/makefile b/Demos/Device/ClassDriver/Mouse/makefile
index 63d8f4646..7f51663ef 100644
--- a/Demos/Device/ClassDriver/Mouse/makefile
+++ b/Demos/Device/ClassDriver/Mouse/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Device/ClassDriver/RNDISEthernet/makefile b/Demos/Device/ClassDriver/RNDISEthernet/makefile
index d50dc3dbc..da68d66b8 100644
--- a/Demos/Device/ClassDriver/RNDISEthernet/makefile
+++ b/Demos/Device/ClassDriver/RNDISEthernet/makefile
@@ -713,7 +713,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.
diff --git a/Demos/Device/ClassDriver/VirtualSerial/makefile b/Demos/Device/ClassDriver/VirtualSerial/makefile
index c6127869b..873d13896 100644
--- a/Demos/Device/ClassDriver/VirtualSerial/makefile
+++ b/Demos/Device/ClassDriver/VirtualSerial/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Device/ClassDriver/VirtualSerialMassStorage/makefile b/Demos/Device/ClassDriver/VirtualSerialMassStorage/makefile
index 1b211680a..71c27ab9a 100644
--- a/Demos/Device/ClassDriver/VirtualSerialMassStorage/makefile
+++ b/Demos/Device/ClassDriver/VirtualSerialMassStorage/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.
diff --git a/Demos/Device/ClassDriver/VirtualSerialMouse/makefile b/Demos/Device/ClassDriver/VirtualSerialMouse/makefile
index b918197dd..ac7dc91cb 100644
--- a/Demos/Device/ClassDriver/VirtualSerialMouse/makefile
+++ b/Demos/Device/ClassDriver/VirtualSerialMouse/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Device/Incomplete/Sideshow/makefile b/Demos/Device/Incomplete/Sideshow/makefile
index eee6cf807..0bd548e44 100644
--- a/Demos/Device/Incomplete/Sideshow/makefile
+++ b/Demos/Device/Incomplete/Sideshow/makefile
@@ -699,7 +699,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.
diff --git a/Demos/Device/Incomplete/TestAndMeasurement/makefile b/Demos/Device/Incomplete/TestAndMeasurement/makefile
index ff83d8248..904a3aabb 100644
--- a/Demos/Device/Incomplete/TestAndMeasurement/makefile
+++ b/Demos/Device/Incomplete/TestAndMeasurement/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Device/LowLevel/AudioInput/makefile b/Demos/Device/LowLevel/AudioInput/makefile
index 19be3658e..7a90a7054 100644
--- a/Demos/Device/LowLevel/AudioInput/makefile
+++ b/Demos/Device/LowLevel/AudioInput/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.
diff --git a/Demos/Device/LowLevel/AudioOutput/makefile b/Demos/Device/LowLevel/AudioOutput/makefile
index 604cbf099..773038490 100644
--- a/Demos/Device/LowLevel/AudioOutput/makefile
+++ b/Demos/Device/LowLevel/AudioOutput/makefile
@@ -698,7 +698,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.
diff --git a/Demos/Device/LowLevel/DualVirtualSerial/makefile b/Demos/Device/LowLevel/DualVirtualSerial/makefile
index 304085904..b02a4c3f9 100644
--- a/Demos/Device/LowLevel/DualVirtualSerial/makefile
+++ b/Demos/Device/LowLevel/DualVirtualSerial/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 ": warning:" ;); then \
exit 1; \
fi;
@echo Documentation Generation Complete.
diff --git a/Demos/Device/LowLevel/GenericHID/makefile b/Demos/Device/LowLevel/GenericHID/makefile
index 3fb2175e1..608459b21 100644
--- a/Demos/Device/LowLevel/GenericHID/makefile
+++ b/Demos/Device/LowLevel/GenericHID/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 ": warning:" ;); then \
exit 1; \
fi;
@echo Documentation Generation Complete.
diff --git a/Demos/Device/LowLevel/Joystick/makefile b/Demos/Device/LowLevel/Joystick/makefile
index b16fc5a02..79b7ffce2 100644
--- a/Demos/Device/LowLevel/Joystick/makefile
+++ b/Demos/Device/LowLevel/Joystick/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 ": warning:" ;); then \
exit 1; \
fi;
@echo Documentation Generation Complete.
diff --git a/Demos/Device/LowLevel/Keyboard/makefile b/Demos/Device/LowLevel/Keyboard/makefile
index 44de3a8cb..8746b16b5 100644
--- a/Demos/Device/LowLevel/Keyboard/makefile
+++ b/Demos/Device/LowLevel/Keyboard/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 ": warning:" ;); then \
exit 1; \
fi;
@echo Documentation Generation Complete.
diff --git a/Demos/Device/LowLevel/KeyboardMouse/makefile b/Demos/Device/LowLevel/KeyboardMouse/makefile
index 7a38dfc44..c5177800c 100644
--- a/Demos/Device/LowLevel/KeyboardMouse/makefile
+++ b/Demos/Device/LowLevel/KeyboardMouse/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 ": warning:" ;); then \
exit 1; \
fi;
@echo Documentation Generation Complete.
diff --git a/Demos/Device/LowLevel/MIDI/makefile b/Demos/Device/LowLevel/MIDI/makefile
index 140b1050a..59103a733 100644
--- a/Demos/Device/LowLevel/MIDI/makefile
+++ b/Demos/Device/LowLevel/MIDI/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 ": warning:" ;); then \
exit 1; \
fi;
@echo Documentation Generation Complete.
diff --git a/Demos/Device/LowLevel/MassStorage/makefile b/Demos/Device/LowLevel/MassStorage/makefile
index f7fa71530..ddc2cb60a 100644
--- a/Demos/Device/LowLevel/MassStorage/makefile
+++ b/Demos/Device/LowLevel/MassStorage/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.
diff --git a/Demos/Device/LowLevel/Mouse/makefile b/Demos/Device/LowLevel/Mouse/makefile
index 5a5dd99e8..4e11b538d 100644
--- a/Demos/Device/LowLevel/Mouse/makefile
+++ b/Demos/Device/LowLevel/Mouse/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 ": warning:" ;); then \
exit 1; \
fi;
@echo Documentation Generation Complete.
diff --git a/Demos/Device/LowLevel/RNDISEthernet/makefile b/Demos/Device/LowLevel/RNDISEthernet/makefile
index afc5cdcc7..9fae8dee6 100644
--- a/Demos/Device/LowLevel/RNDISEthernet/makefile
+++ b/Demos/Device/LowLevel/RNDISEthernet/makefile
@@ -713,7 +713,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.
diff --git a/Demos/Device/LowLevel/VirtualSerial/makefile b/Demos/Device/LowLevel/VirtualSerial/makefile
index fdef673b4..158d4a495 100644
--- a/Demos/Device/LowLevel/VirtualSerial/makefile
+++ b/Demos/Device/LowLevel/VirtualSerial/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 ": warning:" ;); then \
exit 1; \
fi;
@echo Documentation Generation Complete.
diff --git a/Demos/DualRole/ClassDriver/MouseHostDevice/makefile b/Demos/DualRole/ClassDriver/MouseHostDevice/makefile
index fddf476c7..1897de662 100644
--- a/Demos/DualRole/ClassDriver/MouseHostDevice/makefile
+++ b/Demos/DualRole/ClassDriver/MouseHostDevice/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.
diff --git a/Demos/Host/ClassDriver/AndroidAccessoryHost/makefile b/Demos/Host/ClassDriver/AndroidAccessoryHost/makefile
index 6aec03541..323741ef8 100644
--- a/Demos/Host/ClassDriver/AndroidAccessoryHost/makefile
+++ b/Demos/Host/ClassDriver/AndroidAccessoryHost/makefile
@@ -693,7 +693,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.
diff --git a/Demos/Host/ClassDriver/AudioInputHost/makefile b/Demos/Host/ClassDriver/AudioInputHost/makefile
index 8ba2b734c..1eb9e4378 100644
--- a/Demos/Host/ClassDriver/AudioInputHost/makefile
+++ b/Demos/Host/ClassDriver/AudioInputHost/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/ClassDriver/AudioOutputHost/makefile b/Demos/Host/ClassDriver/AudioOutputHost/makefile
index 1acda4501..23419dee9 100644
--- a/Demos/Host/ClassDriver/AudioOutputHost/makefile
+++ b/Demos/Host/ClassDriver/AudioOutputHost/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Host/ClassDriver/JoystickHostWithParser/makefile b/Demos/Host/ClassDriver/JoystickHostWithParser/makefile
index 1fa6d1355..5fb3034d7 100644
--- a/Demos/Host/ClassDriver/JoystickHostWithParser/makefile
+++ b/Demos/Host/ClassDriver/JoystickHostWithParser/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/ClassDriver/KeyboardHost/makefile b/Demos/Host/ClassDriver/KeyboardHost/makefile
index 760aad692..6716a27f9 100644
--- a/Demos/Host/ClassDriver/KeyboardHost/makefile
+++ b/Demos/Host/ClassDriver/KeyboardHost/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/ClassDriver/KeyboardHostWithParser/makefile b/Demos/Host/ClassDriver/KeyboardHostWithParser/makefile
index 4a137483f..6bd0b8cda 100644
--- a/Demos/Host/ClassDriver/KeyboardHostWithParser/makefile
+++ b/Demos/Host/ClassDriver/KeyboardHostWithParser/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/ClassDriver/MIDIHost/makefile b/Demos/Host/ClassDriver/MIDIHost/makefile
index b346a2057..3837eab60 100644
--- a/Demos/Host/ClassDriver/MIDIHost/makefile
+++ b/Demos/Host/ClassDriver/MIDIHost/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/ClassDriver/MassStorageHost/makefile b/Demos/Host/ClassDriver/MassStorageHost/makefile
index 9b166caaf..66db676eb 100644
--- a/Demos/Host/ClassDriver/MassStorageHost/makefile
+++ b/Demos/Host/ClassDriver/MassStorageHost/makefile
@@ -693,7 +693,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.
diff --git a/Demos/Host/ClassDriver/MouseHost/makefile b/Demos/Host/ClassDriver/MouseHost/makefile
index 260b6e47b..ce92d5564 100644
--- a/Demos/Host/ClassDriver/MouseHost/makefile
+++ b/Demos/Host/ClassDriver/MouseHost/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/ClassDriver/MouseHostWithParser/makefile b/Demos/Host/ClassDriver/MouseHostWithParser/makefile
index cb8da5e95..0c6b668c0 100644
--- a/Demos/Host/ClassDriver/MouseHostWithParser/makefile
+++ b/Demos/Host/ClassDriver/MouseHostWithParser/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/ClassDriver/PrinterHost/makefile b/Demos/Host/ClassDriver/PrinterHost/makefile
index 63bf5f444..c69476ea1 100644
--- a/Demos/Host/ClassDriver/PrinterHost/makefile
+++ b/Demos/Host/ClassDriver/PrinterHost/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/ClassDriver/RNDISEthernetHost/makefile b/Demos/Host/ClassDriver/RNDISEthernetHost/makefile
index 5c6885265..d1e016590 100644
--- a/Demos/Host/ClassDriver/RNDISEthernetHost/makefile
+++ b/Demos/Host/ClassDriver/RNDISEthernetHost/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/ClassDriver/StillImageHost/makefile b/Demos/Host/ClassDriver/StillImageHost/makefile
index 45b44caf7..5edd36770 100644
--- a/Demos/Host/ClassDriver/StillImageHost/makefile
+++ b/Demos/Host/ClassDriver/StillImageHost/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/ClassDriver/VirtualSerialHost/makefile b/Demos/Host/ClassDriver/VirtualSerialHost/makefile
index 9fa992838..b07474e39 100644
--- a/Demos/Host/ClassDriver/VirtualSerialHost/makefile
+++ b/Demos/Host/ClassDriver/VirtualSerialHost/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/Incomplete/BluetoothHost/makefile b/Demos/Host/Incomplete/BluetoothHost/makefile
index 1b3b479b0..a4763bb91 100644
--- a/Demos/Host/Incomplete/BluetoothHost/makefile
+++ b/Demos/Host/Incomplete/BluetoothHost/makefile
@@ -701,7 +701,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.
diff --git a/Demos/Host/LowLevel/AndroidAccessoryHost/makefile b/Demos/Host/LowLevel/AndroidAccessoryHost/makefile
index c4d435a31..92e16336d 100644
--- a/Demos/Host/LowLevel/AndroidAccessoryHost/makefile
+++ b/Demos/Host/LowLevel/AndroidAccessoryHost/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Host/LowLevel/AudioInputHost/makefile b/Demos/Host/LowLevel/AudioInputHost/makefile
index 01764ba1e..8c6d27a56 100644
--- a/Demos/Host/LowLevel/AudioInputHost/makefile
+++ b/Demos/Host/LowLevel/AudioInputHost/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/LowLevel/AudioOutputHost/makefile b/Demos/Host/LowLevel/AudioOutputHost/makefile
index 42f7392a6..2d5c50684 100644
--- a/Demos/Host/LowLevel/AudioOutputHost/makefile
+++ b/Demos/Host/LowLevel/AudioOutputHost/makefile
@@ -695,7 +695,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.
diff --git a/Demos/Host/LowLevel/GenericHIDHost/makefile b/Demos/Host/LowLevel/GenericHIDHost/makefile
index 18ef6dbb9..85bdc48cd 100644
--- a/Demos/Host/LowLevel/GenericHIDHost/makefile
+++ b/Demos/Host/LowLevel/GenericHIDHost/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/LowLevel/JoystickHostWithParser/makefile b/Demos/Host/LowLevel/JoystickHostWithParser/makefile
index 3775eb00d..160d02201 100644
--- a/Demos/Host/LowLevel/JoystickHostWithParser/makefile
+++ b/Demos/Host/LowLevel/JoystickHostWithParser/makefile
@@ -693,7 +693,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.
diff --git a/Demos/Host/LowLevel/KeyboardHost/makefile b/Demos/Host/LowLevel/KeyboardHost/makefile
index f5eb441e7..8cda68775 100644
--- a/Demos/Host/LowLevel/KeyboardHost/makefile
+++ b/Demos/Host/LowLevel/KeyboardHost/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/LowLevel/KeyboardHostWithParser/makefile b/Demos/Host/LowLevel/KeyboardHostWithParser/makefile
index 63ada8b5c..6fe550802 100644
--- a/Demos/Host/LowLevel/KeyboardHostWithParser/makefile
+++ b/Demos/Host/LowLevel/KeyboardHostWithParser/makefile
@@ -693,7 +693,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.
diff --git a/Demos/Host/LowLevel/MIDIHost/makefile b/Demos/Host/LowLevel/MIDIHost/makefile
index 5881bace1..faca8c1a0 100644
--- a/Demos/Host/LowLevel/MIDIHost/makefile
+++ b/Demos/Host/LowLevel/MIDIHost/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/LowLevel/MassStorageHost/makefile b/Demos/Host/LowLevel/MassStorageHost/makefile
index c4860611a..ecfb760fb 100644
--- a/Demos/Host/LowLevel/MassStorageHost/makefile
+++ b/Demos/Host/LowLevel/MassStorageHost/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 ": warning:" ;); then \
exit 1; \
fi;
@echo Documentation Generation Complete.
diff --git a/Demos/Host/LowLevel/MouseHost/makefile b/Demos/Host/LowLevel/MouseHost/makefile
index 8b3706476..c68a53b87 100644
--- a/Demos/Host/LowLevel/MouseHost/makefile
+++ b/Demos/Host/LowLevel/MouseHost/makefile
@@ -692,7 +692,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.
diff --git a/Demos/Host/LowLevel/MouseHostWithParser/makefile b/Demos/Host/LowLevel/MouseHostWithParser/makefile
index c5df80e31..66208afce 100644
--- a/Demos/Host/LowLevel/MouseHostWithParser/makefile
+++ b/Demos/Host/LowLevel/MouseHostWithParser/makefile
@@ -693,7 +693,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.
diff --git a/Demos/Host/LowLevel/PrinterHost/makefile b/Demos/Host/LowLevel/PrinterHost/makefile
index 42b7a77b0..773928ef5 100644
--- a/Demos/Host/LowLevel/PrinterHost/makefile
+++ b/Demos/Host/LowLevel/PrinterHost/makefile
@@ -693,7 +693,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.
diff --git a/Demos/Host/LowLevel/RNDISEthernetHost/makefile b/Demos/Host/LowLevel/RNDISEthernetHost/makefile
index 0830199ff..6efe3d64c 100644
--- a/Demos/Host/LowLevel/RNDISEthernetHost/makefile
+++ b/Demos/Host/LowLevel/RNDISEthernetHost/makefile
@@ -693,7 +693,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.
diff --git a/Demos/Host/LowLevel/StillImageHost/makefile b/Demos/Host/LowLevel/StillImageHost/makefile
index 09e3f59c8..177bc4141 100644
--- a/Demos/Host/LowLevel/StillImageHost/makefile
+++ b/Demos/Host/LowLevel/StillImageHost/makefile
@@ -693,7 +693,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.
diff --git a/Demos/Host/LowLevel/VirtualSerialHost/makefile b/Demos/Host/LowLevel/VirtualSerialHost/makefile
index 21e94637d..b3ae21055 100644
--- a/Demos/Host/LowLevel/VirtualSerialHost/makefile
+++ b/Demos/Host/LowLevel/VirtualSerialHost/makefile
@@ -692,7 +692,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.