-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
53 lines (47 loc) · 1.34 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
# eventually there might be more than one target...
.PHONY: all
all: user-bin dotfiles
# most of this is shamelessly stolen
# src: https://github.com/jessfraz/dotfiles/blob/master/Makefile
.PHONY: user-bin
user-bin: ## Installs the bin directory files.
# add aliases for things in bin
if [ ! -d $$HOME/bin ]; then \
mkdir -p $$HOME/bin; \
fi; \
for file in $(shell find $(CURDIR)/bin \
-type f \
-not -name "*-backlight" \
-not -name ".*.swp"); do \
f=$$(basename $$file); \
ln -sfn $$file $$HOME/bin/$$f; \
done; \
.PHONY: dotfiles
dotfiles:
# add aliases for dotfiles
for file in $(shell find $(CURDIR) \
-name ".*" \
-not -name ".gitignore" \
-not -name ".travis.yml" \
-not -name ".git" \
-not -name ".*.swp" \
-not -name ".gnupg"); do \
f=$$(basename $$file); \
ln -sfn $$file $$HOME/$$f; \
done; \
.PHONY: test
test: shellcheck
# 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:
docker run --rm -i $(DOCKER_FLAGS) \
--name df-shellcheck \
-v $(CURDIR):/usr/src:ro \
--workdir /usr/src \
r.j3ss.co/shellcheck ./test.sh