1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-11-22 14:04:59 +02:00

tools/Makefile.common: added quiet compilation

This commit is contained in:
Werner Almesberger 2010-09-09 17:33:38 -03:00
parent 9162689d3e
commit be624169a9

View File

@ -27,6 +27,18 @@ LDLIBS_ben =
MACROS_host = -DHAVE_USB
MACROS_ben = -DHAVE_USD
CC = $(CC_$(TARGET))
CC_normal := $(CC_$(TARGET))
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
CFLAGS += -I../../atrf/fw/include -I../include $(MACROS_$(TARGET))
LDLIBS = $(LDLIBS_$(TARGET)) -L../lib -latspi