summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorZachIR <zachir@zdx-raina>2023-07-26 10:34:54 -0500
committerZachIR <zachir@zdx-raina>2023-07-26 10:34:54 -0500
commit2666a2d597f5fb4222142a5ce147546cf588887a (patch)
tree6c1daf998a3d5e9efc9e3dfa3f38a001c98447b3 /Makefile
parentc2fd18073aa3dce8d34a39f24634c39d3fcf0681 (diff)
Use shell agnostic profile and zshrcrai-master
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index dcc13b8..dedeb57 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,11 @@
VIM := $(shell command -v vim 2>/dev/null)
NVIM := $(shell command -v nvim 2>/dev/null)
ZCONFS := zsh/.zshenv
+SCONFS := sh/profile
all:
-install: install-zshconfigs vimplug-vim vimplug-nvim
+install: install-zshconfigs install-shconfigs vimplug-vim vimplug-nvim
install-zshconfigs: $(ZCONFS)
@echo "Installing zsh conf files..."
@@ -12,6 +13,12 @@ install-zshconfigs: $(ZCONFS)
@ln -sf `pwd`/zsh/.zshenv ~/.zshenv
@echo "Done."
+install-shconfigs: $(SCONFS)
+ @echo "Installing sh conf files..."
+ @echo ".profile..."
+ @ln -sf `pwd`/sh/profile ~/.profile
+ @echo "Done."
+
vimplug-vim: installers/vimplug_vim.sh
ifdef VIM
@echo "Installing vim-plug for vim..."