diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-05-13 01:13:51 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-05-13 01:13:51 -0400 |
commit | e85a3cc110b0ffc1cd346a4792b5afa614dd21dd (patch) | |
tree | e37f955184207e63a7b15475be5059419efe3622 | |
parent | 71687834dba46b8a49eab18630dc6c335d53d219 (diff) |
GNUmakefile: force the sub-make to always run
-rw-r--r-- | GNUmakefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index b8bfc3528b..667391a879 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -11,3 +11,4 @@ $(target): @+$(MAKE) -f Makefile --no-builtin-rules --no-builtin-variables --warn-undefined-variables $(MAKECMDGOALS) $(or $(call rest,$(MAKECMDGOALS)),_$(target)): $(target) @: +.PHONY: $(sort $(target) _$(target) $(MAKECMDGOALS)) |