aboutsummaryrefslogtreecommitdiff
path: root/Demos
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-06-25 13:28:34 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-06-25 13:28:34 +0000
commit3a7573b8eafedeb80bda795624c4d01cd5e3bddb (patch)
tree6c7f4f90b2abd7066aea885fb27b6becf9a3ec4a /Demos
parent802bea644de9309353cae1a8477108e17687a0a7 (diff)
Add default "all" makefile targets to the demo tree makefiles.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1354 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos')
-rw-r--r--Demos/Device/makefile2
-rw-r--r--Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c2
-rw-r--r--Demos/DualRole/makefile2
-rw-r--r--Demos/Host/makefile2
-rw-r--r--Demos/makefile2
5 files changed, 9 insertions, 1 deletions
diff --git a/Demos/Device/makefile b/Demos/Device/makefile
index 3ef7809c..ce80f4e9 100644
--- a/Demos/Device/makefile
+++ b/Demos/Device/makefile
@@ -13,6 +13,8 @@
# custom LUFA library build options are reflected in the compiled
# code.
+all:
+
%:
$(MAKE) -C ClassDriver $@
$(MAKE) -C LowLevel $@
diff --git a/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c b/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c
index e566cf89..628ea381 100644
--- a/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c
+++ b/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c
@@ -144,4 +144,4 @@ void CALLBACK_HID_Device_ProcessHIDReport(USB_ClassInfo_HID_Device_t* const HIDI
const uint8_t ReportType, const void* ReportData, const uint16_t ReportSize)
{
// Unused (but mandatory for the HID class driver) in this demo, since there are no Host->Device reports
-} \ No newline at end of file
+}
diff --git a/Demos/DualRole/makefile b/Demos/DualRole/makefile
index f2ba1a83..2e863bba 100644
--- a/Demos/DualRole/makefile
+++ b/Demos/DualRole/makefile
@@ -13,5 +13,7 @@
# custom LUFA library build options are reflected in the compiled
# code.
+all:
+
%:
$(MAKE) -C ClassDriver/ $@
diff --git a/Demos/Host/makefile b/Demos/Host/makefile
index 3ef7809c..ce80f4e9 100644
--- a/Demos/Host/makefile
+++ b/Demos/Host/makefile
@@ -13,6 +13,8 @@
# custom LUFA library build options are reflected in the compiled
# code.
+all:
+
%:
$(MAKE) -C ClassDriver $@
$(MAKE) -C LowLevel $@
diff --git a/Demos/makefile b/Demos/makefile
index c5736cb8..30434b7e 100644
--- a/Demos/makefile
+++ b/Demos/makefile
@@ -13,6 +13,8 @@
# custom LUFA library build options are reflected in the compiled
# code.
+all:
+
%:
$(MAKE) -C Device $@
$(MAKE) -C Host $@