Differences From Artifact [f10688b15f]:
- File docs/code/Makefile — part of check-in [9f0b57c507] at 2019-11-01 17:20:42 on branch v1.65-wip-alt — Added hierarchy graph (user: mrwellan, size: 101) [annotate] [blame] [check-ins using] [more...]
To Artifact [8a3a5a4275]:
- File docs/code/Makefile — part of check-in [d2345a4f5d] at 2020-01-08 01:16:34 on branch v1.70-captain-ulex — UPdated dep pdf generator (user: matt, size: 335) [annotate] [blame] [check-ins using] [more...]
1 2 3 | module-hierarchy.pdf : module-hierarchy.dot dot -Tpdf module-hierarchy.dot -o module-hierarchy.pdf | > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 | all : module-hierarchy.pdf deps.data : ../../*scm cd ../..;csi -bq utils/deps.scm > docs/code/deps.data module-hierarchy.dot : preamble.dot deps.data postamble.dot cat preamble.dot deps.data postamble.dot > module-hierarchy.dot module-hierarchy.pdf : module-hierarchy.dot dot -Tpdf module-hierarchy.dot -o module-hierarchy.pdf |