diff options
author | ratijas <me@ratijas.tk> | 2020-11-26 13:51:39 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-26 13:51:39 +0300 |
commit | ecf1de25a4fcd5897a20f983f94b08823a55082e (patch) | |
tree | 0e1d9f7ad50cf85da3f53e0f2a8e198cf48b6cc9 /Makefile | |
parent | ff79e502adf8eeec0fa775087f42d9679b10c5eb (diff) |
Makefile: optimize recursive invocation (#1127)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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' |