Diff for /loncom/build/Makefile between versions 1.52 and 1.68

version 1.52, 2002/01/06 04:23:11 version 1.68, 2002/02/11 17:51:11
Line 7  DIST="default" Line 7  DIST="default"
 CATEGORY="development"  CATEGORY="development"
 SOURCE="../.."  SOURCE="../.."
 TARGET=""  TARGET=""
   NORESTORECONF="0"
   HOSTNAME=""
   LAUNCH=| perl
   OUTSTREAM=>
   SAVE=program.pl.$(TIMESTAMP)
   LAUNCHSAVE=$(OUTSTREAM) $(SAVE)
   METAMTARGET=""
   MTARGET=""
   
 all:   help: 
  @echo "*** You need to specify a valid target ***"   @echo "*** You need to specify a valid target ***"
  @echo "NOTE: You can specify options to your Makefile target."   @echo "NOTE: You can specify options to your Makefile target."
  @echo "(option) DIST can be redhat7.1, debian, redhat6.2, or default"   @echo "(option) DIST can be redhat7.1, debian, redhat6.2, or default"
  @echo "(option) CATEGORY can be runtime or development"   @echo "(option) CATEGORY can be runtime or development"
  @echo "(option) SOURCE is an absolute or relative directory path"   @echo "(option) SOURCE is an absolute or relative directory path"
  @echo "(option) TARGET is an absolute or relative directory path"   @echo "(option) TARGET is an absolute or relative directory path"
  @echo "(option) DIST can be redhat7.1, debian, redhat6.2, or default"  
  @echo "build: compile the CVS source tree"   @echo "build: compile the CVS source tree"
  @echo "install: install from a compiled CVS source tree to a "   @echo "install: install from a compiled CVS source tree to a "
  @echo "         specified TARGET destination on the filesystem"   @echo "         specified TARGET destination on the filesystem"
