summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-03-05 00:20:47 -0800
committerBen Smith <binji@chromium.org>2016-03-12 20:44:08 -0800
commit2d129651a2a813c4a04ea014b52ac6f02fd68828 (patch)
tree15fa0a7964de44b6d617abc176ab3422abad3186 /Makefile
parent0e76a6403f1949326abbe99374acf546da2801d7 (diff)
downloadwabt-2d129651a2a813c4a04ea014b52ac6f02fd68828.tar.gz
wabt-2d129651a2a813c4a04ea014b52ac6f02fd68828.tar.bz2
wabt-2d129651a2a813c4a04ea014b52ac6f02fd68828.zip
make --no-print-directory is less verbose
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 98f4f42f..4c5b6ae7 100644
--- a/Makefile
+++ b/Makefile
@@ -64,13 +64,13 @@ endef
define EXE
.PHONY: $$($(1)_$(2)_PREFIX)-$(3)$$($(4)_SUFFIX)
$$($(1)_$(2)_PREFIX)-$(3)$$($(4)_SUFFIX): $$($(1)_$(2)_DIR)/Makefile
- $$(MAKE) -C $$($(1)_$(2)_DIR) $(3)$$($(4)_SUFFIX)
+ $$(MAKE) --no-print-directory -C $$($(1)_$(2)_DIR) $(3)$$($(4)_SUFFIX)
endef
define TEST
.PHONY: test-$$($(1)_$(2)_PREFIX)$$($(3)_SUFFIX)
test-$$($(1)_$(2)_PREFIX)$$($(3)_SUFFIX): $$($(1)_$(2)_DIR)/Makefile
- $$(MAKE) -C $$($(1)_$(2)_DIR) test$$($(3)_SUFFIX)
+ $$(MAKE) --no-print-directory -C $$($(1)_$(2)_DIR) test$$($(3)_SUFFIX)
endef
.PHONY: all