diff options
Diffstat (limited to 'Demos')
-rw-r--r-- | Demos/Device/makefile | 2 | ||||
-rw-r--r-- | Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.c | 2 | ||||
-rw-r--r-- | Demos/DualRole/makefile | 2 | ||||
-rw-r--r-- | Demos/Host/makefile | 2 | ||||
-rw-r--r-- | Demos/makefile | 2 |
5 files changed, 9 insertions, 1 deletions
diff --git a/Demos/Device/makefile b/Demos/Device/makefile index 3ef7809ca..ce80f4e96 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 e566cf89b..628ea381a 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 f2ba1a83b..2e863bbad 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 3ef7809ca..ce80f4e96 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 c5736cb8f..30434b7ea 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 $@ |