Diff for /loncom/build/Makefile between versions 1.53 and 1.54

version 1.53, 2002/01/06 04:32:39 version 1.54, 2002/01/07 22:12:21
Line 29  help: Line 29  help:
  @echo "                a LON-CAPA system"   @echo "                a LON-CAPA system"
  @echo "HTML: generate an HTML-formatted description of the LON-CAPA"   @echo "HTML: generate an HTML-formatted description of the LON-CAPA"
  @echo "      CVS files"   @echo "      CVS files"
    @echo "documentation_tree: compiles a documentation tree from the "
           @echo "                    CVS:doc directory"
  @echo "status: compare the TARGET filesystem with a compiled CVS "   @echo "status: compare the TARGET filesystem with a compiled CVS "
  @echo "        source directory"   @echo "        source directory"
  @echo "statuspost: post the results of "make status" to "   @echo "statuspost: post the results of "make status" to "
Line 38  help: Line 40  help:
  @echo "           CVS:doc/otherfiles/rpm_list.txt"   @echo "           CVS:doc/otherfiles/rpm_list.txt"
  @echo "rpmstatuspost: post the results of "make rpmstatus" to "   @echo "rpmstatuspost: post the results of "make rpmstatus" to "
  @echo "            TARGET/home/httpd/html/lon-status/rpmstatus.html"   @echo "            TARGET/home/httpd/html/lon-status/rpmstatus.html"
  @echo "cvsreport: look at the latest changes over the last week"  
   
 test: TEST_lpml_scripts TEST_system_dependencies TEST_web_layer  test: TEST_lpml_scripts TEST_system_dependencies TEST_web_layer
  @echo "ALL SYSTEM DEPENDENCY TESTS SUCCESSFUL"   @echo "ALL SYSTEM DEPENDENCY TESTS SUCCESSFUL"
Line 167  loncapaconfig: Line 168  loncapaconfig:
  cp LON-CAPA-loncapaconfig-3.1-1.i386.rpm \   cp LON-CAPA-loncapaconfig-3.1-1.i386.rpm \
  /mnt/drive/install.lon-capa.org/3.1/currentcdsource/RedHat/RPMS/.   /mnt/drive/install.lon-capa.org/3.1/currentcdsource/RedHat/RPMS/.
   
 install.lon-capa.org: cvsreport  documentation_tree: cvsreport
  install -d docs   install -d docs
  install ../../doc/build/cvsreport.html docs/cvsreport.html   install ../../doc/build/cvsreport.html docs/cvsreport.html
  install ../../doc/build/doc.html docs/index.html   install ../../doc/build/doc.html docs/index.html
Line 207  install.lon-capa.org: cvsreport Line 208  install.lon-capa.org: cvsreport
  rm -Rf docs   rm -Rf docs
   
 cvsreport:  cvsreport:
  # Header  
  echo "<H1>Automatically generated CVS report</H1>" > \  
  ../../doc/build/cvsreport.html  
  # General Date Info  
  echo "<H1>LON-CAPA Software Changes from `date --date='7 days ago' \  
  +\"%Y-%m-%d\"` to `date +\"%Y-%m-%d\"`</H1>" >> \  
  ../../doc/build/cvsreport.html  
  # General Alteration Info  
  echo "<P>Number of altered files:" >> ../../doc/build/cvsreport.html  
  cd ../..; cvs log -d ">`date --date='8 days ago' +\"%Y-%m-%d\"`" \  
  loncom CAPA doc packaging 2>/dev/null | perl \  
  loncom/build/cvsfilter.pl | grep '^Working file:' | cut -b15- | \  
  wc -l >> doc/build/cvsreport.html  
  # Listing of Altered Files  
  echo "</P><P>Altered files:</P><P><PRE>" >> \  
  ../../doc/build/cvsreport.html  
  cd ../..; cvs log -d ">`date --date='8 days ago' +\"%Y-%m-%d\"`" \  
  loncom CAPA doc packaging 2>/dev/null | \  
  perl loncom/build/cvsfilter.pl | grep '^Working file:' | cut -b15- \  
  >> doc/build/cvsreport.html  
  # Log entries for loncom  
  echo "</PRE></P><P>Log entries for <B>loncom</B>:</P><PRE>" >> \  
  ../../doc/build/cvsreport.html  
  cd ../../loncom; cvs log -d ">`date --date='8 days ago' \  
  +\"%Y-%m-%d\"`" . 2>/dev/null | perl ../loncom/build/cvsfilter.pl >> \  
  ../doc/build/cvsreport.html  
  # Log entries for CAPA  
  echo "</PRE></P><P>Log entries for <B>CAPA</B>:</P><PRE>" >> \  
  ../../doc/build/cvsreport.html  
  cd ../../CAPA; cvs log -d ">`date --date='8 days ago' \  
  +\"%Y-%m-%d\"`" . 2>/dev/null | perl ../loncom/build/cvsfilter.pl >> \  
  ../doc/build/cvsreport.html  
  # Log entries for doc  
  echo "</PRE></P><P>Log entries for <B>doc</B>:</P><PRE>" >> \  
  ../../doc/build/cvsreport.html  
  cd ../../doc; cvs log -d ">`date --date='8 days ago' \  
  +\"%Y-%m-%d\"`" . 2>/dev/null | perl ../loncom/build/cvsfilter.pl >> \  
  ../doc/build/cvsreport.html  
  # Log entries for packaging  
  echo "</PRE></P><P>Log entries for <B>packaging</B>:</P><PRE>" >> \  
  ../../doc/build/cvsreport.html  
  cd ../../packaging; cvs log -d ">`date --date='8 days ago' \  
  +\"%Y-%m-%d\"`" . 2>/dev/null | perl ../loncom/build/cvsfilter.pl >> \  
  ../doc/build/cvsreport.html  
  echo "</PRE></P>" >> ../../doc/build/cvsreport.html  
   
 clean:  clean:
  rm -Rf HTML   rm -Rf HTML

Removed from v.1.53  
changed lines
  Added in v.1.54


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>