benchmarks, utils: add verbosity to installation rule

This commit is contained in:
Philippe Gerum 2019-08-08 11:42:53 +02:00
parent 49fc9571a2
commit 26f0ed1a4d
2 changed files with 3 additions and 3 deletions

View File

@ -22,9 +22,9 @@ override LDFLAGS := $(UTIL_LDFLAGS) $(LDFLAGS)
all: output-Makefile $(TARGETS)
install: all
$(Q)for bin in $(BINARIES); do \
$(call inst-cmd,benchmarks,$(Q)for bin in $(BINARIES); do \
$(INSTALL) -D $(O_DIR)/$$bin $(DESTDIR)/$(bindir)/$$bin; \
done
done)
clean clobber mrproper: output-Makefile
$(Q)$(RM) -f $(TARGETS) $(DEPFILES)

View File

@ -21,7 +21,7 @@ install: all
$(call inst-cmd,utilities, \
for bin in $(COMMANDS); do \
$(INSTALL) -D $(O_DIR)/$$bin $(DESTDIR)/$(bindir)/$$bin; done)
$(call inst-cmd,helpers, \
$(call inst-cmd,command-helpers, \
for hlp in $(HELPER_SCRIPTS); do \
name=evl-$$(basename $$hlp .evl); \
$(INSTALL) -D $$hlp $(DESTDIR)/$(libexecdir)/$$name; done; \