diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-06-06 09:51:54 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-06-06 09:51:54 +0000 |
commit | 85f39a58c5cc885bd1cb79b357ec570ca04776d3 (patch) | |
tree | 49077de8d7cac1d10d8ce8e6bf48a2373824a24d /Demos/Host/LowLevel/makefile | |
parent | 2da2b2d9fb26787efae93c3f3d2862f51887258a (diff) | |
download | lufa-85f39a58c5cc885bd1cb79b357ec570ca04776d3.tar.gz lufa-85f39a58c5cc885bd1cb79b357ec570ca04776d3.tar.bz2 lufa-85f39a58c5cc885bd1cb79b357ec570ca04776d3.zip |
Move completed low level Audio Host demos into the LowLevel folder from the Incomplete folder.
Diffstat (limited to 'Demos/Host/LowLevel/makefile')
-rw-r--r-- | Demos/Host/LowLevel/makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Demos/Host/LowLevel/makefile b/Demos/Host/LowLevel/makefile index 1c40da1a5..08abaa560 100644 --- a/Demos/Host/LowLevel/makefile +++ b/Demos/Host/LowLevel/makefile @@ -14,6 +14,12 @@ # code. all: + $(MAKE) -C AudioInputHost clean + $(MAKE) -C AudioInputHost all + + $(MAKE) -C AudioOutputHost clean + $(MAKE) -C AudioOutputHost all + $(MAKE) -C GenericHIDHost clean $(MAKE) -C GenericHIDHost all @@ -48,6 +54,8 @@ all: $(MAKE) -C VirtualSerialHost all %: + $(MAKE) -C AudioInputHost $@ + $(MAKE) -C AudioOutputHost $@ $(MAKE) -C GenericHIDHost $@ $(MAKE) -C JoystickHostWithParser $@ $(MAKE) -C KeyboardHost $@ |