-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·47 lines (34 loc) · 947 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
.PHONY: reload_shell install install_brew install_rosetta install_brew_bundle install_managers install_vscode_extensions setup_env setup_node setup_os backup uninstall
.ONESHELL:
install:
@${MAKE} install_xcode_devtools
@${MAKE} install_brew
@${MAKE} install_rosetta
@${MAKE} install_brew_bundle
@${MAKE} install_managers
@${MAKE} install_vscode_extensions
@${MAKE} setup_env
@${MAKE} setup_node
@${MAKE} setup_os
install_xcode_devtools:
@sh ./commands/install_xcode_devtools
install_brew:
@sh ./commands/install_brew
install_rosetta:
@sh ./commands/install_rosetta
install_brew_bundle:
@sh ./commands/install_brew_bundle
install_managers:
@sh ./commands/install_managers
install_vscode_extensions:
@sh ./commands/install_vscode_extensions
setup_env:
@sh ./commands/setup_env
setup_node:
@sh ./commands/setup_node
setup_os:
@sh ./commands/setup_os
backup:
@sh ./commands/backup
uninstall:
@sh ./commands/uninstall