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
Original file line number Diff line number Diff line change
Expand Up @@ -132,17 +132,17 @@ ifdef CFG_BAD_VALGRIND
endif

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

ifeq ($(CFG_TEXI2PDF),)
$(info cfg: no texi2pdf found, omitting doc/rust.pdf)
ifeq ($(CFG_PANDOC),)
$(info cfg: no pandoc found, omitting doc/rust.pdf)
else
ifeq ($(CFG_TEX),)
$(info cfg: no tex found, omitting doc/rust.pdf)
ifeq ($(CFG_PDFLATEX),)
$(info cfg: no pdflatex found, omitting doc/rust.pdf)
else
DOCS += doc/rust.pdf
endif
Expand Down
6 changes: 3 additions & 3 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -284,11 +284,11 @@ probe CFG_GCC gcc
probe CFG_LLVM_CONFIG llvm-config
probe CFG_VALGRIND valgrind
probe CFG_PERF perf
probe CFG_MAKEINFO makeinfo
probe CFG_TEXI2PDF texi2pdf
probe CFG_TEX tex
probe CFG_MAKENSIS makensis
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" ]
then
Expand Down
Loading

0 comments on commit fefdb63

Please sign in to comment.