Skip to content

Commit

Permalink
Revert "Merge pull request #305 from frtos-wpan/pull-verbosity"
Browse files Browse the repository at this point in the history
This reverts commit 231e772, reversing
changes made to e13d69c.
  • Loading branch information
adamdunkels committed Jul 29, 2013
1 parent 54f2109 commit 2e0b8e7
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions Makefile.include
Expand Up @@ -131,21 +131,6 @@ ifdef PLATFORMAPPS
APPDS += $(PLATFORMAPPDS)
endif

### Verbosity control. Use make V=1 to get verbose builds.

CC_normal := $(CC)
AR_normal := $(AR)

CC_quiet = @echo " CC " $< && $(CC_normal)
AR_quiet = @echo " AR " $@ && $(AR_normal)

ifeq ($(V),1)
CC = $(CC_normal)
AR = $(AR_normal)
else
CC = $(CC_quiet)
AR = $(AR_quiet)
endif

### Forward comma-separated list of arbitrary defines to the compiler

Expand Down

0 comments on commit 2e0b8e7

Please sign in to comment.