X-Git-Url: http://nitlanguage.org diff --git a/Makefile b/Makefile index c50281f..6a2599c 100644 --- a/Makefile +++ b/Makefile @@ -16,48 +16,57 @@ NITCOPT= -all: bin/nitc bin/nitdoc doc/stdlib/index.html +all: tools doc/stdlib/index.html -bin/nitc: c_src/nitc src/parser/parser.nit - @echo '***************************************************************' - @echo '* Compile nitc from NIT source files *' - @echo '***************************************************************' - src/git-gen-version.sh - cd src; ../c_src/nitc ${NITCOPT} --clibdir ../c_src/clib -o ../bin/nitc -O -v nitc.nit +docs: doc/stdlib/index.html doc/nitc/index.html doc/newmodel/index.html + #cd doc; make -bin/nitdoc: bin/nitc - @echo '***************************************************************' - @echo '* Compile nitdoc from NIT source files *' - @echo '***************************************************************' - src/git-gen-version.sh - cd src; ../bin/nitc ${NITCOPT} -o ../bin/nitdoc -O -v nitdoc.nit +tools: + cd src; make + +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 + bin/nitdoc lib/*.nit $$(find lib/* -maxdepth 0 -type d ) -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" -c_src/nitc: c_src/*.c c_src/*.h c_src/nitc._build.sh c_src/Makefile - @echo '***************************************************************' - @echo '* Compile nitc from C source files *' - @echo '***************************************************************' - cd c_src; make +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" -src/parser/parser.nit: - @echo '***************************************************************' - @echo '* Generate nit parser *' - @echo '***************************************************************' - cd src/parser; make +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 "
  • 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 - cd c_src; make clean - cd src/parser; make clean - cd tests; make clean - -dist-clean: clean - cd c_src; make dist-clean - cd src/parser; make dist-clean - rm -rf -- bin/nitc bin/nitdoc doc/stdlib + cd c_src; make clean + cd src; make clean + cd doc; make clean + cd tests; make clean +distclean: clean + rm -rf -- bin/nitc bin/nitdoc bin/nits doc/stdlib doc/nitc/ 2> /dev/null || true + cd c_src; make distclean + cd src/parser; make distclean + cd doc; make distclean + cd tests; make distclean