| 123456789101112131415161718192021222324252627282930313233343536 |
- .POSIX:
- DARKFID_JSONRPC = src/clients/darkfid_jsonrpc.md
- FAUCETD_JSONRPC = src/clients/faucetd_jsonrpc.md
- JSONRPC = \
- $(DARKFID_JSONRPC) \
- $(FAUCETD_JSONRPC)
- all: $(JSONRPC)
- ./generate_seminar_ics.py --table > src/development/seminars.md
- mdbook build
- cp -f theme/logo* book/
- ./generate_seminar_ics.py --ics
- $(MAKE) -C ../ rustdoc
- cp -r ../target/doc/* book/development/
- ./remove_chapter_nav_js.py
- $(DARKFID_JSONRPC):
- @echo "# darkfid JSON-RPC API" > $@
- for i in blockchain tx wallet misc; do \
- echo "## $$i methods" >> $@ ;\
- ./build_jsonrpc.py ../bin/darkfid/src/rpc_$$i.rs >> $@ ;\
- done
- $(FAUCETD_JSONRPC):
- @echo "# faucetd JSON-RPC API" > $@
- ./build_jsonrpc.py ../bin/faucetd/src/main.rs >> $@
- clean:
- rm -rf book
- github: all
- ./ghp_push.py
- .PHONY: $(JSONRPC) all clean github
|