diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-12-15 08:31:48 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-12-15 08:31:48 -0800 |
commit | b4cf74f6f60ab3aa17002ca746211284783c1854 (patch) | |
tree | 23ac052ea9d421ad83c08863f8788ef3400dc781 /Makefile | |
parent | [bash] set editor back to Emacs (diff) | |
download | emacs.d-b4cf74f6f60ab3aa17002ca746211284783c1854.tar.gz |
[Makefile] Don't install fonts and vim.
Diffstat (limited to '')
-rw-r--r-- | Makefile | 11 |
1 files 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 |