Line 30  all: Line 37  all:
  @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 39  all: Line 48  all:
  @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 55  TEST_lpml_scripts: Line 66  TEST_lpml_scripts:
 TEST_web_layer:  TEST_web_layer:
  @echo "Testing of web layers is not yet implemented."   @echo "Testing of web layers is not yet implemented."
   
   TEST_hosts_tab:
    @echo "Testing hosts.tab"
    @if (test -h ../hosts.tab); then \
    echo "there is a defined link; assume okay"; \
    else echo "**** ERROR **** hosts.tab not defined!" && \
        echo -n "You need to do one of the following within your " && \
        echo "CVS repository" && \
        echo "   1) cd ../; ln -s production_hosts.tab hosts.tab" && \
        echo "   2) cd ../; ln -s development_hosts.tab hosts.tab" && \
        echo "or 3) cd ../; ln -s rawhide_hosts.tab hosts.tab" && \
        echo "(you most likely want option #1, production_hosts.tab)" && \
        exit 1; \
    fi
   
   NET_hosts_tab:
    make TIMESTAMP=`date +"%s"` METAMTARGET="TRANSPORT" \
    MTARGET="hosts_tab" HOSTNAME="$(HOSTNAME)" lpmladm
   
   hosts_tab: TEST_hosts_tab
    cat ../../doc/loncapafiles/loncapafiles.lpml | \
    perl xfml_parse.pl ../../doc/loncapafiles/valid_hosts.xfml | \
    perl xfml_parse.pl ../../doc/loncapafiles/no_globs.xfml | \
    perl xfml_parse.pl ../../doc/loncapafiles/no_links.xfml | \
    perl lpml_parse.pl install $(CATEGORY) $(DIST) "$(SOURCE)" \
    "$(TARGET)" > Makefile.install
    make -f Makefile.install directories
    make -f Makefile.install files
    @echo "If hosts.tab has changed, restart httpd and loncontrol:"
    @echo "   /etc/rc.d/init.d/httpd restart"
    @echo "   /etc/rc.d/init.d/loncontrol restart"
   
   lpmladm:
    @if (test $(METAMTARGET) = "TRANSPORT"); then \
    echo "Transporting to $(HOSTNAME)"; \
    sudo make DIST=$(DIST) CATEGORY=$(CATEGORY) \
    SOURCE="$(SOURCE)" \
    TARGET="lpmladm.$(TIMESTAMP)" \
    NORESTORECONF="$(NORESTORECONF)" "$(MTARGET)"; \
    cd lpmladm.$(TIMESTAMP); \
    sudo tar czvf ../tarball$(TIMESTAMP).tar.gz .; \
    cd ..; scp tarball$(TIMESTAMP).tar.gz \
    lpmladm@$(HOSTNAME):~/tarball$(TIMESTAMP).tar.gz; \
    ssh lpmladm@$(HOSTNAME) sudo mv tarball$(TIMESTAMP).tar.gz /; \
    ssh lpmladm@$(HOSTNAME) sudo tar -x -z -v -C / \
    -p --same-owner -f \
    /tarball$(TIMESTAMP).tar.gz; \
    ssh lpmladm@$(HOSTNAME) sudo rm -f \
    /tarball$(TIMESTAMP).tar.gz; \
    elif (test $(METAMTARGET) = "LAUNCH"); then \
    echo "Launching process on $(HOSTNAME)"; \
    LAUNCHSAVE=$(OUTSTREAM) $(SAVE); \
    make DIST=$(DIST) CATEGORY=$(CATEGORY) SOURCE="$(SOURCE)" \
    TARGET="$(TARGET)" NORESTORECONF="$(NORESTORECONF)" \
    LAUNCH="$(LAUNCHSAVE)" "$(MTARGET)"; \
    scp $(SAVE) lpmladm@$(HOSTNAME):~/$(SAVE); \
    ssh lpmladm@$(HOSTNAME) sudo perl $(SAVE); \
    ssh lpmladm@$(HOSTNAME) sudo rm -f $(SAVE); \
    else \
    echo "**** ERROR **** Incorrect METAMTARGET"; \
    fi
   
 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 88  rpmstatuspost: rpmstatus Line 160  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 113  warningnote: Line 187  warningnote:
  cat WARNINGS; \   cat WARNINGS; \
  fi   fi
   
 install: Makefile.install Makefile  NET_webserverconf:
    make TIMESTAMP=`date +"%s"` METAMTARGET="LAUNCH" \
    MTARGET="webserverconf" HOSTNAME="$(HOSTNAME)" lpmladm
   
   webserverconf:
    cat ../../doc/loncapafiles/webserver.piml | \
    perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH)
   
   postinstall:
    make webserverconf
   
   install: TEST_hosts_tab Makefile.install Makefile
  echo -n "" > WARNINGS   echo -n "" > WARNINGS
  make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" \   make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
  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 137  Makefile.build: ../../doc/loncapafiles/l Line 223  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 | \
  cat setup_file_list.txt | perl make_rpm.pl setup 3.1 '' '' BinaryRoot   perl lpml_parse.pl make_rpm $(CATEGORY) $(DIST) $(SOURCE) $(TARGET) \
    > base_customizerpm.xml
    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
   
   DPKG:
    make TARGET='LON-CAPA-base' NORESTORECONF='1' install
    @echo "You will next need to follow instructions at:"
    @echo "http://people.debian.org/~jaldhar/make_package1.html"
    @echo "A directory with a snapshot of the debian package files"
    @echo "is LON-CAPA-base."
   
 BinaryRoot:  base_rpm_file_list:
  perl parse.pl ../../doc/loncapafiles/loncapafiles.html BinaryRoot   cat ../../doc/loncapafiles/loncapafiles.lpml | \
    perl lpml_parse.pl rpm_file_list $(CATEGORY) $(DIST) $(SOURCE) \
    'BinaryRoot' | sort > base_rpm_file_list.txt
   
   BinaryRoot: base_rpm_file_list
    make TARGET='BinaryRoot' NORESTORECONF='1' install
   
 loncapaconfig:  loncapaconfig:
  rm -Rf LoncapaconfigRoot   rm -Rf LoncapaconfigRoot
Line 168  loncapaconfig: Line 280  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  # Generates CVS:loncom/build/docs; root location of install.lon-capa.org
   doc:
    install -d docs
    install -m 0755 -d docs/icons
    install -m 0644 ../../doc/icons/[^C][^V]* docs/icons
    install -m 0755 -d docs/reconfig
    perl doc_template.pl ../../doc/templates/template.html \
    ../../doc/build/reconfig.html > docs/reconfig/index.html
    install -m 0755 -d docs/reconfig/confexamples
    install -m 0644 ../../doc/build/confexamples/[^C][^V]* \
    docs/reconfig/confexamples
    perl doc_template.pl ../../doc/templates/template.html \
    ../../doc/build/installindex.html > docs/index.html
    install -m 0755 -d docs/license
    perl doc_template.pl ../../doc/templates/template.html \
    ../../doc/build/license.html > docs/license/index.html
    install -m 0755 -d docs/contact
    perl doc_template.pl ../../doc/templates/template.html \
    ../../doc/build/contact.html > docs/contact/index.html
    install -m 0755 -d docs/faq
    perl doc_template.pl ../../doc/templates/template.html \
    ../../doc/build/faq.html > docs/faq/index.html
    cd docs; tar czvpf ../docs.tar.gz .
   
   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 208  install.lon-capa.org: cvsreport Line 344  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 -Rf LON-CAPA-base
    rm -f base_rpm_file_list.txt
    rm -f base_customizerpm.xml
    rm -f setup_rpm_file_list.txt
    rm -f docs.tar.gz
    rm -Rf docs
    rm -f program.pl*
    rm -Rf lpmladm.*
    make -f Makefile.cvs clean

Removed from v.1.52  
changed lines
  Added in v.1.68


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