replace init.sh with a makefile. todo: clean

This commit is contained in:
Matthew Jensen 2021-07-30 12:34:38 -07:00
parent 1f4270151c
commit c44d4a20ec
2 changed files with 10 additions and 12 deletions

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
FILES:=.vimrc .gitconfig .bash_profile
all:$(FILES)
source ${HOME}/.bash_profile
$(FILES):
cp -rf dotfiles/$@ ${HOME}/$@
clean:
@echo "clean: idk yet.\nTODO: default config swap\n- .git-config.sample.\n- .debian_bash_profile.sample\n- .vimrc.sample?"

12
init.sh
View File

@ -1,12 +0,0 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cp -rf $DIR/dotfiles/.vimrc $HOME/.vimrc
echo ".vimrc copied"
cp $DIR/dotfiles/.gitconfig $HOME/.gitconfig
echo ".gitconfig copied"
cp $DIR/dotfiles/.bash_profile $HOME/.bash_profile
echo ".bash_profile copied"
source $HOME/.bash_profile