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

version 1.53, 2002/01/06 04:32:39 version 1.59, 2002/01/09 23:10:46
Line 7  DIST="default" Line 7  DIST="default"
 CATEGORY="development"  CATEGORY="development"
 SOURCE="../.."  SOURCE="../.."
 TARGET=""  TARGET=""
   NORESTORECONF="0"
   
 help:   help: 
  @echo "*** You need to specify a valid target ***"   @echo "*** You need to specify a valid target ***"
Line 29  help: Line 30  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 41  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"   @echo "RPM: build LON-CAPA-base RPM from CVS repository"
    @echo "setup_RPM: build LON-CAPA-setup RPM from CVS repository"
    @echo "           handy for CD-ROM generation"
   
 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 57  TEST_web_layer: Line 62  TEST_web_layer:
 HTML:  HTML:
  install -d HTML   install -d HTML
  cp ../../doc/loncapafiles/*.gif HTML   cp ../../doc/loncapafiles/*.gif HTML
  perl parse.pl ../../doc/loncapafiles/loncapafiles.html HTML > \   cat ../../doc/loncapafiles/loncapafiles.lpml | \
  HTML/index.html   perl lpml_parse.pl html development default ../.. '' > HTML/index.html
   
 status:  status:
  install -d HTML   install -d HTML
Line 87  rpmstatuspost: rpmstatus Line 92  rpmstatuspost: rpmstatus
  cp RPMSTATUS/rpmstatus.html /home/httpd/html/lon-status/rpmstatus.html   cp RPMSTATUS/rpmstatus.html /home/httpd/html/lon-status/rpmstatus.html
   
 configinstall: Makefile.configinstall  configinstall: Makefile.configinstall
  make -f Makefile.configinstall SOURCE="../.." TARGET="" configfiles   make -f Makefile.configinstall SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
  perl loncaparestoreconfigurations suffix .lpmlnew   configfiles
    if (test "0" = $(NORESTORECONF)); then \
    perl loncaparestoreconfigurations suffix .lpmlnew; fi
   
 Makefile.configinstall: ../../doc/loncapafiles/loncapafiles.lpml lpml_parse.pl  Makefile.configinstall: ../../doc/loncapafiles/loncapafiles.lpml lpml_parse.pl
  cat ../../doc/loncapafiles/loncapafiles.lpml | \   cat ../../doc/loncapafiles/loncapafiles.lpml | \
  perl lpml_parse.pl configinstall $(CATEGORY) $(DIST) "../.." "" > \   perl lpml_parse.pl configinstall $(CATEGORY) $(DIST) "$(SOURCE)" \
  Makefile.configinstall   "$(TARGET)" > Makefile.configinstall
   
 warningnote:  warningnote:
  @if (test -s WARNINGS); then \   @if (test -s WARNINGS); then \
Line 118  install: Makefile.install Makefile Line 125  install: Makefile.install Makefile
  directories   directories
  make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" files   make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" files
  make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" links   make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" links
  make configinstall   make SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
    NORESTORECONF="$(NORESTORECONF)" configinstall
  make warningnote   make warningnote
   
 Makefile.install: ../../doc/loncapafiles/loncapafiles.lpml lpml_parse.pl  Makefile.install: ../../doc/loncapafiles/loncapafiles.lpml lpml_parse.pl
Line 136  Makefile.build: ../../doc/loncapafiles/l Line 144  Makefile.build: ../../doc/loncapafiles/l
  perl lpml_parse.pl build $(CATEGORY) $(DIST) "../.." "" > \   perl lpml_parse.pl build $(CATEGORY) $(DIST) "../.." "" > \
  Makefile.build   Makefile.build
   
 RPM: BinaryRoot  RPM: BinaryRoot base_rpm_file_list
  cat base_file_list.txt | perl make_rpm.pl base 3.1 '' '' BinaryRoot   cat ../../doc/loncapafiles/loncapafiles.lpml | perl lpml_parse.pl make_rpm $(CATEGORY) $(DIST) $(SOURCE) $(TARGET) > base_customizerpm.xml
  cat setup_file_list.txt | perl make_rpm.pl setup 3.1 '' '' BinaryRoot   cat base_rpm_file_list.txt | perl make_rpm.pl base 3.2 '' '' \
    BinaryRoot base_customizerpm.xml
   
   setup_RPM:
    echo "SetupBinaryRoot/etc/passwd" > setup_rpm_file_list.txt
    echo "SetupBinaryRoot/etc/group" >> setup_rpm_file_list.txt
    echo "SetupBinaryRoot/etc/hosts.deny" >> setup_rpm_file_list.txt
    echo "SetupBinaryRoot/home/www" >> setup_rpm_file_list.txt
    echo "SetupBinaryRoot/etc/pam.d/passwd" >> setup_rpm_file_list.txt
    echo "SetupBinaryRoot/etc/pam.d/login" >> setup_rpm_file_list.txt
    perl setup_rpm_binaryroot.pl
    cat setup_rpm_file_list.txt | perl make_rpm.pl setup 3.2 '' '' \
    SetupBinaryRoot customizerpm.xml
   
   
   base_rpm_file_list:
    cat ../../doc/loncapafiles/loncapafiles.lpml | \
    perl lpml_parse.pl rpm_file_list $(CATEGORY) $(DIST) $(SOURCE) \
    'BinaryRoot' | sort > base_rpm_file_list.txt
   
 BinaryRoot:  BinaryRoot: base_rpm_file_list
  perl parse.pl ../../doc/loncapafiles/loncapafiles.html BinaryRoot   make TARGET='BinaryRoot' NORESTORECONF='1' install
   
 loncapaconfig:  loncapaconfig:
  rm -Rf LoncapaconfigRoot   rm -Rf LoncapaconfigRoot
Line 167  loncapaconfig: Line 193  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 233  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
  rm -f Makefile.build   rm -f Makefile.build
  rm -f Makefile.install   rm -f Makefile.install
    rm -f Makefile.configinstall
    rm -Rf BinaryRoot
    rm -Rf SetupBinaryRoot
    rm -f base_rpm_file_list.txt
    rm -f base_customizerpm.xml
    rm -f setup_rpm_file_list.txt

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


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