Rev 232 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#!/bin/sh## ${RHOME}/etc/build-allhelp# Should work from anywhere in the R source tree.RHOME=`dirname $0`/.. # relativeRHOME=`cd ${RHOME}; pwd` # absoluteexport RHOMEPKGS=`cd ${RHOME}/src/library; ls | sed '/^\./d/CVS/d/LIB*/d/Makefile/d/profile/d'`cd ${RHOME}/src/libraryfor pkg in ${PKGS}do${RHOME}/etc/build-help --html ${pkg}done