Browse Source

[build] Display commands for dependency generation when building with V=1

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Anton D. Kachalov 12 years ago
parent
commit
34a637f46f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/Makefile.housekeeping

+ 1
- 1
src/Makefile.housekeeping View File

663
 define deps_template
663
 define deps_template
664
 	@$(ECHO) "  [DEPS] $(1)"
664
 	@$(ECHO) "  [DEPS] $(1)"
665
 	@$(MKDIR) -p $(BIN)/deps/$(dir $(1))
665
 	@$(MKDIR) -p $(BIN)/deps/$(dir $(1))
666
-	@$(CPP) $(CFLAGS) $(CFLAGS_$(2)) $(CFLAGS_$(3)) -DOBJECT=$(3) \
666
+	$(Q)$(CPP) $(CFLAGS) $(CFLAGS_$(2)) $(CFLAGS_$(3)) -DOBJECT=$(3) \
667
 		-Wno-error -M $(1) -MG -MP | \
667
 		-Wno-error -M $(1) -MG -MP | \
668
 		sed 's/\.o\s*:/_DEPS +=/' > $(BIN)/deps/$(1).d
668
 		sed 's/\.o\s*:/_DEPS +=/' > $(BIN)/deps/$(1).d
669
 endef
669
 endef

Loading…
Cancel
Save