mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2025-01-29 21:03:51 +02:00
12 lines
320 B
Makefile
12 lines
320 B
Makefile
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'
|
|
|
|
zwc:
|
|
$(MAKE) -C gitstatus zwc
|
|
$(or $(ZSH),:) -fc 'for f in *.zsh-theme internal/*.zsh; do zcompile -R -- $$f.zwc $$f || exit; done'
|