summaryrefslogblamecommitdiff
path: root/Makefile
blob: af15df761ad8c3bad276f24f2e01023233532d0e (plain) (tree)
1
2
3
4
5
6
7
8
9


                 
                   
                         
                   

                     
                     
                    
               

    
                                                            




                                                  
                                                                              





                                                    
                                                                                






                            








                                                                                
INTO    = $(HOME)

INSTALL = \
	  aliases \
	  aspell.en.pws \
	  emacs.d \
	  gitconfig \
	  gitignore \
	  tmux.conf \
	  zprofile \
	  zshrc

git:
	git config --local user.email "franckcuny@gmail.com"
	git config --local user.name "Franck Cuny"

INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL))
LN        = @ln -sf

install: $(INSTALLED) $(HOME)/bin $(HOME)/src $(HOME)/.ssh/authorized_keys git

$(INTO)/.% : %
	@[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak
	$(LN) $(PWD)/$< $@

$(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

check-dead:
	@find ~ -maxdepth 1 -name '.*' -type l -exec test ! -e {} \; -print
	@find ~/bin -maxdepth 1 -name '.*' -type l -exec test ! -e {} \; -print

clean-dead:
	@find ~ -maxdepth 1 -name '.*' -type l -exec test ! -e {} \; -delete
	@find ~/bin -maxdepth 1 -name '.*' -type l -exec test ! -e {} \; -delete

.PHONY: install check-dead clean-dead git