aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/LowLevel/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-07-30 01:11:04 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-07-30 01:11:04 +0000
commit7c8d16fd7adae430f94004048a7702b7338f5eb1 (patch)
tree5049e7b34cbc48603a7e72293ccd7fac0cc1ac0d /Demos/Host/LowLevel/makefile
parent28401f7bb749350a66ebe95649d01a25c01842f7 (diff)
downloadlufa-7c8d16fd7adae430f94004048a7702b7338f5eb1.tar.gz
lufa-7c8d16fd7adae430f94004048a7702b7338f5eb1.tar.bz2
lufa-7c8d16fd7adae430f94004048a7702b7338f5eb1.zip
Oops - need to turn off USART via control register B before reconfiguring, fix ordering of USART control register modifications in the Benito and USBtoSerial projects.
Diffstat (limited to 'Demos/Host/LowLevel/makefile')
-rw-r--r--Demos/Host/LowLevel/makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Demos/Host/LowLevel/makefile b/Demos/Host/LowLevel/makefile
index 2a1caed5e..2dec7c85b 100644
--- a/Demos/Host/LowLevel/makefile
+++ b/Demos/Host/LowLevel/makefile
@@ -38,12 +38,12 @@ all:
$(MAKE) -C PrinterHost clean
$(MAKE) -C PrinterHost all
- $(MAKE) -C StillImageHost clean
- $(MAKE) -C StillImageHost all
-
$(MAKE) -C RNDISEthernetHost clean
$(MAKE) -C RNDISEthernetHost all
+ $(MAKE) -C StillImageHost clean
+ $(MAKE) -C StillImageHost all
+
$(MAKE) -C VirtualSerialHost clean
$(MAKE) -C VirtualSerialHost all
@@ -57,6 +57,6 @@ all:
$(MAKE) -C MouseHost $@
$(MAKE) -C MouseHostWithParser $@
$(MAKE) -C PrinterHost $@
- $(MAKE) -C StillImageHost $@
$(MAKE) -C RNDISEthernetHost $@
+ $(MAKE) -C StillImageHost $@
$(MAKE) -C VirtualSerialHost $@