Navigation Menu

Skip to content

Commit

Permalink
Begin shift over to using pandoc, markdown and llnextgen for referenc…
Browse files Browse the repository at this point in the history
…e manual. Fix man page URL while at it.
  • Loading branch information
graydon committed Jan 13, 2012
1 parent 565ea06 commit fefdb63
Show file tree
Hide file tree
Showing 7 changed files with 846 additions and 30 deletions.
12 changes: 6 additions & 6 deletions Makefile.in
Expand Up @@ -132,17 +132,17 @@ ifdef CFG_BAD_VALGRIND
endif endif


DOCS := DOCS :=
ifeq ($(CFG_MAKEINFO),) ifeq ($(CFG_PANDOC),)
$(info cfg: no makeinfo found, omitting doc/rust.html) $(info cfg: no pandoc found, omitting doc/rust.html)
else else
DOCS += doc/rust.html DOCS += doc/rust.html
endif endif


ifeq ($(CFG_TEXI2PDF),) ifeq ($(CFG_PANDOC),)
$(info cfg: no texi2pdf found, omitting doc/rust.pdf) $(info cfg: no pandoc found, omitting doc/rust.pdf)
else else
ifeq ($(CFG_TEX),) ifeq ($(CFG_PDFLATEX),)
$(info cfg: no tex found, omitting doc/rust.pdf) $(info cfg: no pdflatex found, omitting doc/rust.pdf)
else else
DOCS += doc/rust.pdf DOCS += doc/rust.pdf
endif endif
Expand Down
6 changes: 3 additions & 3 deletions configure
Expand Up @@ -284,11 +284,11 @@ probe CFG_GCC gcc
probe CFG_LLVM_CONFIG llvm-config probe CFG_LLVM_CONFIG llvm-config
probe CFG_VALGRIND valgrind probe CFG_VALGRIND valgrind
probe CFG_PERF perf probe CFG_PERF perf
probe CFG_MAKEINFO makeinfo
probe CFG_TEXI2PDF texi2pdf
probe CFG_TEX tex
probe CFG_MAKENSIS makensis probe CFG_MAKENSIS makensis
probe CFG_NATURALDOCS naturaldocs probe CFG_NATURALDOCS naturaldocs
probe CFG_LLNEXTGEN LLnextgen
probe CFG_PANDOC pandoc
probe CFG_PDFLATEX pdflatex


if [ -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ] if [ -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
then then
Expand Down

0 comments on commit fefdb63

Please sign in to comment.