chaintool-doc

Chaintool documentation
Info | Log | Files | Refs | README | LICENSE

Makefile (371B)


      1 SOURCES = $(realpath sources.txt)
      2 
      3 doc: doc-html doc-txt
      4 
      5 doc-html: doc-prep
      6 	makeinfo --html --no-split start.texi -o build/out/index.html
      7 
      8 doc-txt: doc-prep
      9 	makeinfo --plaintext start.texi -o build/out
     10 
     11 doc-prep: prep
     12 
     13 prep:
     14 	mkdir -p build/out
     15 
     16 readme: prep diagram
     17 	bash build.sh
     18 
     19 diagram:
     20 	dot -Tsvg deps.dot > build/deps.svg
     21 
     22 .PHONY: clean
     23 
     24 clean:
     25 	rm -rf build/*