Diff for /loncom/build/Makefile between versions 1.99 and 1.102

version 1.99, 2002/05/03 05:20:59 version 1.102, 2002/05/08 21:06:09
Line 8  DIST=$(DISTPROBE) Line 8  DIST=$(DISTPROBE)
 CATEGORY="development"  CATEGORY="development"
 SOURCE=../..  SOURCE=../..
 TARGET=""  TARGET=""
   DIRTARGET=loncapa
 NORESTORECONF="0"  NORESTORECONF="0"
 HOSTNAME=""  HOSTNAME=""
 LAUNCH=| perl  LAUNCH=| perl
Line 402  TEST_html2ps: Line 403  TEST_html2ps:
  exit 1; \   exit 1; \
  fi   fi
   
 documentation_tree: cvsreport  
  install -d docs  
  install $(SOURCE)/doc/build/cvsreport.html docs/cvsreport.html  
  install $(SOURCE)/doc/build/doc.html docs/index.html  
  install -d docs/hardware  
  install $(SOURCE)/doc/hardware/hardware.html \  
  docs/hardware/hardware.html  
  install -d docs/3.1  
  install $(SOURCE)/doc/build/install.html docs/3.1/index.html  
  install $(SOURCE)/doc/build/instructions_with_cd.html \  
  docs/3.1/instructions_with_cd.html  
  install $(SOURCE)/doc/build/libraryserverconfiguration.gif \  
  docs/3.1/libraryserverconfiguration.gif  
  install $(SOURCE)/doc/build/librarysystemsettings.gif \  
  docs/3.1/librarysystemsettings.gif  
  install -d docs/cvsupgrade  
  install $(SOURCE)/doc/build/cvsupgrade.html docs/cvsupgrade/index.html  
  install -d docs/upgrade  
  install $(SOURCE)/doc/build/upgrade.html docs/upgrade/index.html  
  install -d docs/reconfig  
  install $(SOURCE)/doc/build/reconfig.html docs/reconfig/index.html  
  install -d docs/3.1/otherfiles  
  install $(SOURCE)/doc/otherfiles/rpm_list.txt \  
  docs/3.1/otherfiles/rpm_list.txt  
  install $(SOURCE)/doc/build/loncapanetwork.html \  
  docs/loncapanetwork.html  
  install $(SOURCE)/doc/build/loncapanfs.html docs/loncapanfs.html  
  install $(SOURCE)/doc/build/loncapaappleshares.html \  
  docs/loncapaappleshares.html  
  install $(SOURCE)/doc/build/loncapasqldatabase.html \  
  docs/loncapasqldatabase.html  
  install $(SOURCE)/doc/build/loncapapasswords.html \  
  docs/loncapapasswords.html  
  install $(SOURCE)/doc/build/loncapapasswordauthentication.html \  
  docs/loncapapasswordauthentication.html  
  install $(SOURCE)/doc/build/loncapatimesync.html \  
  docs/loncapatimesync.html  
  install $(SOURCE)/doc/build/loncapamathequivalency.html \  
  docs/loncapamathequivalency.html  
  tar czvf install.lon-capa.org_docs.tar.gz docs  
  rm -Rf docs  
   
 tardist:  tardist:
  cat $(SOURCE)/doc/loncapafiles/buildfiles.lpml | \   cat $(SOURCE)/doc/loncapafiles/buildfiles.lpml | \
  perl lpml_parse.pl MANIFEST development default \   perl lpml_parse.pl MANIFEST development default \
Line 479  tardist: Line 438  tardist:
  chmod a+rx $(SOURCE)/CHECKRPMS   chmod a+rx $(SOURCE)/CHECKRPMS
  cp $(SOURCE)/doc/shortest_path_redhat7.2.txt $(SOURCE)/README   cp $(SOURCE)/doc/shortest_path_redhat7.2.txt $(SOURCE)/README
  cd $(SOURCE); \   cd $(SOURCE); \
  tar --no-recursion --numeric-owner --files-from MANIFEST \   sort MANIFEST | perl -nle 'print "$(DIRTARGET)/$$_"' > \
  -czf loncapa.tar.gz 2>WARNINGS || [ "0" == "0" ]   MANIFEST_loncapa; \
    ln -s . $(DIRTARGET); \
    tar --no-recursion --numeric-owner --files-from MANIFEST_loncapa \
    -h -czf loncapa.tar.gz 2>WARNINGS || [ "0" == "0" ]
  cat $(SOURCE)/WARNINGS | \   cat $(SOURCE)/WARNINGS | \
  xargs --replace=XXX echo '**** WARNING **** XXX' > WARNINGS   xargs --replace=XXX echo '**** WARNING **** XXX' > WARNINGS
  rm -f $(SOURCE)/WARNINGS   rm -f $(SOURCE)/WARNINGS
  make warningnote   make warningnote
   
 cvsreport:  
   
 clean:  clean:
  rm -f $(SOURCE)/README   rm -f $(SOURCE)/README
  rm -f $(SOURCE)/UPDATE   rm -f $(SOURCE)/UPDATE

Removed from v.1.99  
changed lines
  Added in v.1.102


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