aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 31bfceff459e529cce272b37bcce02ca1d3a9ba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
all_files := basics emacs spacemacs doom-emacs git i3wm bspwm vim nvim tmux x zsh fish
simple_files := emacs spacemacs doom-emacs vim x fish


.PHONY: $(all_files) zplug


$(simple_files):
	stow -t ~ $@

# special install rules
basics: yay
	yay -Q - < meta/basic_deps || yay -S --needed - < meta/basic_deps
	stow -t ~ $@

git:
	pacman -Q git || sudo pacman -S git
	stow -t ~ $@

i3wm: yay
	pacman -Q - < meta/i3wm_deps || yay -S --needed - < meta/i3wm_deps
	stow -t ~ $@

bspwm: yay
	pacman -Q - < meta/bspwm_deps || yay -S --needed - < meta/bspwm_deps
	stow -t ~ $@

yay: git
	pacman -Q yay || (git clone aur:yay && pushd yay && makepkg -si && popd)

tmux: yay
	pacman -Q - < meta/powerline_deps || yay -S --needed - < meta/powerline_deps
	stow -t ~ $@

nvim:
	curl -fLo nvim/.config/nvim/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
	stow -t ~ $@
zsh: zplug
	stow -t ~ $@

zplug:
	curl -sL --proto-redir -all,https https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh



$(addprefix uninstall_,$(all_files)):
	stow -Dt ~ $(subst uninstall_,,$@)

uninstall_%:
	stow -Dt ~ $*