From: Jean Privat Date: Sat, 25 May 2013 17:18:49 +0000 (-0400) Subject: doc: update Makefile to run nitdoc with extended options X-Git-Tag: v0.6~53^2 X-Git-Url: http://nitlanguage.org doc: update Makefile to run nitdoc with extended options add also a doc/newmodel/index.html rule Signed-off-by: Jean Privat --- diff --git a/.gitignore b/.gitignore index 9c41552..f0d6444 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,8 @@ EIFGENs *.orig bin/nit* doc/stdlib +doc/nitc +doc/newmodel *.aux *.log diff --git a/Makefile b/Makefile index 37ed2fb..87df8a1 100644 --- a/Makefile +++ b/Makefile @@ -18,20 +18,44 @@ NITCOPT= all: tools doc/stdlib/index.html -docs: doc/stdlib/index.html doc/nitc/index.html - cd doc; make +docs: doc/stdlib/index.html doc/nitc/index.html doc/newmodel/index.html + #cd doc; make tools: cd src; make -doc/stdlib/index.html: tools +bin/nitdoc: + cd src; make ../bin/nitdoc + +doc/stdlib/index.html: bin/nitdoc @echo '***************************************************************' @echo '* Generate doc for NIT standard library *' @echo '***************************************************************' - bin/nitdoc lib/*.nit -d doc/stdlib --public --custom-overview-text '

Documentation for the standard library of Nit

' --custom-footer-text 'Nit standard library. Version '`git describe`'.' + bin/nitdoc lib/* -d doc/stdlib --public \ + --custom-title "Nit Standard Library" \ + --custom-menu-items "
  • Nitlanguage.org
  • " \ + --custom-overview-text "

    Documentation for the standard library of Nit
    Version $$(git describe)
    Date: $$(git show --format="%cd" | head -1)

    " \ + --custom-footer-text "Nit standard library. Version $$(git describe)." \ + --github nit \ + --source "https://github.com/privat/nit/blob/$$(git show --format="%H" | head -1)/%f#L%l-%L" + +doc/nitc/index.html: bin/nitdoc + bin/nitdoc src/nitc.nit src/nitdoc.nit src/nits.nit -d doc/nitc \ + --custom-title "Nit Compiler and Tools" \ + --custom-menu-items "
  • Nitlanguage.org
  • " \ + --custom-overview-text "

    Documentation for the Nit compiler and tools
    Version $$(git describe)
    Date: $$(git show --format="%cd" | head -1)

    " \ + --custom-footer-text "Nit compiler. Version $$(git describe)." \ + --github nit \ + --source "https://github.com/privat/nit/blob/$$(git show --format="%H" | head -1)/%f#L%l-%L" -doc/nitc/index.html: tools - bin/nitdoc src/nitc.nit src/nitdoc.nit -d doc/nitc --custom-overview-text '

    Documentation for the nit compiler

    ' --custom-footer-text 'Nit compiler. Version '`git describe`'.' +doc/newmodel/index.html: bin/nitdoc + bin/nitdoc src/nit.nit src/nitmetrics.nit src/nitg.nit -d doc/newmodel \ + --custom-title "Nit New Model" \ + --custom-menu-items "
  • Nitlanguage.org
  • " \ + --custom-overview-text "

    Documentation for the Nit tools based on the new metamodel
    Version $$(git describe)
    Date: $$(git show --format="%cd" | head -1)

    " \ + --custom-footer-text "Nit new metamodel. Version $$(git describe)." \ + --github nit \ + --source "https://github.com/privat/nit/blob/$$(git show --format="%H" | head -1)/%f#L%l-%L" clean: rm -rf -- .nit_compile 2> /dev/null || true