From 635c49048ea261cf5b00e3dff8b4cef06e243b65 Mon Sep 17 00:00:00 2001 From: TheK4n Date: Wed, 22 Dec 2021 20:19:48 +0300 Subject: [PATCH] test makefile --- Makefile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 830c235..8451f39 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,16 @@ all: install +backup: + mv ~/.bashrc ~/.bashrc.bak || true + mv ~/.zshrc ~/.zshrc.bak || true + mv ~/.vimrc ~/.vimrc.bak || true + mv ~/.subbash ~/.subbash.bak || true + install: - ln -s $(PWD)/.subbash ~ - ln -s $(PWD)/.bashrc ~ - ln -s $(PWD)/.zshrc ~ + ln -s $(PWD)/.subbash ~ || true + ln -s $(PWD)/.bashrc ~ || true + ln -s $(PWD)/.zshrc ~ || true vim: ln -s $(PWD)/.vim ~