ni_nitdoc: added fast copy past utility to signatures.
[nit.git] / Makefile
index ae0c1d2..6a2599c 100644 (file)
--- 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 --overview-text '<p>Documentation for the standard library of Nit</p>' --footer-text 'Nit standard library. Version '`git describe -- lib`'.'
+       bin/nitdoc lib/*.nit $$(find lib/* -maxdepth 0 -type d ) -d doc/stdlib --public \
+               --custom-title "Nit Standard Library" \
+               --custom-menu-items "<li><a href=\"http://nitlanguage.org/\">Nitlanguage.org</a></li>" \
+               --custom-overview-text "<p>Documentation for the standard library of Nit<br/>Version $$(git describe)<br/>Date: $$(git show --format="%cd" | head -1)</p>" \
+               --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 "<li><a href=\"http://nitlanguage.org/\">Nitlanguage.org</a></li>" \
+               --custom-overview-text "<p>Documentation for the Nit compiler and tools<br/>Version $$(git describe)<br/>Date: $$(git show --format="%cd" | head -1)</p>" \
+               --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 --overview-text '<p>Documentation for the nit compiler</p>' --footer-text 'Nit compiler. Version '`git describe`'.'
+doc/newmodel/index.html: bin/nitdoc
+       bin/nitdoc src/nit.nit src/nitmetrics.nit src/nitg.nit src/nitx.nit -d doc/newmodel \
+               --custom-title "Nit New Model" \
+               --custom-menu-items "<li><a href=\"http://nitlanguage.org/\">Nitlanguage.org</a></li>" \
+               --custom-overview-text "<p>Documentation for the Nit tools based on the new metamodel<br/>Version $$(git describe)<br/>Date: $$(git show --format="%cd" | head -1)</p>" \
+               --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