diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-07 04:35:59 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-07 04:35:59 +0000 |
commit | cf22a744ec0da3b68c4ffdb14c6fa43f2e07542f (patch) | |
tree | e61fa3c8f3f1911a8200b988f106774a1b6780c8 /Demos/Device/ClassDriver/makefile | |
parent | 7a9b3d3641e1bc97d2826b4865b3cedb11099e62 (diff) | |
download | lufa-cf22a744ec0da3b68c4ffdb14c6fa43f2e07542f.tar.gz lufa-cf22a744ec0da3b68c4ffdb14c6fa43f2e07542f.tar.bz2 lufa-cf22a744ec0da3b68c4ffdb14c6fa43f2e07542f.zip |
Additional file renames and modifications to change CDC demos to VirtualSerial.
Diffstat (limited to 'Demos/Device/ClassDriver/makefile')
-rw-r--r-- | Demos/Device/ClassDriver/makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Demos/Device/ClassDriver/makefile b/Demos/Device/ClassDriver/makefile index 288e01fe4..13a317635 100644 --- a/Demos/Device/ClassDriver/makefile +++ b/Demos/Device/ClassDriver/makefile @@ -20,14 +20,8 @@ all: make -C AudioOutput clean make -C AudioOutput all - make -C CDC clean - make -C CDC all - - make -C CDCMouse clean - make -C CDCMouse all - - make -C DualCDC clean - make -C DualCDC all + make -C DualVirtualSerial clean + make -C DualVirtualSerial all make -C GenericHID clean make -C GenericHID all @@ -56,12 +50,16 @@ all: make -C RNDISEthernet clean make -C RNDISEthernet all + make -C VirtualSerial clean + make -C VirtualSerial all + + make -C VirtualSerialMouse clean + make -C VirtualSerialMouse all + %: make -C AudioInput $@ make -C AudioOutput $@ - make -C CDC $@ - make -C CDCMouse $@ - make -C DualCDC $@ + make -C DualVirtualSerial $@ make -C GenericHID $@ make -C Joystick $@ make -C Keyboard $@ @@ -71,3 +69,5 @@ all: make -C MIDI $@ make -C Mouse $@ make -C RNDISEthernet $@ + make -C VirtualSerial $@ + make -C VirtualSerialMouse $@ |