The R Project SVN R

Rev

Rev 20002 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 20002 Rev 29654
Line 2... Line 2...
2
#
2
#
3
# ${R_HOME}/bin/COMPILE
3
# ${R_HOME}/bin/COMPILE
4
 
4
 
5
# @configure_input@
5
# @configure_input@
6
 
6
 
7
revision='$Revision: 1.14 $'
7
revision='$Revision: 1.15 $'
8
version=`set - ${revision}; echo ${2}`
8
version=`set - ${revision}; echo ${2}`
9
version="R compilation front end ${version}
9
version="R compilation front end ${version}
10
 
10
 
11
Copyright (C) 2000 The R Core Development Team.
11
Copyright (C) 2000-2004 The R Core Development Team.
12
This is free software; see the GNU General Public Licence version 2 or
12
This is free software; see the GNU General Public Licence version 2 or
13
later for copying conditions.  There is NO warranty."
13
later for copying conditions.  There is NO warranty."
14
 
14
 
15
usage="Usage: R CMD COMPILE [options] files
15
usage="Usage: R CMD COMPILE [options] files
16
 
16
 
Line 26... Line 26...
26
Other options of the form '-DMACRO' or 'VAR=VALUE' are passed on to the
26
Other options of the form '-DMACRO' or 'VAR=VALUE' are passed on to the
27
compilation.
27
compilation.
28
 
28
 
29
Report bugs to <r-bugs@r-project.org>."
29
Report bugs to <r-bugs@r-project.org>."
30
 
30
 
31
MAKE=${MAKE-'@MAKE@'}
-
 
32
makefiles="-f ${R_HOME}/etc/Makeconf"
31
makefiles="-f ${R_HOME}/etc/Makeconf"
33
if test -r Makevars; then
32
if test -r Makevars; then
34
  makefiles="-f Makevars ${makefiles}"
33
  makefiles="-f Makevars ${makefiles}"
35
fi
34
fi
36
 
35