forked from OrchidTechnologies/orchid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
59 lines (44 loc) · 928 Bytes
/
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
.PHONY: all
all: all-cli-lnx
all: all-cli-mac
all: all-tst-win
all: all-app-ios
all: all-app-sim
all: all-app-and
all: all-srv-and
all: all-srv-lnx
all: all-srv-mac
all: all-srv-win
.PHONY: tst-ethereum
tst-ethereum:
$(MAKE) -C tst-ethereum test
.PHONY: all-cli-lnx
all-cli-lnx:
$(MAKE) -C cli-shared target=lnx
.PHONY: all-cli-mac
all-cli-mac:
$(MAKE) -C cli-shared target=mac
.PHONY: all-tst-win
all-tst-win:
$(MAKE) -C tst-network target=win
.PHONY: all-srv-and
all-srv-and:
$(MAKE) -C srv-shared target=and
.PHONY: all-srv-lnx
all-srv-lnx:
$(MAKE) -C srv-shared target=lnx
.PHONY: all-srv-mac
all-srv-mac:
$(MAKE) -C srv-shared target=mac
.PHONY: all-srv-win
all-srv-win:
$(MAKE) -C srv-shared target=win
.PHONY: all-app-ios
all-app-ios:
$(MAKE) -C app-ios target=ios
.PHONY: all-app-sim
all-app-sim:
$(MAKE) -C app-ios target=sim
.PHONY: all-app-and
all-app-and:
$(MAKE) -C app-android target=and