-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
64 lines (47 loc) · 840 Bytes
/
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
ifeq ($(wildcard cfg.mk),)
$(error Missing dotfiles config file 'cfg.mk', check examples in 'config/' folder)
endif
include cfg.mk
ALL_TARGETS =
.PHONY: all default
default: all
ifeq ($(BAT),1)
include bat/install.mk
endif
ifeq ($(BREW),1)
include brew/install.mk
endif
ifeq ($(FISH),1)
include fish/install.mk
endif
ifeq ($(GIT),1)
include git/install.mk
endif
ifeq ($(HASKELL),1)
include haskell/install.mk
endif
ifeq ($(NODE),1)
include node/install.mk
endif
ifeq ($(NVIM),1)
include nvim/install.mk
endif
ifeq ($(PYTHON),1)
include python/install.mk
endif
ifeq ($(RUST),1)
include rust/install.mk
endif
ifeq ($(SCALA),1)
include scala/install.mk
endif
ifeq ($(TERMINAL),1)
include terminal/install.mk
endif
ifeq ($(TMUX),1)
include tmux/install.mk
endif
ifeq ($(ZSH),1)
include zsh/install.mk
endif
all: $(ALL_TARGETS)