Files
dotfiles/Makefile

15 lines
314 B
Makefile

.PHONY: laptop work clean
laptop:
stow shared laptop
work:
stow shared work
clean:
stow -D shared laptop work 2>/dev/null; \
find $(HOME)/.config/nvim $(HOME)/.config/emacs $(HOME)/.config/tmux \
$(HOME)/.config/ghostty $(HOME)/.config/ranger \
-maxdepth 4 -xtype l -delete 2>/dev/null; \
true