diff options
author | Ben Smith <binji@chromium.org> | 2016-03-05 00:20:47 -0800 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2016-03-12 20:44:08 -0800 |
commit | 2d129651a2a813c4a04ea014b52ac6f02fd68828 (patch) | |
tree | 15fa0a7964de44b6d617abc176ab3422abad3186 /Makefile | |
parent | 0e76a6403f1949326abbe99374acf546da2801d7 (diff) | |
download | wabt-2d129651a2a813c4a04ea014b52ac6f02fd68828.tar.gz wabt-2d129651a2a813c4a04ea014b52ac6f02fd68828.tar.bz2 wabt-2d129651a2a813c4a04ea014b52ac6f02fd68828.zip |
make --no-print-directory is less verbose
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |