-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathMakefile
More file actions
39 lines (29 loc) · 757 Bytes
/
Makefile
File metadata and controls
39 lines (29 loc) · 757 Bytes
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
include buildconf.mk
all: syndicate
syndicate: protobufs libsyndicate libsyndicate-ug gateways ms syndicate-python
.PHONY: protobufs
protobufs:
$(MAKE) -C protobufs
.PHONY: libsyndicate
libsyndicate: protobufs
$(MAKE) -C libsyndicate
.PHONY: libsyndicate-ug
libsyndicate-ug: libsyndicate protobufs
$(MAKE) -C libsyndicate-ug
.PHONY: gateways
gateways: libsyndicate libsyndicate-ug protobufs
$(MAKE) -C gateways
.PHONY: ms
ms: protobufs
$(MAKE) -C ms
.PHONY: syndicate-python
syndicate-python: protobufs ms libsyndicate-ug libsyndicate
$(MAKE) -C python
.PHONY: clean
clean:
$(MAKE) -C libsyndicate clean
$(MAKE) -C protobufs clean
$(MAKE) -C libsyndicate-ug clean
$(MAKE) -C gateways clean
$(MAKE) -C ms clean
$(MAKE) -C python clean