mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
add 'minify' make target
This commit is contained in:
parent
05d71fe82c
commit
4bcc519547
1 changed files with 7 additions and 4 deletions
11
Makefile
11
Makefile
|
@ -2,10 +2,13 @@ ZSH := $(shell command -v zsh 2> /dev/null)
|
||||||
|
|
||||||
all:
|
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:
|
zwc:
|
||||||
$(MAKE) -C gitstatus zwc
|
$(MAKE) -C gitstatus zwc
|
||||||
$(or $(ZSH),:) -fc 'for f in *.zsh-theme internal/*.zsh; do zcompile -R -- $$f.zwc $$f || exit; done'
|
$(or $(ZSH),:) -fc 'for f in *.zsh-theme internal/*.zsh; do zcompile -R -- $$f.zwc $$f || exit; done'
|
||||||
|
|
||||||
|
minify:
|
||||||
|
$(MAKE) -C gitstatus minify
|
||||||
|
rm -rf -- .git .gitattributes .gitignore LICENSE Makefile README.md font.md powerlevel10k.png
|
||||||
|
|
||||||
|
pkg: zwc
|
||||||
|
$(MAKE) -C gitstatus pkg
|
||||||
|
|
Loading…
Reference in a new issue