summary refs log tree commit diff
path: root/Makefile
blob: 0f1190d96c24f06a2047ea27da58a67069ea8d8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
INTO      = $(HOME)
FONTS_DIR = $(HOME)/Library/Fonts


MYFONTS = $(wildcard fonts/*.ttf)
INSTALL = \
	aspell.en.pws \
	bashrc \
	emacs.d \
	gitconfig \
	gitignore


INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL))
FONTS     = $(patsubst fonts/%.ttf,$(FONTS_DIR)/%.ttf,$(MYFONTS))
LN        = @ln -sf


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

$(HOME)/.ssh/authorized_keys:
	@curl https://github.com/franckcuny.keys -o $(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"
	@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
install: $(INSTALLED) $(HOME)/src $(HOME)/.ssh/authorized_keys git $(FONTS)