dotfiles/Makefile
Sanchayan Maity 7200bbece7 Switch to using stow for dotfiles management
Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
2019-12-31 14:18:38 +05:30

26 lines
440 B
Makefile

all:
@echo ""
@echo "usage:"
@echo ""
@echo "* make dotfiles -- to install dotfiles"
@echo "* make clean -- to clean up dotfiles"
@echo "* make update -- get latest version from github, install manually"
@echo ""
linux:
mkdir -p ~/.config
stow gitconfig
stow gnupg
stow imapfilter
stow mbsyncrc
stow msmtprc
stow mutt
stow notmuch-config
stow nvim
stow tmux
update:
git pull --verbose
.PHONY : all dotfiles clean