From 9353c33abad9a486c67ea8bc82e06b37d3b36a92 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 19 Jan 2019 10:39:46 -0800 Subject: clean up. Removed scripts and some configs, they will be in their own repo. --- Makefile | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e71e986 --- /dev/null +++ b/Makefile @@ -0,0 +1,41 @@ +INTO = $(HOME) + + +INSTALL = \ + agignore \ + aspell.en.pws \ + bashrc \ + ctags \ + emacs.d \ + gitconfig \ + gitignore + + +INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL)) +LN = @ln -sf + +$(INTO)/.% : % + @[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak + $(LN) $(PWD)/$< $@ + +$(HOME)/.ssh/authorized_keys: + @curl https://github.com/fcuny.keys -o $(HOME)/.ssh/authorized_keys + +$(HOME)/workspace: + @mkdir -p $(HOME)/workspace/ + +.PHONY: git +git: + @git config --local user.email "franck.cuny@gmail.com" + @git config --local user.name "Franck Cuny" + +.PHONY: check-dead +check-dead: + @find ~ -maxdepth 1 -name '.*' -type l -exec test ! -e {} \; -print + +.PHONY: clean-dead +clean-dead: + @find ~ -maxdepth 1 -name '.*' -type l -exec test ! -e {} \; -delete + +.PHONY: install +install: $(INSTALLED) $(HOME)/workspace $(HOME)/.ssh/authorized_keys -- cgit 1.4.1