-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
24 lines (20 loc) · 910 Bytes
/
Makefile
File metadata and controls
24 lines (20 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
all:
cd ./lib && $(MAKE) all
cd ./server && $(MAKE) all
cd ./example/MessageListenerApplication && $(MAKE) all
cd ./example/MessageSenderApplication && $(MAKE) all
cd ./example/BlockchainWriterApplication && $(MAKE) all
cd ./example/MoneyTransferApplication && $(MAKE) all
cd ./example/EventListenerApplication && $(MAKE) all
cd ./example/CouncilCertificateApplication && $(MAKE) all
cd ./example/ReqResTestApplication && $(MAKE) all
clean:
cd ./lib && $(MAKE) clean
cd ./server && $(MAKE) clean
cd ./example/MessageListenerApplication && $(MAKE) clean
cd ./example/MessageSenderApplication && $(MAKE) clean
cd ./example/BlockchainWriterApplication && $(MAKE) clean
cd ./example/MoneyTransferApplication && $(MAKE) clean
cd ./example/EventListenerApplication && $(MAKE) clean
cd ./example/CouncilCertificateApplication && $(MAKE) clean
cd ./example/ReqResTestApplication && $(MAKE) clean