aboutsummaryrefslogtreecommitdiff
path: root/gitstatus/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'gitstatus/Makefile')
-rw-r--r--gitstatus/Makefile10
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)