1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

moved muting "logic" away from application Makefile

This commit is contained in:
Oleg Hahm 2014-01-05 11:33:34 +01:00
parent 1a2968222a
commit cb7de2432e
2 changed files with 8 additions and 7 deletions

View File

@ -19,6 +19,13 @@ export CFLAGS
export BINDIR =$(CURDIR)/bin/$(BOARD)/
ifeq ($(QUIET),1)
AD=@
else
AD=
endif
export AD
# mandatory includes!
include $(RIOTBASE)/Makefile.modules
include $(RIOTBOARD)/$(BOARD)/Makefile.include

8
dist/Makefile vendored
View File

@ -35,12 +35,6 @@ export RIOTBASE =$(CURDIR)/../../RIOT
export INCLUDES = -I$(RIOTBOARD)/$(BOARD)/include -I$(RIOTBASE)/core/include -I$(RIOTCPU)/$(CPU)/include -I$(RIOTBASE)/sys/lib -I$(RIOTBASE)/sys/include/ -I$(RIOTBASE)/drivers/include/
QUIET := 1
ifeq($(QUIET),1)
AD=@
else
AD=
endif
export AD
export QUIET := 1
include $(RIOTBASE)/Makefile.include