This repository has been archived by the owner on Sep 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
82 lines (53 loc) · 2.02 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
SHELL := /bin/bash
.PHONY: build clean carbon-client dashing data-collector grafana-client icinga2-master icinga-client jolokia rest-service service-discovery documentation
default: build
# build jobs
#
carbon-client:
pushd docker-cm-carbon-client && make && popd
dashing:
pushd docker-cm-dashing && make && popd
data-collector:
pushd docker-cm-data-collector && make && popd
grafana-client:
pushd docker-cm-grafana-client && make && popd
icinga2-master:
pushd docker-cm-icinga2 && make && popd
icinga-client:
pushd docker-cm-icinga-client && make && popd
jolokia:
pushd docker-cm-jolokia && make && popd
notification-client:
pushd docker-cm-notification-client && make && popd
rest-service:
pushd docker-cm-rest-service && make && popd
service-discovery:
pushd docker-cm-service-discovery && make && popd
documentation:
pushd docker-documentation && make && popd
# clean jobs
#
carbon-client-clean:
pushd docker-cm-carbon-client && make clean && popd
dashing-clean:
pushd docker-cm-dashing && make clean && popd
data-collector-clean:
pushd docker-cm-data-collector && make clean && popd
grafana-client-clean:
pushd docker-cm-grafana-client && make clean && popd
icinga2-master-clean:
pushd docker-cm-icinga2 && make clean && popd
icinga-client-clean:
pushd docker-cm-icinga-client && make clean && popd
jolokia-clean:
pushd docker-cm-jolokia && make clean && popd
notification-client-clean:
pushd docker-cm-notification-client && make clean && popd
rest-service-clean:
pushd docker-cm-rest-service && make clean && popd
service-discovery-clean:
pushd docker-cm-service-discovery && make clean && popd
documentation-clean:
pushd docker-documentation && make clean && popd
clean: carbon-client-clean dashing-clean data-collector-clean grafana-client-clean icinga2-master-clean icinga-client-clean jolokia-clean rest-service-clean service-discovery-clean documentation-clean
build: carbon-client dashing data-collector grafana-client icinga-client icinga2-master jolokia rest-service service-discovery documentation