-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
46 lines (35 loc) · 945 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
INSTALL := install_omz install_development install_zlua install_vim \
install_docker install_ranger install_neovim
.PHONY: download_config dependency clean post install_all $(INSTALL)
download_config:
git submodule init
git submodule update
install_software:
bash installation/software.sh
install_development:
bash installation/go.sh
bash installation/nodejs.sh
bash installation/python.sh
install_docker:
#bash installation/docker.sh
echo docker
install_neovim:
#bash installation/neovim.sh
echo neovim
install_omz:
bash installation/omz.sh
install_ranger:
bash installation/ranger.sh
install_vim:
bash installation/vim.sh
install_zlua:
bash installation/z_lua.sh
cp config/zsh/z_lua.zsh $(HOME)/.config/zsh
install_all: dependency
@-mkdir -p $(GITHUB_PATH) $(CONFIG_PATH) $(DEV_PATH)
@make download_config
@make $(INSTALL)
@make post
clean:
@echo clean...
rm -rf $(GITHUB_PATH) $(CONFIG_PATH) $(DEV_PATH)