mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 08:26:42 +00:00
14 lines
367 B
Makefile
14 lines
367 B
Makefile
.PHONY: backup-zplug
|
|
backup-zplug: \
|
|
zsh/zplug-$(shell date "+%Y-%m-%d").tar.bz2
|
|
|
|
.PHONY: backup-tmux-plugins
|
|
backup-tmux-plugins: \
|
|
tmux/tmux-plugins-$(shell date "+%Y-%m-%d").tar.bz2
|
|
|
|
zsh/zplug-%.tar.bz2: zsh/zplug
|
|
cd zsh && tar -cjf "$(shell basename "$@")" zplug
|
|
|
|
tmux/tmux-plugins-%.tar.bz2: tmux/plugins
|
|
cd tmux && tar -cjf "$(shell basename "$@")" plugins
|