The R Project SVN R

Rev

Rev 846 | Blame | Last modification | View Log | Download | RSS feed

base:
    @echo Building R base package
    @if test ! -d ../../../library/base; then mkdir ../../../library/base; fi
    @if test ! -d ../../../library/base/R; then mkdir ../../../library/base/R; fi
    @if test ! -d ../../../library/base/data; then mkdir ../../../library/base/data; fi
    @cat `ls R/*.R | sed '/system.*/d'` R/system.unix.R | \
     sed '/^[   ]*$$/d'  > ../../../library/base/R/base
#          ^^ = TAB + Space
##-- do NOT delete all '#' lines -- this BREAKS strings containing '#' !!
##-- Could still delete all  '/^[\t ]*#/ lines, but why not leave comments ?
##  @cat $(FUNS) STARTUP |sed  '/^$$/d;/^[  ]*#/d'  > ../../../library/base
##                        ^^ = TAB + Space
    @cp INDEX TITLE ../../../library/base
    @cp `ls data/[a-z]*` ../../../library/base/data