diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-09-30 04:40:36 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-09-30 04:40:36 +0000 |
commit | 89c837ee34db186f7b1f859f767d587036573c4c (patch) | |
tree | 0fd7efe823b1924c89628052398851e54b92fe06 /Bootloaders/makefile | |
parent | 059ebd01a3f34ce288adfe30c6cd5b88553882fa (diff) | |
download | lufa-89c837ee34db186f7b1f859f767d587036573c4c.tar.gz lufa-89c837ee34db186f7b1f859f767d587036573c4c.tar.bz2 lufa-89c837ee34db186f7b1f859f767d587036573c4c.zip |
Removed mostly useless "TestApp" demo, as it was mainly useful only for checking for sytax errors in the library.
MIDI device demos now receive MIDI events from the host and display note ON messages via the board LEDs.
Added beginnings of a MIDI class bootloader.
Diffstat (limited to 'Bootloaders/makefile')
-rw-r--r-- | Bootloaders/makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Bootloaders/makefile b/Bootloaders/makefile index 78af34d67..5fd5aef4b 100644 --- a/Bootloaders/makefile +++ b/Bootloaders/makefile @@ -19,11 +19,12 @@ all: make -C 'CDC/' clean
make -C 'CDC/' all
-
+
make -C 'TeensyHID/' clean
make -C 'TeensyHID/' all
%:
make -C 'DFU/' $@
make -C 'CDC/' $@
+ make -C 'MIDI/' $@
make -C 'TeensyHID/' $@
|