-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
44 lines (34 loc) · 1.01 KB
/
Makefile
File metadata and controls
44 lines (34 loc) · 1.01 KB
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
.PHONY: install-local-bin
install-local-bin:
./installers/install-local-bin.sh
.PHONY: install-configs
install-configs:
./installers/install-configs.sh
.PHONY: install-skills
install-skills:
./installers/install-skills.sh
.PHONY: install-azure-capacity-finder
install-azure-capacity-finder:
cd azure-capacity-finder && go install .
.PHONY: install-clawbox
install-clawbox:
cd clawbox && go install .
.PHONY: test
test:
cd clawbox && $(MAKE) test
.PHONY: install-all
install-all:
./installers/install-all.sh
.PHONY: pull-master
pull-master:
git pull --ff origin master
if [ -d dotfilesprivate ]; then cd dotfilesprivate && git pull --ff origin master; fi
if [ -d azure-capacity-finder ]; then cd azure-capacity-finder && git pull --ff origin main; fi
.PHONY: update
update: pull-master install-all
.PHONY: clone-private
clone-private:
git clone git@github.com:surajssd/dotfilesprivate.git
.PHONY: clone-azure-capacity-finder
clone-azure-capacity-finder:
git clone git@github.com:surajssd/azure-capacity-finder.git