-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.in
More file actions
101 lines (86 loc) · 2.35 KB
/
Makefile.in
File metadata and controls
101 lines (86 loc) · 2.35 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
.PHONY: all
all: repl
.PHONY: repl
repl:
docker image build \
-t akhet/sys/base:latest \
akhet/sys/base/
docker image build \
-t akhet/sys/api:latest \
akhet/sys/api/
docker image build \
-t akhet/sys/agent:latest \
akhet/sys/agent/
docker image build \
-t akhet/sys/proxy:latest \
akhet/sys/proxy/
.PHONY: demoui
demoui:
docker image build \
-t akhet/demo/ui:latest \
akhet/demo/ui/
.PHONY: base
base:
docker image build \
-t akhet/base/image-ubuntu-16-04:latest \
akhet/base/image-ubuntu-16-04/
docker image build \
-t akhet/base/firewall:latest \
akhet/base/firewall/
.PHONY: xterm
xterm:
docker image build \
-t akhet/images/ubuntu-16-04-xterm:latest \
akhet/images/ubuntu-16-04-xterm/
.PHONY: gnome-base
gnome-base:
docker image build \
-t akhet/images/ubuntu-16-04-gnome:latest \
akhet/images/ubuntu-16-04-gnome/
.PHONY: gnome-dev
gnome-dev:
docker image build \
-t akhet/images/ubuntu-16-04-gnome-cpp:latest \
akhet/images/ubuntu-16-04-gnome-cpp/
docker image build \
-t akhet/images/ubuntu-16-04-gnome-r-lang:latest \
akhet/images/ubuntu-16-04-gnome-r-lang/
.PHONY: gnome-science
gnome-science:
docker image build \
-t akhet/images/ubuntu-16-04-gnome-root6:latest \
akhet/images/ubuntu-16-04-gnome-root6/
docker image build \
-t akhet/images/ubuntu-16-04-gnome-geant4:latest \
akhet/images/ubuntu-16-04-gnome-geant4/
.PHONY: plasma-base
plasma-base:
docker image build \
-t akhet/images/ubuntu-16-04-plasma:latest \
akhet/images/ubuntu-16-04-plasma/
.PHONY: plasma-dev
plasma-dev:
docker image build \
-t akhet/images/ubuntu-16-04-plasma-cpp:latest \
akhet/images/ubuntu-16-04-plasma-cpp/
docker image build \
-t akhet/images/ubuntu-16-04-plasma-r-lang:latest \
akhet/images/ubuntu-16-04-plasma-r-lang/
.PHONY: plasma-science
plasma-science:
docker image build \
-t akhet/images/ubuntu-16-04-plasma-root6:latest \
akhet/images/ubuntu-16-04-plasma-root6/
docker image build \
-t akhet/images/ubuntu-16-04-plasma-geant4:latest \
akhet/images/ubuntu-16-04-plasma-geant4/
.PHONY: base-cuda
base-cuda:
docker image build \
-t akhet/base/image-ubuntu-16-04-cuda-8-0-devel:latest \
akhet/base/image-ubuntu-16-04-cuda-8-0-devel/
.PHONY: xterm-cuda
xterm-cuda:
docker image build \
-t akhet/images/ubuntu-16-04-xterm-cuda-8-0-devel:latest \
akhet/images/ubuntu-16-04-xterm-cuda-8-0-devel/