-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
23 lines (18 loc) · 807 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
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