summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2016-11-17 15:32:44 -0800
committerFranck Cuny <franck.cuny@gmail.com>2016-11-17 15:32:44 -0800
commit0bda0c4cbf5e8e2e9fe2141290a544db306d607a (patch)
tree566f98a64e460e14003b7f84993c0a9594ae61fc /Makefile
parent[bash] Update the prompt. (diff)
downloademacs.d-0bda0c4cbf5e8e2e9fe2141290a544db306d607a.tar.gz
[Makefile] rewrite it, to install correctly the fonts.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile35
1 files changed, 23 insertions, 12 deletions
diff --git a/Makefile b/Makefile
index a65bdaf..0f1190d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,20 +1,20 @@
-INTO    = $(HOME)
+INTO      = $(HOME)
+FONTS_DIR = $(HOME)/Library/Fonts
 
+
+MYFONTS = $(wildcard fonts/*.ttf)
 INSTALL = \
-	  bashrc \
-	  aspell.en.pws \
-	  emacs.d \
-	  gitconfig \
-	  gitignore
+	aspell.en.pws \
+	bashrc \
+	emacs.d \
+	gitconfig \
+	gitignore
 
-git:
-	git config --local user.email "franck.cuny@gmail.com"
-	git config --local user.name "Franck Cuny"
 
 INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL))
+FONTS     = $(patsubst fonts/%.ttf,$(FONTS_DIR)/%.ttf,$(MYFONTS))
 LN        = @ln -sf
 
-install: $(INSTALLED) $(HOME)/src $(HOME)/.ssh/authorized_keys git
 
 $(INTO)/.% : %
 	@[ ! -e $@ ] || [ -h $@ ] || mv -f $@ $@.bak
@@ -24,14 +24,25 @@ $(HOME)/.ssh/authorized_keys:
 	@curl https://github.com/franckcuny.keys -o $(HOME)/.ssh/authorized_keys
 
 $(HOME)/src:
-	mkdir -p $(HOME)/src
+	@mkdir -p $(HOME)/src
+
+$(FONTS_DIR)/%.ttf: fonts/%.ttf
+	@cp $< $@
+
+.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
 	@find ~/bin -maxdepth 1 -name '.*' -type l -exec test ! -e {} \; -print
 
+.PHONY: clean-dead
 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
+.PHONY: install
+install: $(INSTALLED) $(HOME)/src $(HOME)/.ssh/authorized_keys git $(FONTS)