aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-06-18 20:36:51 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-06-18 20:36:51 +0000
commit6fa8da4e561ee920f66ece42ce7e937a5399626d (patch)
tree1869dc2f0af251bf7bc616c4d6b9226c1de19589 /makefile
parentd8621ee8f4e214403efd391587eec1503697c25e (diff)
downloadlufa-6fa8da4e561ee920f66ece42ce7e937a5399626d.tar.gz
lufa-6fa8da4e561ee920f66ece42ce7e937a5399626d.tar.bz2
lufa-6fa8da4e561ee920f66ece42ce7e937a5399626d.zip
Minor makefile fixes - add phony targets, remove silence switch from the root makefile and add missing build modules to the ClassDriver VirtualSerial device demo.
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/makefile b/makefile
index d533f25ac..898353c0d 100644
--- a/makefile
+++ b/makefile
@@ -17,9 +17,9 @@ all:
%:
@echo Executing \"make $@\" on all LUFA library elements.
@echo
- $(MAKE) -C LUFA $@ -s
- $(MAKE) -C Demos $@ -s
- $(MAKE) -C Projects $@ -s
- $(MAKE) -C Bootloaders $@ -s
+ $(MAKE) -C LUFA $@
+ $(MAKE) -C Demos $@
+ $(MAKE) -C Projects $@
+ $(MAKE) -C Bootloaders $@
@echo
@echo LUFA \"make $@\" operation complete.