26 lines
440 B
Makefile
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
|