make build process silent
This commit is contained in:
parent
de15a6fad9
commit
6905e4113f
10
makefile
10
makefile
@ -223,8 +223,14 @@ testprof/$(LIBTEST):
|
|||||||
cd testprof ; CFLAGS="$(CFLAGS)" LIBTEST_S=$(LIBTEST_S) CC="$(CC)" LD="$(LD)" AR="$(AR)" RANLIB="$(RANLIB)" $(MAKE)
|
cd testprof ; CFLAGS="$(CFLAGS)" LIBTEST_S=$(LIBTEST_S) CC="$(CC)" LD="$(LD)" AR="$(AR)" RANLIB="$(RANLIB)" $(MAKE)
|
||||||
|
|
||||||
$(LIBNAME): $(OBJECTS)
|
$(LIBNAME): $(OBJECTS)
|
||||||
$(AR) $(ARFLAGS) $@ $(OBJECTS)
|
ifneq ($V,1)
|
||||||
$(RANLIB) $@
|
@echo " * ${AR} $@"
|
||||||
|
endif
|
||||||
|
${silent} $(AR) $(ARFLAGS) $@ $(OBJECTS)
|
||||||
|
ifneq ($V,1)
|
||||||
|
@echo " * ${RANLIB} $@"
|
||||||
|
endif
|
||||||
|
${silent} $(RANLIB) $@
|
||||||
|
|
||||||
#This rule makes the hash program included with libtomcrypt
|
#This rule makes the hash program included with libtomcrypt
|
||||||
hashsum: library $(HASHOBJECTS)
|
hashsum: library $(HASHOBJECTS)
|
||||||
|
@ -15,7 +15,7 @@ AR:=$(PREFIX)ar
|
|||||||
|
|
||||||
# Archiver [makes .a files]
|
# Archiver [makes .a files]
|
||||||
#AR=ar
|
#AR=ar
|
||||||
#ARFLAGS=r
|
ARFLAGS:=r
|
||||||
|
|
||||||
ifndef MAKE
|
ifndef MAKE
|
||||||
MAKE:=make
|
MAKE:=make
|
||||||
|
Loading…
x
Reference in New Issue
Block a user