-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
69 lines (56 loc) · 1.08 KB
/
Makefile
File metadata and controls
69 lines (56 loc) · 1.08 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Install dependencies
install:
.PHONY: install
@./scripts/install.sh
# Connect display
.PHONY: display
display:
@./scripts/display.sh
# Start arduino session
.PHONY: arduino
arduino:
@./scripts/sessions/arduino.sh
# Start bradcush session
.PHONY: bradcush
bradcush:
@./scripts/sessions/bradcush.sh
# Start datalgo session
.PHONY: datalgo
datalgo:
@./scripts/sessions/datalgo.sh
# Start deeps session
.PHONY: deeps
deeps:
@./scripts/sessions/deeps.sh
# Start dotfiles session
.PHONY: dotfiles
dotfiles:
@./scripts/sessions/dotfiles.sh
# Start eth session
.PHONY: eth
eth:
@./scripts/sessions/eth.sh
# Start mark session
.PHONY: mark
mark:
@./scripts/sessions/mark.sh
# Start presentations session
.PHONY: presentations
presentations:
@./scripts/sessions/presentations.sh
# Start problems session
.PHONY: problems
problems:
@./scripts/sessions/problems.sh
# Start scratch session
.PHONY: scratch
scratch:
@./scripts/sessions/scratch.sh
# Start zcash session
.PHONY: zcash
zcash:
@./scripts/sessions/zcash.sh
# Start zecli session
.PHONY: zecli
zecli:
@./scripts/sessions/zecli.sh