diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile b/Makefile index 88cda5b..a65bdaf 100644 --- a/Makefile +++ b/Makefile @@ -5,8 +5,7 @@ INSTALL = \ aspell.en.pws \ emacs.d \ gitconfig \ - gitignore \ - tmux.conf + gitignore git: git config --local user.email "franck.cuny@gmail.com" @@ -15,7 +14,7 @@ git: INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL)) LN = @ln -sf -install: $(INSTALLED) $(HOME)/bin $(HOME)/src $(HOME)/.ssh/authorized_keys git +install: $(INSTALLED) $(HOME)/src $(HOME)/.ssh/authorized_keys git $(INTO)/.% : % @[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak @@ -24,9 +23,6 @@ $(INTO)/.% : % $(HOME)/.ssh/authorized_keys: @curl https://github.com/franckcuny.keys -o $(HOME)/.ssh/authorized_keys -$(HOME)/bin: - mkdir -p $(HOME)/bin - $(HOME)/src: mkdir -p $(HOME)/src |