summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorratijas <me@ratijas.tk>2020-11-26 13:51:39 +0300
committerGitHub <noreply@github.com>2020-11-26 13:51:39 +0300
commitecf1de25a4fcd5897a20f983f94b08823a55082e (patch)
tree0e1d9f7ad50cf85da3f53e0f2a8e198cf48b6cc9
parentff79e502adf8eeec0fa775087f42d9679b10c5eb (diff)
Makefile: optimize recursive invocation (#1127)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2ba7c76d..116ae41d 100644
--- a/Makefile
+++ b/Makefile
@@ -3,5 +3,5 @@ ZSH := $(shell command -v zsh 2> /dev/null)
all:
pkg:
- cd gitstatus && $(MAKE) pkg && cd ..
+ $(MAKE) -C gitstatus pkg
$(or $(ZSH),:) -fc 'for f in *.zsh-theme internal/*.zsh; do zcompile -R -- $$f.zwc $$f || exit; done'