diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2021-07-02 15:28:20 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2021-07-02 15:28:20 +0300 |
commit | 7f4a2741b541b0396526765b35e0c14b8a8284af (patch) | |
tree | de724a655160ee316029f4a8ace01dd175c62db7 /gitstatus | |
parent | f4668bc1944f98d6ec64f2d9079952050eecaf9a (diff) | |
parent | 63a009669a7ed6aa6040f0af008adfb62829188c (diff) |
Merge commit '63a009669a7ed6aa6040f0af008adfb62829188c'
Diffstat (limited to 'gitstatus')
-rw-r--r-- | gitstatus/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gitstatus/Makefile b/gitstatus/Makefile index b3001c34..6040cbb1 100644 --- a/gitstatus/Makefile +++ b/gitstatus/Makefile @@ -34,11 +34,13 @@ $(OBJDIR)/%.o: src/%.cc Makefile build.info | $(OBJDIR) clean: rm -rf -- $(OBJDIR) -pkg: - GITSTATUS_DAEMON= GITSTATUS_CACHE_DIR=$(shell pwd)/usrbin ./install -f - $(or $(ZSH),:) -fc 'for f in *.zsh install; do zcompile -R -- $$f.zwc $$f || exit; done' - zwc: $(or $(ZSH),:) -fc 'for f in *.zsh install; do zcompile -R -- $$f.zwc $$f || exit; done' +minify: + rm -rf -- .git .vscode deps docs src usrbin/.gitkeep .clang-format .gitattributes .gitignore LICENSE Makefile README.md build mbuild + +pkg: zwc minify + GITSTATUS_DAEMON= GITSTATUS_CACHE_DIR=$(shell pwd)/usrbin ./install -f + -include $(OBJS:.o=.dep) |