aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-07-12 10:18:18 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-07-12 10:18:18 +0000
commitae9dab1398df10de671ba24a37ff60a504367626 (patch)
treeeb61890d94863cc2c4f420543b11fc4b8474e2cb /Demos/Device/LowLevel
parent8de31cbb78f98eb4d3c5b7232e85337b15f294e5 (diff)
downloadlufa-ae9dab1398df10de671ba24a37ff60a504367626.tar.gz
lufa-ae9dab1398df10de671ba24a37ff60a504367626.tar.bz2
lufa-ae9dab1398df10de671ba24a37ff60a504367626.zip
Add missing clean_doxygen phony targets to the project makefiles.
Diffstat (limited to 'Demos/Device/LowLevel')
-rw-r--r--Demos/Device/LowLevel/AudioInput/makefile3
-rw-r--r--Demos/Device/LowLevel/AudioOutput/makefile3
-rw-r--r--Demos/Device/LowLevel/DualVirtualSerial/makefile3
-rw-r--r--Demos/Device/LowLevel/GenericHID/makefile3
-rw-r--r--Demos/Device/LowLevel/Joystick/makefile3
-rw-r--r--Demos/Device/LowLevel/Keyboard/makefile3
-rw-r--r--Demos/Device/LowLevel/KeyboardMouse/makefile3
-rw-r--r--Demos/Device/LowLevel/MIDI/makefile3
-rw-r--r--Demos/Device/LowLevel/MassStorage/makefile3
-rw-r--r--Demos/Device/LowLevel/Mouse/makefile3
-rw-r--r--Demos/Device/LowLevel/RNDISEthernet/makefile3
-rw-r--r--Demos/Device/LowLevel/VirtualSerial/makefile3
12 files changed, 24 insertions, 12 deletions
diff --git a/Demos/Device/LowLevel/AudioInput/makefile b/Demos/Device/LowLevel/AudioInput/makefile
index 31235e8dc..08ece4a4d 100644
--- a/Demos/Device/LowLevel/AudioInput/makefile
+++ b/Demos/Device/LowLevel/AudioInput/makefile
@@ -735,4 +735,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen \ No newline at end of file
+clean_list clean_binary clean_doxygen gdb-config \
+doxygen \ No newline at end of file
diff --git a/Demos/Device/LowLevel/AudioOutput/makefile b/Demos/Device/LowLevel/AudioOutput/makefile
index c7e88f82b..ea56a2233 100644
--- a/Demos/Device/LowLevel/AudioOutput/makefile
+++ b/Demos/Device/LowLevel/AudioOutput/makefile
@@ -736,4 +736,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen \ No newline at end of file
+clean_list clean_binary clean_doxygen gdb-config \
+doxygen \ No newline at end of file
diff --git a/Demos/Device/LowLevel/DualVirtualSerial/makefile b/Demos/Device/LowLevel/DualVirtualSerial/makefile
index da6f110ad..5fc818f8a 100644
--- a/Demos/Device/LowLevel/DualVirtualSerial/makefile
+++ b/Demos/Device/LowLevel/DualVirtualSerial/makefile
@@ -735,4 +735,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen \ No newline at end of file
+clean_list clean_binary clean_doxygen gdb-config \
+doxygen \ No newline at end of file
diff --git a/Demos/Device/LowLevel/GenericHID/makefile b/Demos/Device/LowLevel/GenericHID/makefile
index 2406ec137..3c8ccab22 100644
--- a/Demos/Device/LowLevel/GenericHID/makefile
+++ b/Demos/Device/LowLevel/GenericHID/makefile
@@ -735,4 +735,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen \ No newline at end of file
+clean_list clean_binary clean_doxygen gdb-config \
+doxygen \ No newline at end of file
diff --git a/Demos/Device/LowLevel/Joystick/makefile b/Demos/Device/LowLevel/Joystick/makefile
index bb91594b0..b059db938 100644
--- a/Demos/Device/LowLevel/Joystick/makefile
+++ b/Demos/Device/LowLevel/Joystick/makefile
@@ -735,4 +735,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen \ No newline at end of file
+clean_list clean_binary clean_doxygen gdb-config \
+doxygen \ No newline at end of file
diff --git a/Demos/Device/LowLevel/Keyboard/makefile b/Demos/Device/LowLevel/Keyboard/makefile
index acc846107..5e222803f 100644
--- a/Demos/Device/LowLevel/Keyboard/makefile
+++ b/Demos/Device/LowLevel/Keyboard/makefile
@@ -735,4 +735,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen \ No newline at end of file
+clean_list clean_binary clean_doxygen gdb-config \
+doxygen \ No newline at end of file
diff --git a/Demos/Device/LowLevel/KeyboardMouse/makefile b/Demos/Device/LowLevel/KeyboardMouse/makefile
index 29eedac05..f1ee53a3e 100644
--- a/Demos/Device/LowLevel/KeyboardMouse/makefile
+++ b/Demos/Device/LowLevel/KeyboardMouse/makefile
@@ -735,4 +735,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen \ No newline at end of file
+clean_list clean_binary clean_doxygen gdb-config \
+doxygen \ No newline at end of file
diff --git a/Demos/Device/LowLevel/MIDI/makefile b/Demos/Device/LowLevel/MIDI/makefile
index 5b5a4e9bb..fec5352cf 100644
--- a/Demos/Device/LowLevel/MIDI/makefile
+++ b/Demos/Device/LowLevel/MIDI/makefile
@@ -735,4 +735,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen \ No newline at end of file
+clean_list clean_binary clean_doxygen gdb-config \
+doxygen \ No newline at end of file
diff --git a/Demos/Device/LowLevel/MassStorage/makefile b/Demos/Device/LowLevel/MassStorage/makefile
index 657bec50c..462ec1857 100644
--- a/Demos/Device/LowLevel/MassStorage/makefile
+++ b/Demos/Device/LowLevel/MassStorage/makefile
@@ -737,4 +737,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen \ No newline at end of file
+clean_list clean_binary clean_doxygen gdb-config \
+doxygen \ No newline at end of file
diff --git a/Demos/Device/LowLevel/Mouse/makefile b/Demos/Device/LowLevel/Mouse/makefile
index 03bd0377b..3f825af25 100644
--- a/Demos/Device/LowLevel/Mouse/makefile
+++ b/Demos/Device/LowLevel/Mouse/makefile
@@ -735,4 +735,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen \ No newline at end of file
+clean_list clean_binary clean_doxygen gdb-config \
+doxygen \ No newline at end of file
diff --git a/Demos/Device/LowLevel/RNDISEthernet/makefile b/Demos/Device/LowLevel/RNDISEthernet/makefile
index 957c257f4..e99eee6d2 100644
--- a/Demos/Device/LowLevel/RNDISEthernet/makefile
+++ b/Demos/Device/LowLevel/RNDISEthernet/makefile
@@ -748,4 +748,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen \ No newline at end of file
+clean_list clean_binary clean_doxygen gdb-config \
+doxygen \ No newline at end of file
diff --git a/Demos/Device/LowLevel/VirtualSerial/makefile b/Demos/Device/LowLevel/VirtualSerial/makefile
index 7a9e0b31b..ae69a3cd9 100644
--- a/Demos/Device/LowLevel/VirtualSerial/makefile
+++ b/Demos/Device/LowLevel/VirtualSerial/makefile
@@ -735,4 +735,5 @@ $(shell mkdir $(OBJDIR) 2>/dev/null)
showtarget begin finish end sizebefore sizeafter \
gccversion build elf hex eep lss sym coff extcoff \
program dfu flip flip-ee dfu-ee clean debug \
-clean_list clean_binary gdb-config doxygen \ No newline at end of file
+clean_list clean_binary clean_doxygen gdb-config \
+doxygen \ No newline at end of file