From b4cf74f6f60ab3aa17002ca746211284783c1854 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Thu, 15 Dec 2016 08:31:48 -0800 Subject: [Makefile] Don't install fonts and vim. --- Makefile | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 3a5ca3d..c2b42f8 100644 --- a/Makefile +++ b/Makefile @@ -1,19 +1,15 @@ INTO = $(HOME) -FONTS_DIR = $(HOME)/Library/Fonts -MYFONTS = $(wildcard fonts/*.ttf) INSTALL = \ aspell.en.pws \ bashrc \ emacs.d \ gitconfig \ gitignore \ - tmux.conf \ - vimrc + tmux.conf INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL)) -FONTS = $(patsubst fonts/%.ttf,$(FONTS_DIR)/%.ttf,$(MYFONTS)) LN = @ln -sf $(INTO)/.% : % @@ -26,9 +22,6 @@ $(HOME)/.ssh/authorized_keys: $(HOME)/src: @mkdir -p $(HOME)/src -$(FONTS_DIR)/%.ttf: fonts/%.ttf - @cp $< $@ - .PHONY: git git: @git config --local user.email "franck.cuny@gmail.com" @@ -45,4 +38,4 @@ clean-dead: @find ~/bin -maxdepth 1 -name '.*' -type l -exec test ! -e {} \; -delete .PHONY: install -install: $(INSTALLED) $(HOME)/src $(HOME)/.ssh/authorized_keys git $(FONTS) +install: $(INSTALLED) $(HOME)/src $(HOME)/.ssh/authorized_keys git -- cgit 1.4.1