mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
626e9fed16
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
78 lines
2.2 KiB
Makefile
78 lines
2.2 KiB
Makefile
#! /usr/bin/make
|
|
|
|
# Designed to be run one level up
|
|
doc-wrongdir:
|
|
$(MAKE) -C .. doc-all
|
|
|
|
MANPAGES := doc/lightning-cli.1 \
|
|
doc/lightningd-config.5 \
|
|
doc/lightning-autocleaninvoice.7 \
|
|
doc/lightning-close.7 \
|
|
doc/lightning-connect.7 \
|
|
doc/lightning-decodepay.7 \
|
|
doc/lightning-delexpiredinvoice.7 \
|
|
doc/lightning-delinvoice.7 \
|
|
doc/lightning-fundchannel.7 \
|
|
doc/lightning-getroute.7 \
|
|
doc/lightning-invoice.7 \
|
|
doc/lightning-listfunds.7 \
|
|
doc/lightning-listinvoices.7 \
|
|
doc/lightning-listpayments.7 \
|
|
doc/lightning-newaddr.7 \
|
|
doc/lightning-pay.7 \
|
|
doc/lightning-sendpay.7 \
|
|
doc/lightning-waitinvoice.7 \
|
|
doc/lightning-waitanyinvoice.7 \
|
|
doc/lightning-waitsendpay.7 \
|
|
doc/lightning-withdraw.7
|
|
|
|
|
|
doc-all: $(MANPAGES)
|
|
|
|
$(MANPAGES): doc/%: doc/%.txt
|
|
@if $(CHANGED_FROM_GIT); then echo a2x --format=manpage $<; a2x --format=manpage $<; else touch $@; fi
|
|
|
|
doc/protocol-%.svg: test/test_protocol
|
|
test/test_protocol --svg < test/commits/$*.script > $@
|
|
|
|
protocol-diagrams: $(patsubst %.script, doc/protocol-%.svg, $(notdir $(wildcard test/commits/*.script)))
|
|
|
|
doc/deployable-lightning.pdf: doc/deployable-lightning.lyx doc/bitcoin.bib
|
|
lyx -E pdf $@ $<
|
|
|
|
doc/deployable-lightning.tex: doc/deployable-lightning.lyx
|
|
lyx -E latex $@ $<
|
|
|
|
state-diagrams: doc/normal-states.svg doc/simplified-states.svg doc/error-states.svg doc/full-states.svg
|
|
|
|
%.svg: %.dot
|
|
dot -Tsvg $< > $@ || (rm -f $@; false)
|
|
|
|
doc/simplified-states.dot: test/test_state_coverage
|
|
test/test_state_coverage --dot --dot-simplify > $@
|
|
|
|
doc/normal-states.dot: test/test_state_coverage
|
|
test/test_state_coverage --dot > $@
|
|
|
|
doc/error-states.dot: test/test_state_coverage
|
|
test/test_state_coverage --dot-all --dot-include-errors > $@
|
|
|
|
doc/full-states.dot: test/test_state_coverage
|
|
test/test_state_coverage --dot-all --dot-include-errors --dot-include-nops > $@
|
|
|
|
maintainer-clean: doc-maintainer-clean
|
|
clean: doc-clean
|
|
check: check-manpages
|
|
|
|
check-manpages: cli/lightning-cli lightningd/lightningd
|
|
@tools/check-manpage.sh cli/lightning-cli doc/lightning-cli.1.txt
|
|
@tools/check-manpage.sh lightningd/lightningd doc/lightningd-config.5.txt
|
|
|
|
doc-maintainer-clean:
|
|
$(RM) doc/deployable-lightning.pdf
|
|
$(RM) $(MANPAGES)
|
|
|
|
doc-clean:
|
|
$(RM) doc/deployable-lightning.{aux,bbl,blg,dvi,log,out,tex}
|
|
|