forked from jessfraz/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
84 lines (76 loc) · 3.22 KB
/
Makefile
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
.PHONY: all
all: bin usr dotfiles etc ## Installs the bin and etc directory files and the dotfiles.
.PHONY: bin
bin: ## Installs the bin directory files.
# add aliases for things in bin
for file in $(shell find $(CURDIR)/bin -type f -not -name "*-backlight" -not -name ".*.swp"); do \
f=$$(basename $$file); \
sudo ln -sf $$file /usr/local/bin/$$f; \
done
.PHONY: dotfiles
dotfiles: ## Installs the dotfiles.
# add aliases for dotfiles
for file in $(shell find $(CURDIR) -name ".*" -not -name ".gitignore" -not -name ".travis.yml" -not -name ".git" -not -name ".github" -not -name ".*.swp" -not -name ".gnupg" -not -name ".git-completion.bash"); do \
f=$$(basename $$file); \
ln -sfn $$file $(HOME)/$$f; \
done; \
gpg --list-keys || true;
ln -sfn $(CURDIR)/.gnupg/gpg.conf $(HOME)/.gnupg/gpg.conf;
ln -sfn $(CURDIR)/.gnupg/gpg-agent.conf $(HOME)/.gnupg/gpg-agent.conf;
ln -fn $(CURDIR)/gitignore $(HOME)/.gitignore;
git update-index --skip-worktree $(CURDIR)/.gitconfig;
mkdir -p $(HOME)/.config;
ln -snf $(CURDIR)/.i3 $(HOME)/.config/sway;
mkdir -p $(HOME)/.local/share;
ln -snf $(CURDIR)/.fonts $(HOME)/.local/share/fonts;
ln -snf $(CURDIR)/.bash_profile $(HOME)/.profile;
if [ -f /usr/local/bin/pinentry ]; then \
sudo ln -snf /usr/bin/pinentry /usr/local/bin/pinentry; \
fi;
mkdir -p $(HOME)/Pictures;
ln -snf $(CURDIR)/central-park.jpg $(HOME)/Pictures/central-park.jpg;
mkdir -p $(HOME)/.config/fontconfig;
ln -snf $(CURDIR)/.config/fontconfig/fontconfig.conf $(HOME)/.config/fontconfig/fontconfig.conf;
xrdb -merge $(HOME)/.Xdefaults || true
xrdb -merge $(HOME)/.Xresources || true
fc-cache -f -v || true
ln -snf /Library/Developer/CommandLineTools/usr/share/git-core/git-completion.bash $(HOME)/.git-completion.bash
.PHONY: etc
etc: ## Installs the etc directory files.
sudo mkdir -p /etc/docker/seccomp
for file in $(shell find $(CURDIR)/etc -type f -not -name ".*.swp"); do \
f=$$(echo $$file | sed -e 's|$(CURDIR)||'); \
sudo mkdir -p $$(dirname $$f); \
sudo ln -f $$file $$f; \
done
systemctl --user daemon-reload || true
sudo systemctl daemon-reload
sudo systemctl enable systemd-networkd systemd-resolved
sudo systemctl start systemd-networkd systemd-resolved
sudo ln -snf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
.PHONY: usr
usr: ## Installs the usr directory files.
for file in $(shell find $(CURDIR)/usr -type f -not -name ".*.swp"); do \
f=$$(echo $$file | sed -e 's|$(CURDIR)||'); \
sudo mkdir -p $$(dirname $$f); \
sudo ln -f $$file $$f; \
done
.PHONY: test
test: shellcheck ## Runs all the tests on the files in the repository.
# if this session isn't interactive, then we don't want to allocate a
# TTY, which would fail, but if it is interactive, we do want to attach
# so that the user can send e.g. ^C through.
INTERACTIVE := $(shell [ -t 0 ] && echo 1 || echo 0)
ifeq ($(INTERACTIVE), 1)
DOCKER_FLAGS += -t
endif
.PHONY: shellcheck
shellcheck: ## Runs the shellcheck tests on the scripts.
docker run --rm -i $(DOCKER_FLAGS) \
--name df-shellcheck \
-v $(CURDIR):/usr/src:ro \
--workdir /usr/src \
r.j3ss.co/shellcheck ./test.sh
.PHONY: help
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'