2011-05-01 22:18:52 +02:00
|
|
|
######################################################################
|
|
|
|
# Doc variables and rules
|
|
|
|
######################################################################
|
|
|
|
|
2012-01-18 23:14:28 +01:00
|
|
|
DOCS :=
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2012-01-13 04:10:30 +01:00
|
|
|
|
2012-01-18 23:14:28 +01:00
|
|
|
######################################################################
|
|
|
|
# Pandoc (reference-manual related)
|
|
|
|
######################################################################
|
|
|
|
ifeq ($(CFG_PANDOC),)
|
|
|
|
$(info cfg: no pandoc found, omitting doc/rust.pdf)
|
|
|
|
else
|
2012-01-13 04:10:30 +01:00
|
|
|
|
2012-01-18 23:14:28 +01:00
|
|
|
DOCS += doc/rust.html
|
2012-01-13 04:10:30 +01:00
|
|
|
doc/rust.html: rust.md doc/version.md doc/keywords.md
|
|
|
|
@$(call E, pandoc: $@)
|
|
|
|
$(Q)$(CFG_PANDOC) \
|
|
|
|
--standalone --toc \
|
|
|
|
--section-divs \
|
|
|
|
--number-sections \
|
|
|
|
--from=markdown --to=html \
|
2012-01-18 09:58:08 +01:00
|
|
|
--css=rust.css \
|
2012-01-13 04:10:30 +01:00
|
|
|
--output=$@ \
|
|
|
|
$<
|
2012-01-18 09:58:08 +01:00
|
|
|
@$(call E, cp: $(S)doc/rust.css)
|
|
|
|
-$(Q)cp -a $(S)doc/rust.css doc/rust.css 2> /dev/null
|
|
|
|
|
2012-01-13 04:10:30 +01:00
|
|
|
|
2012-01-18 23:14:28 +01:00
|
|
|
ifeq ($(CFG_PDFLATEX),)
|
|
|
|
$(info cfg: no pdflatex found, omitting doc/rust.pdf)
|
|
|
|
else
|
|
|
|
ifeq ($(CFG_XETEX),)
|
|
|
|
$(info cfg: no xetex found, disabling doc/rust.pdf)
|
|
|
|
else
|
|
|
|
ifeq ($(CFG_LUATEX),)
|
|
|
|
$(info cfg: lacking luatex, disabling pdflatex)
|
|
|
|
else
|
2012-01-13 04:10:30 +01:00
|
|
|
|
2012-01-18 23:14:28 +01:00
|
|
|
DOCS += doc/rust.pdf
|
2012-01-13 04:10:30 +01:00
|
|
|
doc/rust.tex: rust.md doc/version.md doc/keywords.md
|
|
|
|
@$(call E, pandoc: $@)
|
|
|
|
$(Q)$(CFG_PANDOC) \
|
|
|
|
--standalone --toc \
|
|
|
|
--number-sections \
|
|
|
|
--from=markdown --to=latex \
|
|
|
|
--output=$@ \
|
|
|
|
$<
|
|
|
|
|
|
|
|
doc/rust.pdf: doc/rust.tex
|
|
|
|
@$(call E, pdflatex: $@)
|
|
|
|
$(Q)$(CFG_PDFLATEX) \
|
|
|
|
-interaction=batchmode \
|
|
|
|
-output-directory=doc \
|
|
|
|
$<
|
|
|
|
|
2012-01-18 23:14:28 +01:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2012-01-13 04:10:30 +01:00
|
|
|
endif
|
|
|
|
|
2012-01-18 23:14:28 +01:00
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# LLnextgen (grammar analysis from refman)
|
|
|
|
######################################################################
|
|
|
|
ifeq ($(CFG_LLNEXTGEN),)
|
|
|
|
$(info cfg: no llnextgen found, omitting grammar-verification)
|
|
|
|
else
|
|
|
|
.PHONY: verify-grammar
|
|
|
|
|
|
|
|
doc/rust.g: rust.md $(S)src/etc/extract_grammar.py
|
|
|
|
@$(call E, extract_grammar: $@)
|
|
|
|
$(Q)$(S)src/etc/extract_grammar.py $< >$@
|
|
|
|
|
|
|
|
verify-grammar: doc/rust.g
|
|
|
|
@$(call E, LLnextgen: $<)
|
|
|
|
$(Q)$(CFG_LLNEXTGEN) --generate-lexer-wrapper=no $< >$@
|
|
|
|
$(Q)rm -f doc/rust.c doc/rust.h
|
2012-01-18 01:49:57 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2012-01-18 23:14:28 +01:00
|
|
|
######################################################################
|
|
|
|
# Node (tutorial related)
|
|
|
|
######################################################################
|
|
|
|
ifeq ($(CFG_NODE),)
|
|
|
|
$(info cfg: no node found, omitting doc/tutorial/web)
|
|
|
|
else
|
2012-01-17 16:56:20 +01:00
|
|
|
|
2012-01-18 23:14:28 +01:00
|
|
|
DOCS += doc/tutorial/web/index.html
|
2012-01-17 23:46:42 +01:00
|
|
|
doc/tutorial/web/index.html: \
|
|
|
|
$(wildcard $(S)doc/tutorial/*.md)
|
2012-01-18 01:49:57 +01:00
|
|
|
@$(call E, cp: $(S)doc/tutorial)
|
2012-01-18 09:58:08 +01:00
|
|
|
-$(Q)cp -a $(S)doc/tutorial doc/ 2> /dev/null
|
2012-01-17 23:46:42 +01:00
|
|
|
@$(call E, node: build.js)
|
2012-01-17 16:56:20 +01:00
|
|
|
$(Q)cd doc/tutorial && $(CFG_NODE) build.js
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2012-01-13 04:10:30 +01:00
|
|
|
|
|
|
|
|
2012-01-18 23:14:28 +01:00
|
|
|
######################################################################
|
|
|
|
# Naturaldocs (library reference related)
|
|
|
|
######################################################################
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2012-01-18 23:14:28 +01:00
|
|
|
ifeq ($(CFG_NATURALDOCS),)
|
|
|
|
$(info cfg: no naturaldocs found, omitting library doc build)
|
|
|
|
else
|
2011-10-25 00:25:41 +02:00
|
|
|
|
2011-12-06 01:46:37 +01:00
|
|
|
define libdoc
|
|
|
|
doc/$(1)/index.html: nd/$(1)/Languages.txt nd/$(1)/Topics.txt \
|
|
|
|
nd/$(1)/lib.css $(2)
|
|
|
|
@$$(call E, naturaldocs: $$@)
|
|
|
|
naturaldocs -i $(S)src/lib$(1) -o HTML doc/$(1) -p nd/$(1) -r -s Default lib
|
|
|
|
|
|
|
|
nd/$(1)/Languages.txt: $(S)doc/Languages.txt
|
|
|
|
@$$(call E, cp: $$@)
|
|
|
|
$(Q)cp $$< $$@
|
|
|
|
|
|
|
|
nd/$(1)/Topics.txt: $(S)doc/Topics.txt
|
|
|
|
@$$(call E, cp: $$@)
|
|
|
|
$(Q)cp $$< $$@
|
|
|
|
|
|
|
|
nd/$(1)/lib.css: $(S)doc/lib.css
|
|
|
|
@$$(call E, cp: $$@)
|
|
|
|
$(Q)cp $$< $$@
|
|
|
|
|
2011-12-30 21:47:43 +01:00
|
|
|
GENERATED += nd/$(1)/Languages.txt \
|
|
|
|
nd/$(1)/Topics.txt \
|
|
|
|
nd/$(1)/Menu.txt \
|
|
|
|
nd/$(1)/Data
|
|
|
|
|
2011-12-31 00:10:55 +01:00
|
|
|
DOCS += doc/$(1)/index.html nd/$(1)/lib.css
|
2011-12-06 01:46:37 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call libdoc,core,$(CORELIB_CRATE) $(CORELIB_INPUTS)))
|
|
|
|
$(eval $(call libdoc,std,$(STDLIB_CRATE) $(STDLIB_INPUTS)))
|
2012-01-18 23:14:28 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
ifdef CFG_DISABLE_DOCS
|
|
|
|
$(info cfg: disabling doc build (CFG_DISABLE_DOCS))
|
|
|
|
DOCS :=
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
doc/version.md: $(MKFILE_DEPS) rust.md
|
|
|
|
@$(call E, version-stamp: $@)
|
|
|
|
$(Q)echo "$(CFG_VERSION)" >>$@
|
|
|
|
|
|
|
|
doc/keywords.md: $(MKFILE_DEPS) rust.md
|
|
|
|
@$(call E, grep -v: $$@)
|
|
|
|
$(Q)grep -v '^#' $< >$@
|
|
|
|
|
|
|
|
GENERATED += doc/keywords.md doc/version.md
|
2011-12-30 21:47:43 +01:00
|
|
|
|
|
|
|
docs: $(DOCS)
|