-
Notifications
You must be signed in to change notification settings - Fork 106
/
makefile
73 lines (54 loc) · 1.03 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
include env/common.mk
-include local.mk
.PHONY: all
all: cli-lnx
all: cli-mac
all: cli-win
all: app-ios
all: app-and
all: app-mac
all: srv-lnx
all: srv-mac
all: srv-win
.PHONY: tst-ethereum
tst-ethereum:
$(MAKE) -C tst-ethereum test
.PHONY: cli-lnx
cli-lnx:
$(MAKE) -C cli-shared target=lnx
.PHONY: cli-mac
cli-mac:
$(MAKE) -C cli-shared target=mac
.PHONY: cli-win
cli-win:
$(MAKE) -C cli-shared target=win
.PHONY: tst-win
tst-win:
$(MAKE) -C tst-network target=win
.PHONY: srv-and
srv-and:
$(MAKE) -C srv-daemon target=and
.PHONY: srv-lnx
srv-lnx:
$(MAKE) -C srv-daemon target=lnx
.PHONY: srv-mac
srv-mac:
$(MAKE) -C srv-daemon target=mac
.PHONY: srv-win
srv-win:
$(MAKE) -C srv-daemon target=win
.PHONY: app-ios
app-ios:
$(MAKE) -C app-ios target=ios
.PHONY: app-sim
app-sim:
$(MAKE) -C app-ios target=sim
.PHONY: app-and
app-and:
$(MAKE) -C app-android target=and
.PHONY: app-mac
app-mac:
$(MAKE) -C app-macos target=mac
.PHONY: github
github: app-and cli-lnx cli-mac cli-win srv-lnx srv-mac srv-win
./github.sh $(github)