make build process silent

This commit is contained in:
Steffen Jaeckel 2016-01-19 00:38:05 +01:00
parent de15a6fad9
commit 6905e4113f
2 changed files with 9 additions and 3 deletions

View File

@ -223,8 +223,14 @@ testprof/$(LIBTEST):
cd testprof ; CFLAGS="$(CFLAGS)" LIBTEST_S=$(LIBTEST_S) CC="$(CC)" LD="$(LD)" AR="$(AR)" RANLIB="$(RANLIB)" $(MAKE)
$(LIBNAME): $(OBJECTS)
$(AR) $(ARFLAGS) $@ $(OBJECTS)
$(RANLIB) $@
ifneq ($V,1)
@echo " * ${AR} $@"
endif
${silent} $(AR) $(ARFLAGS) $@ $(OBJECTS)
ifneq ($V,1)
@echo " * ${RANLIB} $@"
endif
${silent} $(RANLIB) $@
#This rule makes the hash program included with libtomcrypt
hashsum: library $(HASHOBJECTS)

View File

@ -15,7 +15,7 @@ AR:=$(PREFIX)ar
# Archiver [makes .a files]
#AR=ar
#ARFLAGS=r
ARFLAGS:=r
ifndef MAKE
MAKE:=make