From 187b854fd74bdab9e800998d0efe91681eb1f4b3 Mon Sep 17 00:00:00 2001 From: Joel Grunbaum <joelgrun@gmail.com> Date: Wed, 15 Dec 2021 06:29:10 +0000 Subject: [PATCH] dynamically set vim path for EDITOR --- Makefile | 17 +++++++++++++++-- 1 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c2c08a7..1b4ff23 100644 --- a/Makefile +++ b/Makefile @@ -20,9 +20,10 @@ SHELLS = bash zsh all-shells UTILS = emacs git aspell FUN = mpd ncmpcpp mailcap rtv -DESKTOP = libinput-gestures wallpaper-reddit +DESKTOP = libinput-gestures reddit-wallpaper-fetcher +ARCH = paru -CONFIGS = $(SHELLS) $(UTILS) $(FUN) $(DESKTOP) +CONFIGS = $(SHELLS) $(UTILS) $(FUN) $(DESKTOP) $(ARCH) all: help @@ -37,6 +38,12 @@ .PHONY: emacs emacs: git submodule update --init + $(STOW) -t $(HOME) $@ + +.PHONY: zsh +zsh: + mkdir -p ~/.zsh + [ -d "${HOME}/.zsh/antigen" ] || git clone https://github.com/zsh-users/antigen.git ~/.zsh/antigen $(STOW) -t $(HOME) $@ .PHONY: termux @@ -71,6 +78,12 @@ .PHONY: desktop-uninstall desktop-uninstall: $(DESKTOP:=-del) +.PHONY: arch +arch: $(ARCH) + +.PHONY: arch-uninstall +arch-uninstall: $(ARCH:=-del) + .PHONY: $(INSTALL_TARGETS) $(INSTALL_TARGETS): $(CONFIGS) -- Gitblit v1.9.3