summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2017-02-03 02:44:33 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2017-02-03 03:19:23 -0500
commit374311b891c587bbeb554057e04b55f69073d1af (patch)
tree9903718c323bfe42bba8e3a6a48d5629029b286e /GNUmakefile
parent56689b495618d3e8326b0a6c79f15aaf2b029d9c (diff)
Less magic in the build system; don't hide the go workspace.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index cc5a40d..8b86fb9 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -4,10 +4,9 @@
# Most of the complexity is dancing around to avoid having any
# possibly conflicting identifiers.
-MAKEFLAGS += --no-print-directory
rest = $(wordlist 2,$(words $1),$1)
target = $(or $(firstword $(MAKECMDGOALS)),default)
$(or $(call rest,$(MAKECMDGOALS)),_$(target)): $(target)
@:
$(target):
- @+$(MAKE) -f Makefile --no-builtin-rules --no-builtin-variables $(MAKECMDGOALS)
+ @+$(MAKE) --no-print-directory -f Makefile --no-builtin-rules --no-builtin-variables $(MAKECMDGOALS)