From 0c584d1cfb2b58257b3e82b592e27a12e729f5f5 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Mon, 27 May 2013 13:49:02 -0400 Subject: [PATCH 1/1] doc: be more clever to guess existing libraries Signed-off-by: Jean Privat --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 87df8a1..e3b01bb 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ doc/stdlib/index.html: bin/nitdoc @echo '***************************************************************' @echo '* Generate doc for NIT standard library *' @echo '***************************************************************' - bin/nitdoc lib/* -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)

    " \ -- 1.7.9.5