aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-03-09 05:15:08 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-03-09 05:15:08 +0000
commitce260ae786326b9f1e476fa3e580ecf9176889c2 (patch)
tree9d61be0f91806aa41ba268a53439624ef85baa83 /makefile
parenta61c7f671d7dc0f775f730d07ae764d03bdf3aba (diff)
downloadlufa-ce260ae786326b9f1e476fa3e580ecf9176889c2.tar.gz
lufa-ce260ae786326b9f1e476fa3e580ecf9176889c2.tar.bz2
lufa-ce260ae786326b9f1e476fa3e580ecf9176889c2.zip
Webserver project now uses the board LEDs to indicate the current IP configuration state.
Don't double-read data from the attached disk in the incomplete StandaloneProgrammer project when in host mode.
Diffstat (limited to 'makefile')
-rw-r--r--makefile12
1 files changed, 4 insertions, 8 deletions
diff --git a/makefile b/makefile
index 2c7aeeed6..421c07748 100644
--- a/makefile
+++ b/makefile
@@ -13,18 +13,14 @@
# "make doxygen" to document everything with DoxyGen (if installed) and
# "make clean_doxygen" to remove generated Doxygen documentation from everything.
-# It is suggested that for the master build, the --quiet switch is passed to make,
-# to remove all the commands from the output. This gives a much easier to read
-# report of the entire build process.
-
all:
%:
@echo Executing \"make $@\" on all LUFA library elements.
@echo
- make -C LUFA/ $@
- make -C Demos/ $@
- make -C Projects/ $@
- make -C Bootloaders/ $@
+ make -C LUFA/ $@ -s
+ make -C Demos/ $@ -s
+ make -C Projects/ $@ -s
+ make -C Bootloaders/ $@ -s
@echo
@echo LUFA \"make $@\" operation complete.