From 96aec3b7ba8357492c7e6fbe54aee4be0dc3b4a0 Mon Sep 17 00:00:00 2001 From: Peter Son Struschka Date: Mon, 3 Sep 2018 20:46:00 +0700 Subject: Added basic Makefile for installation with stow --- Makefile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..20c68b0 --- /dev/null +++ b/Makefile @@ -0,0 +1,33 @@ +all: emacs git i3wm vim x zsh + +clean: uninstall_emacs uninstall_git \ + uninstall_i3wm uninstall_vim \ + uninstall_x uninstall_zsh + +.PHONY: emacs git i3wm vim x zsh + +emacs: + stow -t ~ emacs +git: + stow -t ~ git +i3wm: + stow -t ~ i3wm +vim: + stow -t ~ vim +x: + stow -t ~ x +zsh: + stow -t ~ zsh + +uninstall_emacs: + stow -Dt ~ emacs +uninstall_git: + stow -Dt ~ git +uninstall_i3wm: + stow -Dt ~ i3wm +uninstall_vim: + stow -Dt ~ vim +uninstall_x: + stow -Dt ~ x +uninstall_zsh: + stow -Dt ~ zsh -- cgit v1.2.3