blob: 116ae41da94adaea53713b9edd602076a593c782 (
plain) (
blame)
1
2
3
4
5
6
7
|
ZSH := $(shell command -v zsh 2> /dev/null)
all:
pkg:
$(MAKE) -C gitstatus pkg
$(or $(ZSH),:) -fc 'for f in *.zsh-theme internal/*.zsh; do zcompile -R -- $$f.zwc $$f || exit; done'
|