-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile
62 lines (41 loc) · 1.65 KB
/
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
58
59
60
61
62
SHELL := /bin/bash
.PHONY: Exercise1 Exercise2 Exercise3_1 Exercise3_2 Exercise3_3 Exercise3_3_1 Exercise4 Exercise5 Exercise6 Exercise7 Exercise8 Exercise9_1 Exercise9_2 Exercise10 Exercise11 Exercise12 Exercise13 Exercise14
BASEDIR := $(PWD)
vertx/bin/vertx:
@curl -L https://bintray.com/artifact/download/vertx/downloads/vert.x-3.3.3-full.tar.gz | tar -xz
Exercise1: vertx/bin/vertx
@cd $(BASEDIR)/$@; vertx run [email protected]
Exercise2: vertx/bin/vertx
@cd $(BASEDIR)/$@; vertx run [email protected]
Exercise3_1: vertx/bin/vertx
@cd $(BASEDIR)/Exercise3; vertx run [email protected]
Exercise3_2: vertx/bin/vertx
@cd $(BASEDIR)/Exercise3; vertx run [email protected]
Exercise3_3: vertx/bin/vertx
@cd $(BASEDIR)/Exercise3; vertx run [email protected]
Exercise3_3_1: vertx/bin/vertx
@cd $(BASEDIR)/Exercise3; vertx run [email protected]
Exercise4: vertx/bin/vertx
@cd $(BASEDIR)/$@; vertx run [email protected]
Exercise5: vertx/bin/vertx
@cd $(BASEDIR)/$@; vertx run [email protected]
Exercise6: vertx/bin/vertx
@cd $(BASEDIR)/$@; vertx run [email protected]
Exercise7: vertx/bin/vertx
@cd $(BASEDIR)/$@; vertx run [email protected]
Exercise8: vertx/bin/vertx
@cd $(BASEDIR)/$@; vertx run [email protected]
Exercise9_1: vertx/bin/vertx
@cd $(BASEDIR)/Exercise9; vertx run [email protected]
Exercise9_2: vertx/bin/vertx
@cd $(BASEDIR)/Exercise9; vertx run -cluster [email protected]
Exercise10: vertx/bin/vertx
@cd $(BASEDIR)/$@; vertx run [email protected]
Exercise11: vertx/bin/vertx
@cd $(BASEDIR)/$@; vertx run [email protected]
Exercise12: vertx/bin/vertx
@cd $(BASEDIR)/$@; vertx run [email protected]
Exercise13: vertx/bin/vertx
@cd $(BASEDIR)/$@; vertx run -conf Exercise13/config.json [email protected]
Exercise14: vertx/bin/vertx
@cd $(BASEDIR)/$@; vertx run [email protected]