-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
58 lines (39 loc) · 865 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
.PHONY: config install deploy
all: config install deploy
deploy: install
gh auth login
gh config set editor nvim
# Install standard packages listed below
install: tmux nvim fzf vimplug gh-cli pip-utils
config:
./config/install.sh
tmux:
./install/tmux/install.sh
nvim:
./install/nvim/install.sh
gh-cli:
./install/gh-cli/install.sh
vimplug:
./install/vimplug/install.sh
fzf:
./install/fzf/install.sh
pip-utils:
./install/pip-utils/install.sh
config-ssh-server:
./system/setup.sh
./config/register_sshkey.sh
# Install Optional packages listed below
install-optional: ros2 vscode docker chrome
ros2:
./install/ros2/install.sh
vscode:
./install/vscode/install.sh
docker:
./install/docker/install.sh
chrome:
./install/chrome/install.sh
groot:
./install/groot/install.sh
# Not Installed by default
openocd:
./install/openocd/install.sh