The R Project SVN R

Rev

Rev 78076 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

#-*-Makefile-*-
#
# ${R_HOME}/doc/Makefile.win

ECHO = echo

include ../src/gnuwin32/MkRules

R_EXE = ../$(BINDIR)/Rterm --vanilla --no-echo

all: NEWS.rds html/NEWS.html NEWS NEWS.pdf NEWS.2.rds NEWS.3.rds \
  CHANGES.rds CHANGES html/CHANGES.html

NEWS.rds: NEWS.Rd
    @$(ECHO) "options(warn=1);saveRDS(tools:::prepare_Rd(tools::parse_Rd(\"$<\", \
      macros = \"../share/Rd/macros/system.Rd\"), stages = \"install\", \
      warningCalls = FALSE), \"$@\")" | $(R_EXE)

NEWS.2.rds: NEWS.2.Rd
    @$(ECHO) "options(warn=1);saveRDS(tools:::prepare_Rd(tools::parse_Rd(\"$<\", \
      macros = \"../share/Rd/macros/system.Rd\"), stages = \"install\", \
      warningCalls = FALSE), \"$@\")" | $(R_EXE)

NEWS.3.rds: NEWS.3.Rd
    @$(ECHO) "options(warn=1);saveRDS(tools:::prepare_Rd(tools::parse_Rd(\"$<\", \
      macros = \"../share/Rd/macros/system.Rd\"), stages = \"install\", \
      warningCalls = FALSE), \"$@\")" | $(R_EXE)

CHANGES.rds: ../src/gnuwin32/CHANGES.Rd
    @$(ECHO) "options(warn=1);saveRDS(tools:::prepare_Rd(tools::parse_Rd(\"$<\", \
      macros = \"../share/Rd/macros/system.Rd\"), stages = \"install\", \
      warningCalls = FALSE), \"$@\")" | $(R_EXE)

## Force ASCII output, for portability on Windows
NEWS: NEWS.rds
    @$(ECHO) "creating doc/NEWS"
    @$(ECHO) "options(warn=1);tools:::Rd2txt_NEWS_in_Rd(\"$<\", \"$@\")" | \
      $(R_EXE) LC_ALL=C

## Should be allowed to fail if pdflatex is not available
NEWS.pdf: NEWS.rds
    @$(ECHO) "creating doc/NEWS.pdf"
    -@$(ECHO) "options(warn=1);tools:::Rd2pdf_NEWS_in_Rd(\"$<\", \"$@\")" | \
      $(R_EXE)

CHANGES: CHANGES.rds
    @$(ECHO) "options(warn=1);tools:::Rd2txt_NEWS_in_Rd(\"$<\", \"$@\")" | \
      $(R_EXE) LC_ALL=C

html/NEWS.html: NEWS.rds
    @$(ECHO) "options(warn=1);tools:::Rd2HTML_NEWS_in_Rd(\"$<\", \"$@\")" | \
      $(R_EXE)

html/CHANGES.html: CHANGES.rds
    @$(ECHO) "options(warn=1);tools:::Rd2HTML_NEWS_in_Rd(\"$<\", \"$@\")" | \
      $(R_EXE)

clean:
    @rm -f NEWS.rds html/NEWS.html NEWS NEWS.pdf \
      CHANGES.rds html/CHANGES.html