File:  [LON-CAPA] / loncom / build / Makefile
Revision 1.168: download - view: text, annotated - select for diffs
Fri Aug 13 15:51:11 2004 UTC (19 years, 9 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- capture webserver conf errors to the WARNINGS file

    1: # The LearningOnline Network with CAPA
    2: 
    3: # $Id: Makefile,v 1.168 2004/08/13 15:51:11 albertel Exp $
    4: 
    5: # TYPICAL USAGE of this Makefile is primarily for two targets:
    6: # "make build" and "make install".
    7: # Many other targets and features are supported (see the initial
    8: # help targets).
    9: 
   10: # ======================================= Default settings for Makefile options
   11: DISTPROBE=`perl ./distprobe`
   12: DIST=$(DISTPROBE)
   13: CATEGORY="development"
   14: SOURCE=../..
   15: TARGET=""
   16: NORESTORECONF="0"
   17: HOSTNAME=""
   18: LAUNCH=| perl
   19: QUERYLAUNCH=> /tmp/loncapa_query.pl; perl /tmp/loncapa_query.pl
   20: OUTSTREAM=>
   21: SAVE=program.pl.$(TIMESTAMP)
   22: LAUNCHSAVE=$(OUTSTREAM) $(SAVE)
   23: METAMTARGET=""
   24: MTARGET=""
   25: VERSION=CVS_HEAD
   26: # The current working definition for "RELEASE" is: changes not in the software,
   27: # but in the operating system dependent packaging of the software.  Thus, the
   28: # generic tarball releases do not need to have a release number specified.
   29: RELEASE=1 # As a general rule for now, this is always being set to "1".
   30: DIRTARGET=loncapa-$(VERSION)
   31: LOCALAUTHPATH=/home/httpd/lib/perl
   32: 
   33: # =============================================== Help targets for the Makefile
   34: # If 'make' is run without any arguments, the 'help' target is called since
   35: # it is the first target.
   36: help:
   37: 	@echo "*** You need to specify a valid target ***"
   38: 	@echo "To get a list of valid targets: \"make help_TARGETS\""
   39: 	@echo "To get a list of valid options: \"make help_OPTIONS\""
   40: 	@echo " "
   41: 	@echo "Typically invoked targets are:"
   42: 	@echo "    make build"
   43: 	@echo "    make install"
   44: 	@echo "    make test"
   45: 	@echo "    make clean"
   46: 
   47: help_OPTIONS:
   48: 	@echo "* ADJUSTABLE OPTIONS *"
   49: 	@echo "(option) DIST can be redhat7, debian, redhat6.2, or default"
   50: 	@echo "         You probably do not need to specify this; it is"
   51: 	@echo "         automatically probed for."
   52: 	@echo "(option) CATEGORY can be 'runtime' or 'development'; currently"
   53: 	@echo "         the 'development' setting is the most reliable;"
   54: 	@echo "         eventually, production machines should be using the"
   55: 	@echo "         'runtime' settings"
   56: 	@echo "(option) SOURCE is an absolute or relative directory path."
   57: 	@echo "         SOURCE corresponds to the root directory of the"
   58: 	@echo "         loncapa source release"
   59: 	@echo "(option) TARGET is an absolute or relative directory path."
   60: 	@echo "         This is where files will be installed on your system."
   61: 	@echo "         Typically, this should be set to nothing (which"
   62: 	@echo "         corresponds to the '/' root of the entire filesystem)."
   63: 	@echo "(option) NORESTORECONF, when set to a non-zero value, stops"
   64: 	@echo "         filesystem upgrades from overwriting existing "
   65: 	@echo "         configuration files.  Ordinarily, NORESTORECONF=0, "
   66: 	@echo "         because the existing configuration files are safely"
   67: 	@echo "         dealt with (or so one hopes... :) )."
   68: 	@echo "(option) HOSTNAME specifies the name of a remote server for"
   69: 	@echo "         which a NET_* Makefile target should be launched"
   70: 	@echo "(option) VERSION; especially useful for the 'tardist' target"
   71: 	@echo "         this tags the tarball file and internal directories"
   72: 	@echo "         with a specific version string (conventionally "
   73: 	@echo "         numeric)"
   74: 
   75: help_TARGETS:
   76: 	@echo "*** RUNNING TESTS TO ENSURE SOLID PERFORMANCE ***"
   77: 	@echo "test: test different parts of the LON-CAPA system (TEST_*)."
   78: 	@echo "      Makefile-dependent processes as well as horizontal and"
   79: 	@echo "      vertical aspects of the LON-CAPA system architecture"
   80: 	@echo "      are all tested."
   81: 	@echo "TEST_lpml_scripts: make sure that the system can process"
   82: 	@echo "                   the Linux Packaging Markup Language."
   83: 	@echo "                   This is neither horizontal or vertical"
   84: 	@echo "                   testing.  The idea is to make sure that"
   85: 	@echo "                   the installation software itself works"
   86: 	@echo "                   as expected."
   87: 	@echo "TEST_system_dependencies: make sure that all needed system "
   88: 	@echo "                          components are active and present "
   89: 	@echo "                          on the server such as perl modules"
   90: 	@echo "                          and the MySQL database"
   91: 	@echo "                          (horizontal testing)"
   92: 	@echo "TEST_web_layer: mimic a login and various vertical actions on "
   93: 	@echo "                a LON-CAPA system"
   94: 	@echo "TEST_hosts_and_domain_tab: make sure that a "
   95: 	@echo "        loncapa/loncom/hosts.tab and loncapa/loncom/domain.tab"
   96: 	@echo "        file is specified for installation"
   97: 	@echo "TEST_html2ps: test for the presence of html2ps which is needed"
   98: 	@echo "              for making a PDF compilation for pdfdoc"
   99: 	@echo "*** GENERAL TARGETS SUCH AS 'build' AND 'install' ***"
  100: 	@echo "build: compile the source tree"
  101: 	@echo "buildflag: a semaphore that helps educate the user to run"
  102: 	@echo "           'make build' first before running 'make install'"
  103: 	@echo "configinstall: install configuration files and restore with"
  104: 	@echo "               prior information"
  105: 	@echo "install: install from a ***compiled*** source tree"
  106: 	@echo "         (see make build) to a specified TARGET destination"
  107: 	@echo "         on the filesystem (default setting is TARGET=/)."
  108: 	@echo "rawinstall: just install files, links and directories without"
  109: 	@echo "            any bells or whistles (e.g. double-checking"
  110: 	@echo "            configurations, fine-tuning webserver, etc.)"
  111: 	@echo "hosts_and_domain_tab: install the hosts.tab and domain.tab" 
  112: 	@echo "                      to the filesystem"
  113: 	@echo "webserverconf: fine-tune the web server configuration;"
  114: 	@echo "               make sure the proper 'Include' statements"
  115: 	@echo "               are appended to httpd.conf"
  116: 	@echo "vanillatar: generate top-level files such as README, UPDATE,"
  117: 	@echo "            CHECKRPMS, and TEST (needed by tardist)"
  118: 	@echo "tardist: build a tarball that will upgrade the software on a "
  119: 	@echo "         system"
  120: 	@echo "sanitycheck: probe for common errors and recommend fixes to"
  121: 	@echo "             the user"
  122: 	@echo "accesscount_seed: Migrate the access counting mechanism from "
  123: 	@echo "    nohist_reseval.db to nohist_accesscount.db."
  124: 	@echo "modify_config_files: Perform automatic update of the "
  125: 	@echo "    configuration files for yum and MySQL."
  126: 	@echo "ntpcheck: test to see if ntp is installed and running."
  127: 	@echo "cron_lpmlcheck: remove cron file /etc/cron.d/loncapa.lpml."
  128: 	@echo "rpmcheck: test to see if rpms known to confict are installed."
  129: 	@echo "updatequery: solicit the user for machine configuration"
  130: 	@echo "             information; to be incorporated during an update"
  131: 	@echo "             procedure (via the UPDATE command)"
  132: 	@echo "postinstall: double-check things after installation"
  133: 	@echo "VERSION: tag the filesystem with version information inside"
  134: 	@echo "         /etc/loncapa-release and"
  135: 	@echo "         /home/httpd/html/lon-status/version.txt"
  136: 	@echo "aboutVERSION: place version information inside about.html"
  137: 	@echo "              and loncapa_apache.conf"
  138: 	@echo "*** Makefile.* TARGETS BUILT DYNAMICALLY FROM loncapafiles.lpml ***"
  139: 	@echo "Makefile.configinstall: generate a Makefile for configuration"
  140: 	@echo "                        files; built dynamically from"
  141: 	@echo "                        loncapafiles.lpml"
  142: 	@echo "Makefile.build: generate a Makefile for compiling"
  143: 	@echo "                files inside the source directory; "
  144: 	@echo "                Makefile.build is generated from"
  145: 	@echo "                loncapafiles.lpml"
  146: 	@echo "Makefile.install: generate a Makefile for installing"
  147: 	@echo "                  files; built dynamically from"
  148: 	@echo "                  loncapafiles.lpml"
  149: 	@echo "*** TARGETS FOR OPERATING ON FILESYSTEMS ACROSS THE NETWORK ***"
  150: 	@echo "lpmladm: coordinates username=lpmladm mediated secure shell"
  151: 	@echo "         processes; needed for the NET_* targets"
  152: 	@echo "NET_hosts_and_domain_tab: install the hosts.tab and domain.tab"
  153: 	@echo "                          to a filesystem elsewhere"
  154: 	@echo "                          on the network"
  155: 	@echo "NET_webserverconf: fine-tune the web server configuration on a"
  156: 	@echo "                   filesystem elsewhere on the network"
  157: 	@echo "NET_rawinstall: launch the rawinstall target on a filesystem"
  158: 	@echo "                elsewhere on the network"
  159: 	@echo "*** TARGETS FOR MAKING LISTS (MANIFESTS) OF LON-CAPA FILES ***"
  160: 	@echo "MANIFEST_all: generate a list of all files to be included in"
  161: 	@echo "              the distributed tarball"
  162: 	@echo "MANIFEST_cvs: essentially a list of all CVS/Entries files used"
  163: 	@echo "              for 'time-checking' intelligence"
  164: 	@echo "MANIFEST_lpml: a list of all LON-CAPA files to be installed,"
  165: 	@echo "               compile from, used as building software, and"
  166: 	@echo "               testing"
  167: 	@echo "MANIFEST_vanillatar: 'README'-type top-level files that a user"
  168: 	@echo "                     of the distributed tarball would first"
  169: 	@echo "                     look at and work with"
  170: 	@echo "*** STATUS REPORT TARGETS ***"
  171: 	@echo "warningnote: analyze the WARNINGS file and produce a synopsis"
  172: 	@echo "             and recommended action to the user"
  173: 	@echo "HTML: generate an HTML-formatted description of the LON-CAPA"
  174: 	@echo "      source files"
  175: 	@echo "status: compare the TARGET filesystem with a compiled loncapa "
  176: 	@echo "        source directory"
  177: 	@echo "statuspost: post the results of "make status" to "
  178: 	@echo "            TARGET/home/httpd/html/lon-status/filestatus.html"
  179: 	@echo "rpmstatus: compare the rpms on a system to defined lists "
  180: 	@echo "           loncapa/doc/otherfiles/cd_rpms and "
  181: 	@echo "           loncapa/doc/otherfiles/rpm_list.txt"
  182: 	@echo "rpmstatuspost: post the results of 'make rpmstatus' to "
  183: 	@echo "            TARGET/home/httpd/html/lon-status/rpmstatus.html"
  184: 	@echo "*** ALTERNATIVE PACKAGING TARGETS ***"
  185: 	@echo "RPM: build LON-CAPA-base RPM from loncapa source repository"
  186: 	@echo "     (still under development)"
  187: 	@echo "DPKG: build a loncapa Debian package from loncapa source"
  188: 	@echo "      repository (still under development)"
  189: 	@echo "base_rpm_file_list: create a file listing to be used for"
  190: 	@echo "                    generating an RPM software package"
  191: 	@echo "BinaryRoot: create a BinaryRoot directory to be used for"
  192: 	@echo "            generating an RPM software package"
  193: 	@echo "*** MASTER DOCUMENTATION TARGETS ***"	
  194: 	@echo "doc: generate web-page documentation for install.lon-capa.org"
  195: 	@echo "     (and eventually for documentation on installed machines)"
  196: 	@echo "pdfdoc: make a PDF-formatted compilation of all installation"
  197: 	@echo "        documentation"
  198: 	@echo "*** KEEPING THINGS CLEAN ***"
  199: 	@echo "clean: remove any files that might (even by remote chance)"
  200: 	@echo "       interfere with rebuilding/recompiling software"
  201: 	@echo "reallyclean: remove all files that were generated during"
  202: 	@echo "             building or compilation of the software"
  203: 	@echo "uninstall: remove all directories that do not contain files"
  204: 	@echo "           from other software packages and that do not contain"
  205: 	@echo "           student and instructor data; NOTE THAT THIS IS"
  206: 	@echo "           INTERACTIVE--you will be given a final chance"
  207: 	@echo "           to look at what will and will not be deleted."
  208: 	@echo "           Still, be careful.  This is a very new target and is"
  209: 	@echo "           an alpha-level software feature for now."
  210: 	@echo "backup: rolls a tarball backup of all important student and "
  211: 	@echo "        instructor data (NOT YET IMPLEMENTED)"
  212: 	@echo "restore: reseeds a LON-CAPA server with tarball backups "
  213: 	@echo "         generated by \"make backup\" (NOT YET IMPLEMENTED)"
  214: 	@echo "*** AUXILIARY TESTS ***"
  215: 	@echo "localauth: tests to see if localauth exists or not and run"
  216: 	@echo "           appropriate tests"
  217: 	@echo "*** A HELPFUL DEPENDENCY ***"
  218: 	@echo "alwaysrun: blank target that is a dependency for targets"
  219: 	@echo "           that should \"always run\""
  220: 
  221: # =========================== *** RUNNING TESTS TO ENSURE SOLID PERFORMANCE ***
  222: 
  223: test: TEST_lpml_scripts TEST_system_dependencies TEST_web_layer
  224: 	@echo "ALL SYSTEM DEPENDENCY TESTS SUCCESSFUL"
  225: 
  226: TEST_system_dependencies:
  227: 	@echo "TESTING SYSTEM DEPENDENCIES"
  228: 	cd system_dependencies; make
  229: 
  230: TEST_lpml_scripts:
  231: 	@echo "TESTING LPML INSTALLATION CODE"
  232: 	cd ../test; perl filecomparetest.pl
  233: 
  234: TEST_web_layer:
  235: 	@echo "TESTING WEB LAYER"
  236: 	cd weblayer_test; make
  237: 
  238: TEST_hosts_tab:
  239: 	@echo "Testing hosts.tab"
  240: 	@if (test -e ../hosts.tab); then \
  241: 		echo "there is a defined link or file; assume okay"; \
  242: 	else echo "**** ERROR **** hosts.tab not defined!" && \
  243: 	     echo -n "You need to do one of the following within your " && \
  244: 	     echo "CVS repository (cd loncapa/loncom)" && \
  245: 	     echo "   1) ln -s production_hosts.tab hosts.tab" && \
  246: 	     echo "   2) ln -s development_hosts.tab hosts.tab" && \
  247: 	     echo "or 3) ln -s rawhide_hosts.tab hosts.tab" && \
  248: 	     echo "(you most likely want option #1, production_hosts.tab)" && \
  249: 	     exit 1; \
  250: 	fi
  251: 
  252: TEST_domain_tab:
  253: 	@echo "Testing domain.tab"
  254: 	@if (test -e ../domain.tab); then \
  255: 		echo "there is a defined link or file; assume okay"; \
  256: 	else echo "**** ERROR **** domain.tab not defined!" && \
  257: 	     echo -n "You need to do one of the following within your " && \
  258: 	     echo "CVS repository (cd loncapa/loncom)" && \
  259: 	     echo "   1) ln -s production_domain.tab domain.tab" && \
  260: 	     echo "   2) ln -s development_domain.tab domain.tab" && \
  261: 	     echo "or 3) ln -s rawhide_domain.tab domain.tab" && \
  262: 	     echo "(you most likely want option #1, production_domain.tab)" && \
  263: 	     exit 1; \
  264: 	fi
  265: 
  266: TEST_html2ps:
  267: 	@if (test -e /usr/local/html2ps/bin/html2ps); then \
  268: 		echo "I can find html2ps; assume okay"; \
  269: 	else \
  270: 	echo "**** ERROR **** cannot find /usr/local/html2ps/bin/html2ps!" && \
  271:         echo "Please visit http://www.tdb.uu.se/~jan/html2ps.html" && \
  272: 	exit 1; \
  273: 	fi
  274: 
  275: # ======================= *** GENERAL TARGETS SUCH AS 'build' AND 'install' ***
  276: 
  277: build: Makefile.build pod2html.sh pod2man.sh
  278: 	install -d $(SOURCE)/doc/man
  279: 	install -d $(SOURCE)/doc/scripts
  280: 	install -d $(SOURCE)/doc/lib/perl/Apache
  281: 	echo -n "" > WARNINGS
  282: 	make -f Makefile.build all
  283: 	echo '1' > buildflag
  284: 	make warningnote
  285: 
  286: buildflag:
  287: 	@echo "**** ERROR **** You need to run 'make build' first" > WARNINGS
  288: 	make warningnote
  289: 	@need_to_run_make_build_first 2>/dev/null
  290: 
  291: configinstall: Makefile.configinstall
  292: 	make -f Makefile.configinstall SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
  293: 	configfiles
  294: 	if (test "0" = $(NORESTORECONF)); then \
  295: 	perl loncaparestoreconfigurations suffix .lpmlnew; fi
  296: 
  297: install: buildflag VERSION TEST_hosts_tab TEST_domain_tab Makefile.install Makefile
  298: 	echo -n "" > WARNINGS
  299: 	make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
  300: 	directories
  301: 	make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" files
  302: 	make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" links
  303: 	make SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
  304: 	NORESTORECONF="$(NORESTORECONF)" configinstall
  305: 	make postinstall
  306: 	make warningnote
  307: 	@echo "You can now run 'make test' to see if your system is ready to go!"
  308: #	@echo "NOTE THAT YOUR SYSTEM MUST HAVE MYSQL WITH A USER=\"www\" AND"
  309: #	@echo -n "PASSWORD=\"localhostkey\" FOR www\@localhost"
  310: #	@echo -n "(YOU MAY NEED TO REINITIALIZE YOUR MYSQL www\@localhost USER)"
  311: #	@echo -n "Please see http://install.lon-capa.org/ for more information"
  312: 
  313: rawinstall: VERSION Makefile.install Makefile
  314: 	echo -n "" > WARNINGS
  315: 	make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
  316: 	directories
  317: 	make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" files
  318: 	make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" links
  319: 	make SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
  320: 	NORESTORECONF="$(NORESTORECONF)" configinstall
  321: 
  322: hosts_and_domain_tab: TEST_hosts_tab TEST_domain_tab
  323: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  324: 	perl xfml_parse.pl $(SOURCE)/doc/loncapafiles/valid_hosts.xfml | \
  325: 	perl lpml_parse.pl install $(CATEGORY) $(DIST) "$(SOURCE)" \
  326: 	"$(TARGET)" > Makefile.install
  327: 	make -f Makefile.install directories
  328: 	make -f Makefile.install files
  329: 	@echo "If hosts.tab or domain.tab has changed, restart httpd and loncontrol:"
  330: 	@echo "   /etc/rc.d/init.d/httpd restart"
  331: 	@echo "   /etc/rc.d/init.d/loncontrol restart"
  332: 
  333: webserverconf:
  334: 	cat $(SOURCE)/doc/loncapafiles/webserver.piml | \
  335: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  336: 	tee -a WARNINGS
  337: 
  338: # ---------------- Top-level files such as README, UPDATE, CHECKRPMS, and TEST
  339: vanillatar:
  340: 	# --------------------------- Point UPDATE to the internal make process
  341: 	echo '#!/bin/sh' > $(SOURCE)/UPDATE
  342: 	echo 'touch loncom/build/WARNINGS' >> $(SOURCE)/UPDATE;
  343: 	echo 'ln -s loncom/build/WARNINGS WARNINGS' >> $(SOURCE)/UPDATE;
  344: 	echo 'cd loncom/build; make build' >> $(SOURCE)/UPDATE
  345: 	echo 'make rawinstall' >> $(SOURCE)/UPDATE
  346: 	echo 'make configinstall' >> $(SOURCE)/UPDATE
  347: 	echo 'make updatequery' >> $(SOURCE)/UPDATE
  348: 	echo 'make hosts_and_domain_tab' >> $(SOURCE)/UPDATE
  349: 	echo 'make postinstall' >> $(SOURCE)/UPDATE
  350: 	echo 'make run_searchcat' >> $(SOURCE)/UPDATE
  351: 	echo 'make aboutVERSION' >> $(SOURCE)/UPDATE
  352: 	echo 'make warningnote' >> $(SOURCE)/UPDATE
  353: 	# ----------------------------- Point TEST to the internal make process
  354: 	echo '#!/bin/sh' > $(SOURCE)/TEST
  355: 	echo 'cd loncom/build; make test' >> $(SOURCE)/TEST
  356: 	echo 'cd system_dependencies || cd loncom/build/system_dependencies; cp -v CPAN_STATUS_REPORT ../../../CPAN_STATUS_REPORT' >> $(SOURCE)/TEST
  357: 	# ----------------------------- Copy CHECKRPMS to the vanilla top-level
  358: 	cp -v $(SOURCE)/loncom/build/CHECKRPMS $(SOURCE)/CHECKRPMS
  359: 	# ----------------------- vanilla executables must indeed be executable
  360: 	chmod a+rx $(SOURCE)/UPDATE
  361: 	chmod a+rx $(SOURCE)/TEST
  362: 	chmod a+rx $(SOURCE)/CHECKRPMS
  363: 	# -------------------------------- Copy README to the vanilla top-level
  364: 	#cp -v $(SOURCE)/doc/shortest_path_redhat7.2.txt $(SOURCE)/README
  365: 
  366: tardist:
  367: 	make MANIFEST_all
  368: 	make vanillatar
  369: 	# -------------------------------------------------------- Make tardist
  370: 	@cd $(SOURCE); \
  371: 	if (test -h $(DIRTARGET)); then \
  372: 		echo "$(DIRTARGET) link already defined; assume okay"; \
  373: 	else \
  374: 		ln -s . $(DIRTARGET); \
  375: 	fi
  376: 	cp -v $(SOURCE)/loncom/license/about.html \
  377: 	$(SOURCE)/loncom/license/about.html.orig
  378: 	cp -v $(SOURCE)/loncom/loncapa_apache.conf \
  379: 	$(SOURCE)/loncom/loncapa_apache.conf.orig
  380: 	make aboutVERSION
  381: 	cd $(SOURCE); \
  382: 	tar --no-recursion --numeric-owner --files-from MANIFEST \
  383: 	-h -czf $(DIRTARGET).tar.gz 2>tar_WARNINGS || [ "0" == "0" ]
  384: 	mv -v $(SOURCE)/loncom/license/about.html.orig \
  385: 	$(SOURCE)/loncom/license/about.html
  386: 	mv -v $(SOURCE)/loncom/loncapa_apache.conf.orig \
  387: 	$(SOURCE)/loncom/loncapa_apache.conf
  388: 	cat $(SOURCE)/tar_WARNINGS | \
  389: 	xargs --replace=XXX echo '**** WARNING **** XXX' > WARNINGS
  390: 	rm -f $(SOURCE)/tar_WARNINGS
  391: 	make warningnote
  392: 
  393: ntpcheck:
  394: 	cat $(SOURCE)/doc/loncapafiles/ntpcheck.piml | \
  395: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  396: 	tee -a WARNINGS
  397: 
  398: cron_lpmlcheck:
  399: 	cat $(SOURCE)/doc/loncapafiles/cron_lpmlcheck.piml | \
  400: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  401: 	tee -a WARNINGS
  402: 
  403: 
  404: rpmcheck:
  405: 	cat $(SOURCE)/doc/loncapafiles/rpmcheck.piml | \
  406: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  407: 	tee -a WARNINGS
  408: 
  409: sanitycheck:
  410: 	cat $(SOURCE)/doc/loncapafiles/sanitycheck.piml | \
  411: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  412: 	tee -a WARNINGS
  413: 
  414: updatequery:
  415: 	cat $(SOURCE)/doc/loncapafiles/updatequery.piml | \
  416: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(QUERYLAUNCH)
  417: 
  418: run_searchcat:
  419: 	cat $(SOURCE)/doc/loncapafiles/run_searchcat.piml | \
  420: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(QUERYLAUNCH)
  421: 
  422: accesscount_seed:
  423: 	cat $(SOURCE)/doc/loncapafiles/accesscount_seed.piml | \
  424: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  425: 	tee -a WARNINGS
  426: 
  427: modify_config_files:
  428: 	cat $(SOURCE)/doc/loncapafiles/modify_config_files.piml | \
  429: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  430: 	tee -a WARNINGS
  431: 
  432: reseval_fixup:
  433: 	cat $(SOURCE)/doc/loncapafiles/reseval_fixup.piml | \
  434: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  435: 	tee -a WARNINGS
  436: 
  437: clearoutoldspreadsheetcache:
  438: 	cat $(SOURCE)/doc/loncapafiles/clearoutoldspreadsheetcache.piml | \
  439: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  440: 	tee -a WARNINGS
  441: 
  442: sendmail_fix:
  443: 	cat $(SOURCE)/doc/loncapafiles/sendmail_fix.piml | \
  444: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  445: 	tee -a WARNINGS
  446: 
  447: ownership_fix:
  448: 	cat $(SOURCE)/doc/loncapafiles/ownership_fix.piml | \
  449: 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
  450: 	tee -a WARNINGS
  451: 
  452: postinstall:
  453: 	make webserverconf
  454: 	make reseval_fixup
  455: 	make accesscount_seed
  456: 	make modify_config_files
  457: 	make clearoutoldspreadsheetcache
  458: 	make rpmcheck
  459: 	make ntpcheck
  460: 	make cron_lpmlcheck
  461: 	make sanitycheck
  462: 	make sendmail_fix
  463: 	make ownership_fix
  464: 
  465: VERSION:
  466: 	install -d $(TARGET)/etc
  467: 	echo -n "LON-CAPA release $(VERSION)-" > $(TARGET)/etc/loncapa-release
  468: 	date +"%Y%m%d" >> $(TARGET)/etc/loncapa-release
  469: 	install -d $(TARGET)/home/httpd/html/lon-status
  470: 	echo -n "$(VERSION)-" > $(TARGET)/home/httpd/html/lon-status/version.txt
  471: 	date +"%Y%m%d" >> $(TARGET)/home/httpd/html/lon-status/version.txt
  472: 
  473: aboutVERSION:
  474: 	cat $(SOURCE)/loncom/license/about.html | \
  475: 	perl -e '$$d=`date +"%Y%m%d"`;chomp($$d);while(<>){s/\<\!\-\- VERSION \-\-\>/$(VERSION)-$$d/; print;}' > \
  476: 	$(SOURCE)/loncom/license/about.html.new
  477: 	mv -v $(SOURCE)/loncom/license/about.html.new \
  478: 	$(SOURCE)/loncom/license/about.html
  479: 	cat $(SOURCE)/loncom/loncapa_apache.conf | \
  480: 	perl -e '$$d=`date +"%Y%m%d"`;chomp($$d);while(<>){s/\<\!\-\- VERSION \-\-\>/$(VERSION)-$$d/; print;}' > \
  481: 	$(SOURCE)/loncom/loncapa_apache.conf.new
  482: 	mv -v $(SOURCE)/loncom/loncapa_apache.conf.new \
  483: 	$(SOURCE)/loncom/loncapa_apache.conf
  484: 
  485: # ========= *** Makefile.* TARGETS BUILT DYNAMICALLY FROM loncapafiles.lpml ***
  486: 
  487: Makefile.configinstall: $(SOURCE)/doc/loncapafiles/loncapafiles.lpml \
  488:                         lpml_parse.pl
  489: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  490: 	perl lpml_parse.pl configinstall $(CATEGORY) $(DIST) "$(SOURCE)" \
  491: 	"$(TARGET)" > Makefile.configinstall
  492: 
  493: Makefile.build: $(SOURCE)/doc/loncapafiles/loncapafiles.lpml lpml_parse.pl
  494: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  495: 	perl lpml_parse.pl build $(CATEGORY) $(DIST) "$(SOURCE)" "$(TARGET)" \
  496: 	> Makefile.build
  497: 
  498: Makefile.install: alwaysrun
  499: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  500: 	perl lpml_parse.pl install $(CATEGORY) $(DIST) "$(SOURCE)" \
  501: 	"$(TARGET)" > Makefile.install
  502: 
  503: # ============= *** TARGETS FOR OPERATING ON FILESYSTEMS ACROSS THE NETWORK ***
  504: 
  505: lpmladm:
  506: 	@if (test $(METAMTARGET) = "TRANSPORT"); then \
  507: 		echo "Transporting to $(HOSTNAME)"; \
  508: 		sudo make DIST=$(DIST) CATEGORY=$(CATEGORY) \
  509: 		SOURCE="$(SOURCE)" \
  510: 		TARGET="lpmladm.$(TIMESTAMP)" \
  511: 		NORESTORECONF="$(NORESTORECONF)" "$(MTARGET)"; \
  512: 		cd lpmladm.$(TIMESTAMP); \
  513: 		sudo tar czvf ../tarball$(TIMESTAMP).tar.gz .; \
  514: 		cd ..; scp tarball$(TIMESTAMP).tar.gz \
  515: 		lpmladm@$(HOSTNAME):~/tarball$(TIMESTAMP).tar.gz; \
  516: 		ssh lpmladm@$(HOSTNAME) sudo mv tarball$(TIMESTAMP).tar.gz /; \
  517: 		ssh lpmladm@$(HOSTNAME) sudo tar -x -z -v -C / \
  518: 		-p --same-owner -f \
  519: 		/tarball$(TIMESTAMP).tar.gz; \
  520: 		ssh lpmladm@$(HOSTNAME) sudo rm -f \
  521: 		/tarball$(TIMESTAMP).tar.gz; \
  522: 	elif (test $(METAMTARGET) = "LAUNCH"); then \
  523: 		echo "Launching process on $(HOSTNAME)"; \
  524: 		LAUNCHSAVE=$(OUTSTREAM) $(SAVE); \
  525: 		make DIST=$(DIST) CATEGORY=$(CATEGORY) SOURCE="$(SOURCE)" \
  526: 		TARGET="$(TARGET)" NORESTORECONF="$(NORESTORECONF)" \
  527: 		LAUNCH="$(LAUNCHSAVE)" "$(MTARGET)"; \
  528: 		scp $(SAVE) lpmladm@$(HOSTNAME):~/$(SAVE); \
  529: 		ssh lpmladm@$(HOSTNAME) sudo perl $(SAVE); \
  530: 		ssh lpmladm@$(HOSTNAME) sudo rm -f $(SAVE); \
  531: 	else \
  532: 		echo "**** ERROR **** Incorrect METAMTARGET"; \
  533: 	fi
  534: 
  535: NET_hosts_and_domain_tab:
  536: 	make TIMESTAMP=`date +"%s"` METAMTARGET="TRANSPORT" \
  537: 	MTARGET="hosts_and_domain_tab" HOSTNAME="$(HOSTNAME)" lpmladm
  538: 
  539: NET_webserverconf:
  540: 	make TIMESTAMP=`date +"%s"` METAMTARGET="LAUNCH" \
  541: 	MTARGET="webserverconf" HOSTNAME="$(HOSTNAME)" lpmladm
  542: 
  543: NET_rawinstall:
  544: 	make TIMESTAMP=`date +"%s"` METAMTARGET="TRANSPORT" \
  545: 	MTARGET="rawinstall" HOSTNAME="$(HOSTNAME)" lpmladm
  546: 
  547: # ============== *** TARGETS FOR MAKING LISTS (MANIFESTS) OF LON-CAPA FILES ***
  548: 
  549: MANIFEST_all:
  550: 	# --------------------------------------------------------- start clean
  551: 	rm -f $(SOURCE)/MANIFEST
  552: 	make MANIFEST_lpml
  553: 	make MANIFEST_vanillatar
  554: 	make MANIFEST_cvs
  555: 	# ---------------------------------- might as well include the MANIFEST
  556: 	echo 'MANIFEST' >> $(SOURCE)/MANIFEST
  557: 	# ------------------------------------------ hosts.tab are belong to us
  558: 	echo 'loncom/rawhide_hosts.tab' >> $(SOURCE)/MANIFEST
  559: 	echo 'loncom/production_hosts.tab' >> $(SOURCE)/MANIFEST
  560: 	echo 'loncom/development_hosts.tab' >> $(SOURCE)/MANIFEST
  561: 	echo 'loncom/production_domain.tab' >> $(SOURCE)/MANIFEST
  562: 	echo 'loncom/development_domain.tab' >> $(SOURCE)/MANIFEST
  563: 	# ------------------ Files needed for dynamically generated directories
  564: 	echo 'doc/man' >> $(SOURCE)/MANIFEST
  565: 	echo 'doc/lib' >> $(SOURCE)/MANIFEST
  566: 	echo 'doc/lib/perl' >> $(SOURCE)/MANIFEST
  567: 	echo 'doc/lib/perl/Apache' >> $(SOURCE)/MANIFEST
  568: 	echo 'doc/scripts' >> $(SOURCE)/MANIFEST
  569: 	# --------------------------------------------------- Clean up MANIFEST
  570: 	cd $(SOURCE); \
  571: 	sort MANIFEST | perl -nle 'print "$(DIRTARGET)/$$_"' | \
  572: 	perl -nle 's/\w+\/\.\.\///g;s/\w+\/\.\.\///g;print' | \
  573: 	perl -nle 's/\w+\/\.\.\///g;s/\w+\/\.\.\///g;print' | \
  574: 	perl -nle 's/\w+\/\.\.\///g;s/\w+\/\.\.\///g;print' | \
  575: 	perl -nle 's/\/\.\//\//g;print' | sort | uniq > \
  576: 	MANIFEST_loncapa
  577: 	cd $(SOURCE); mv -v MANIFEST_loncapa MANIFEST
  578: 
  579: # --------------- MANIFEST files with important CVS versioning/date information
  580: MANIFEST_cvs:
  581: 	# ------ CVS/Entries directories to retain 'time-checking' intelligence
  582: 	cd $(SOURCE); find . -type f -name 'Entries' | grep 'CVS/Entries' >> \
  583: 	MANIFEST
  584: 
  585: # ------------------- MANIFEST the building, testing and standard loncapa files
  586: MANIFEST_lpml:
  587: 	cat $(SOURCE)/doc/loncapafiles/buildfiles.lpml | \
  588: 	perl lpml_parse.pl MANIFEST development $(DIST) \
  589: 	'$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
  590: 	cat $(SOURCE)/doc/loncapafiles/testfiles.lpml | \
  591: 	perl lpml_parse.pl MANIFEST development $(DIST) \
  592: 	'$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
  593: 	cat $(SOURCE)/doc/loncapafiles/installfiles.lpml | \
  594: 	perl lpml_parse.pl MANIFEST development $(DIST) \
  595: 	'$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
  596: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  597: 	perl lpml_parse.pl MANIFEST development $(DIST) \
  598: 	'$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
  599: 
  600: # ------------ Files for top-level (the vanilla layer that the user first sees)
  601: MANIFEST_vanillatar:
  602: 	echo 'README' >> $(SOURCE)/MANIFEST
  603: 	echo 'UPDATE' >> $(SOURCE)/MANIFEST
  604: 	echo 'TEST' >> $(SOURCE)/MANIFEST
  605: 	echo 'CHECKRPMS' >> $(SOURCE)/MANIFEST
  606: 
  607: # =============================================== *** STATUS REPORT TARGETS ***
  608: 
  609: warningnote:
  610: 	@if (test -s WARNINGS); then \
  611: 		W=`grep -c '\*\*\*\* WARNING' WARNINGS`; \
  612: 		E=`grep -c '\*\*\*\* ERROR' WARNINGS`; \
  613: 		N=`grep -c '\*\*\*\* NOTE' WARNINGS`; \
  614: 		echo "--->  $$W WARNINGS ENCOUNTERED!       "; \
  615: 		echo "--->  $$E ERRORS ENCOUNTERED!         "; \
  616: 		echo "--->  $$N NOTES ENCOUNTERED!          "; \
  617: 		echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; \
  618: 		echo "!!!!  Please read the WARNINGS file !!!!"; \
  619: 		echo "!!!!   to make sure everything is   !!!!"; \
  620: 		echo "!!!!    correct and taken care of   !!!!"; \
  621: 		echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; \
  622: 	fi
  623: 
  624: HTML:
  625: 	install -d HTML
  626: 	cp $(SOURCE)/doc/loncapafiles/*.gif HTML
  627: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  628: 	perl lpml_parse.pl html development default "$(SOURCE)" '$(TARGET)' \
  629: 	> HTML/index.html
  630: 
  631: status:
  632: 	install -d HTML
  633: 	cp $(SOURCE)/doc/loncapafiles/*.gif HTML
  634: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  635: 	perl lpml_parse.pl html $(CATEGORY) $(DIST) "$(SOURCE)" "($TARGET)" | \
  636: 	perl lpml_html_posteval.pl > \
  637: 	HTML/filestatus.html
  638: 
  639: statuspost: status
  640: 	cp $(SOURCE)/doc/loncapafiles/*.gif \
  641: 	$(TARGET)/home/httpd/html/lon-status
  642: 	cp HTML/filestatus.html \
  643: 	$(TARGET)/home/httpd/html/lon-status/filestatus.html
  644: 
  645: rpmstatus:
  646: 	install -d RPMSTATUS
  647: 	rpm -qa --queryformat \
  648: 	'%{NAME}\t%{VERSION}\t%{RELEASE}\t%{BUILDTIME}\n' | sort > \
  649: 	RPMSTATUS/current.tmp
  650: 	cat $(SOURCE)/doc/otherfiles/cd_rpms.txt > RPMSTATUS/standard.tmp
  651: 	cat $(SOURCE)/doc/otherfiles/rpm_list.txt > RPMSTATUS/expected.tmp
  652: 	perl rpmparse.pl RPMSTATUS/standard.tmp RPMSTATUS/current.tmp \
  653: 	RPMSTATUS/expected.tmp > RPMSTATUS/rpmstatus.html
  654: 
  655: rpmstatuspost: rpmstatus
  656: 	cp RPMSTATUS/rpmstatus.html /home/httpd/html/lon-status/rpmstatus.html
  657: 
  658: # ======================================= *** ALTERNATIVE PACKAGING TARGETS ***
  659: 
  660: RPM: BinaryRoot base_rpm_file_list
  661: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  662: 	perl lpml_parse.pl make_rpm $(CATEGORY) $(DIST) $(SOURCE) $(TARGET) \
  663: 	> base_customizerpm.xml
  664: 	cat base_rpm_file_list.txt | perl make_rpm.pl base $(VERSION) \
  665: 	$(RELEASE) '' '' BinaryRoot base_customizerpm.xml
  666: 
  667: DPKG:
  668: 	make TARGET='lon-capa-$(VERSION)' NORESTORECONF='1' install
  669: 	@echo "You will next need to follow instructions at:"
  670: 	@echo "http://people.debian.org/~jaldhar/make_package1.html"
  671: 	@echo "A directory with a snapshot of the debian package files"
  672: 	@echo "is LON-CAPA-base."
  673: # What DPKG steps need to happen (for future implementation):
  674: # export EMAIL="" ... probably sharrison@mail.lon-capa.org
  675: # deb-make
  676: # edit debian/control
  677: # make debian/dirs file
  678: # make debian/copyright file
  679: # debian/README.debian... point them to LON-CAPA URLS
  680: # debian/changelog
  681: # debian/conffiles
  682: # debuild
  683: # and maybe do some GPG-related steps around here
  684: 
  685: base_rpm_file_list:
  686: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  687: 	perl lpml_parse.pl rpm_file_list $(CATEGORY) $(DIST) $(SOURCE) \
  688: 	'BinaryRoot' | sort > base_rpm_file_list.txt
  689: 
  690: BinaryRoot: base_rpm_file_list
  691: 	make TARGET='BinaryRoot' NORESTORECONF='1' install
  692: 
  693: # ======================================== *** MASTER DOCUMENTATION TARGETS ***
  694: 
  695: buildwebsite:
  696: 	cd ../../doc/build; perl ./generate_web_pages.pl
  697: 
  698: 
  699: # Generates CVS:loncom/build/docs; root location of install.lon-capa.org
  700: doc:
  701: 	install -d docs
  702: 	@if (test -e installation_manual.pdf); then \
  703: 		cp -vf installation_manual.pdf docs/.; \
  704: 	else \
  705: 		touch docs/installation_manual.pdf; \
  706: 	fi
  707: 	install -m 0755 -d docs/icons
  708: 	install -m 0644 $(SOURCE)/doc/icons/[^C][^V]* docs/icons
  709: 	install -m 0755 -d docs/reconfig
  710: 	cd docs; ln -fs installation_manual.pdf index.pdf
  711: 	cd docs/reconfig; ln -fs ../installation_manual.pdf index.pdf
  712: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  713: 		$(SOURCE)/doc/build/reconfig.html > docs/reconfig/index.html
  714: 	install -m 0755 -d docs/reconfig/confexamples
  715: 	install -m 0644 $(SOURCE)/doc/build/confexamples/[^C][^V]* \
  716: 		docs/reconfig/confexamples
  717: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  718: 		$(SOURCE)/doc/build/installindex.html > docs/index.html
  719: 	install -m 0755 -d docs/license
  720: 	cd docs/license; ln -fs ../installation_manual.pdf index.pdf
  721: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  722: 		$(SOURCE)/doc/build/license.html > docs/license/index.html
  723: 	install -m 0755 -d docs/contact
  724: 	cd docs/contact; ln -fs ../installation_manual.pdf index.pdf
  725: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  726: 		$(SOURCE)/doc/build/contact.html > docs/contact/index.html
  727: 	install -m 0755 -d docs/faq
  728: 	cd docs/faq; ln -fs ../installation_manual.pdf index.pdf
  729: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  730: 		$(SOURCE)/doc/build/faq.html > docs/faq/index.html
  731: 	install -m 0755 -d docs/downloads
  732: 	cd docs/downloads; ln -fs ../installation_manual.pdf download.pdf
  733: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  734: 		$(SOURCE)/doc/build/download.html > docs/downloads/index.html
  735: 	install -m 0755 -d docs/install
  736: 	cd docs/install; ln -fs ../installation_manual.pdf install.pdf
  737: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  738: 		$(SOURCE)/doc/build/install.html > docs/install/index.html
  739: 	cp -v $(SOURCE)/doc/install/redhat7.3/new_install_rh73.html \
  740: 		docs/install/rh73.html
  741: 	cp -v $(SOURCE)/doc/install/redhat7.3/new_install_rh73.html \
  742: 		docs/downloads/rh73.html
  743: 	install -m 0755 -d docs/upgrade
  744: 	cd docs/upgrade; ln -fs ../installation_manual.pdf upgrade.pdf
  745: 	perl doc_template.pl $(SOURCE)/doc/templates/template.html \
  746: 		$(SOURCE)/doc/build/upgrade.html > docs/upgrade/index.html
  747: 	cd docs; tar czvpf ../docs.tar.gz .
  748: 
  749: pdfdoc: TEST_html2ps
  750: 	install -d pdfdoc
  751: 	/usr/local/html2ps/bin/html2ps -D \
  752: 	$(SOURCE)/doc/build/installindex_noform.html > pdfdoc/installindex.ps
  753: 	/usr/local/html2ps/bin/html2ps -D \
  754: 	$(SOURCE)/doc/build/reconfig.html | \
  755: 	perl -nle 's/\[EXAMPLE\]/\[EXAMPLE \(at end of document\)\]/g;print' \
  756: 	> pdfdoc/reconfig.ps
  757: 	/usr/local/html2ps/bin/html2ps -D \
  758: 	$(SOURCE)/doc/build/install.html > pdfdoc/install.ps
  759: 	/usr/local/html2ps/bin/html2ps -D \
  760: 	$(SOURCE)/doc/build/upgrade.html > pdfdoc/upgrade.ps
  761: 	/usr/local/html2ps/bin/html2ps -D \
  762: 	$(SOURCE)/doc/build/faq.html > pdfdoc/faq.ps
  763: 	/usr/local/html2ps/bin/html2ps -D \
  764: 	$(SOURCE)/doc/build/download.html > pdfdoc/download.ps
  765: 	/usr/local/html2ps/bin/html2ps -D \
  766: 	$(SOURCE)/doc/build/contact.html > pdfdoc/contact.ps
  767: 	/usr/local/html2ps/bin/html2ps -D \
  768: 	$(SOURCE)/doc/build/license.html > pdfdoc/license.ps
  769: #       This creates a bad confexamples.ps... so take the long way around
  770: #	cd $(SOURCE)/doc/build/confexamples; \
  771: #	mpage -P- -1 -H [^C]* > ../../../loncom/build/pdfdoc/confexamples.ps
  772: 	install -d pdfdoc/confexamples
  773: 	cd $(SOURCE)/doc/build/confexamples; \
  774: 	find . -type f | cut -b3- | grep -v '^C' | grep -v 'keyword' | \
  775: 	perl -nle \
  776: 	'`mpage -P- -1 -H $$_ > ../../../loncom/build/pdfdoc/confexamples/$$_.ps`;'
  777: 	echo '' > pdfdoc/contents.txt
  778: 	echo '' >> pdfdoc/contents.txt
  779: 	echo '          The Learning Online Network' >> pdfdoc/contents.txt
  780: 	echo '                    with the' >> pdfdoc/contents.txt
  781: 	echo '     Computer-Assisted Personalized Approach' >> \
  782: 	pdfdoc/contents.txt
  783: 	echo '' >> pdfdoc/contents.txt
  784: 	echo '' >> pdfdoc/contents.txt
  785: 	echo 'CONTENTS' >> pdfdoc/contents.txt
  786: 	echo '--------' >> pdfdoc/contents.txt
  787: 	echo 'Opening' >> pdfdoc/contents.txt
  788: 	echo 'Configuration' >> pdfdoc/contents.txt
  789: 	echo 'Installation' >> pdfdoc/contents.txt
  790: 	echo 'Upgrading a LON-CAPA Server' >> pdfdoc/contents.txt
  791: 	echo 'FAQ' >> pdfdoc/contents.txt
  792: 	echo 'Download' >> pdfdoc/contents.txt
  793: 	echo 'Contact Information' >> pdfdoc/contents.txt
  794: 	echo 'License Information' >> pdfdoc/contents.txt
  795: 	echo 'Configuration Examples' >> pdfdoc/contents.txt
  796: 	mpage -P- -1 \
  797: 	pdfdoc/contents.txt \
  798: 	pdfdoc/installindex.ps \
  799: 	pdfdoc/reconfig.ps \
  800: 	pdfdoc/install.ps \
  801: 	pdfdoc/upgrade.ps \
  802: 	pdfdoc/faq.ps \
  803: 	pdfdoc/download.ps \
  804: 	pdfdoc/contact.ps \
  805: 	pdfdoc/license.ps \
  806: 	pdfdoc/confexamples/*.ps \
  807: 	> pdfdoc/installation_manual.ps
  808: 	ps2pdf pdfdoc/installation_manual.ps pdfdoc/installation_manual.pdf
  809: 	mv -vf pdfdoc/installation_manual.pdf .
  810: 
  811: # ================================================ *** KEEPING THINGS CLEAN ***
  812: 
  813: clean:
  814: 	rm -f buildflag
  815: 	rm -Rf HTML
  816: 	rm -f installation_manual.pdf
  817: 	rm -f Makefile.build
  818: 	rm -f Makefile.install
  819: 	rm -f Makefile.configinstall
  820: 	rm -Rf BinaryRoot
  821: 	rm -Rf SetupBinaryRoot
  822: 	rm -Rf LON-CAPA-base
  823: 	rm -f base_rpm_file_list.txt
  824: 	rm -f base_customizerpm.xml
  825: 	rm -f setup_rpm_file_list.txt
  826: 	rm -f docs.tar.gz
  827: 	rm -Rf docs
  828: 	rm -Rf pdfdoc
  829: 	rm -f program.pl*
  830: 	rm -Rf lpmladm.*
  831: 	rm -f WARNINGS
  832: 	rm -f CPAN_STATUS_REPORT
  833: 	rm -f $(SOURCE)/loncom/build/hosts.tab
  834: 
  835: reallyclean:
  836: 	rm -f buildflag
  837: 	rm -f $(SOURCE)/README
  838: 	rm -f $(SOURCE)/UPDATE
  839: 	rm -f $(SOURCE)/TEST
  840: 	rm -f $(SOURCE)/MANIFEST
  841: 	rm -f $(SOURCE)/MANIFEST_loncapa
  842: 	rm -f $(SOURCE)/loncapa
  843: 	rm -f $(SOURCE)/loncom/build/hosts.tab
  844: 	rm -f $(SOURCE)/loncapa.tar.gz
  845: 	rm -Rf HTML
  846: 	rm -f installation_manual.pdf
  847: 	rm -f Makefile.build
  848: 	rm -f Makefile.install
  849: 	rm -f Makefile.configinstall
  850: 	rm -Rf BinaryRoot
  851: 	rm -Rf SetupBinaryRoot
  852: 	rm -Rf LON-CAPA-base
  853: 	rm -f base_rpm_file_list.txt
  854: 	rm -f base_customizerpm.xml
  855: 	rm -f setup_rpm_file_list.txt
  856: 	rm -f docs.tar.gz
  857: 	rm -Rf docs
  858: 	rm -Rf pdfdoc
  859: 	rm -f program.pl*
  860: 	rm -Rf lpmladm.*
  861: 	make -f Makefile.cvs clean
  862: 	rm -f WARNINGS
  863: 
  864: uninstall:
  865: 	rm -f UNINSTALL_SHELL_COMMANDS
  866: 	cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
  867: 	perl lpml_parse.pl uninstall_shell_commands $(CATEGORY) $(DIST) \
  868: 	"$(SOURCE)" "$(TARGET)" > UNINSTALL_SHELL_COMMANDS
  869: 	@echo -n "**** NOTE **** A file \"UNINSTALL_SHELL_COMMANDS\" has been "
  870: 	@echo "generated."
  871: 	@echo "First, you should view the contents of this file."
  872: 	@echo "If you are happy with the 'rm -Rf'! commands (or at least"
  873: 	@echo "have another job lined up in case of catastrophe), then you "
  874: 	@echo "can execute the following: sh ./UNINSTALL_SHELL_COMMANDS"
  875: 
  876: backup:
  877: 	@echo "Not yet implemented"
  878: 
  879: restore:
  880: 	@echo "Not yet implemented"
  881: 
  882: # ===================================================== *** AUXILIARY TESTS ***
  883: localauth:
  884: 	@if (test -e $(LOCALAUTHPATH)/localauth.pm) && \
  885:              !(diff $(LOCALAUTHPATH)/localauth-std.pm \
  886:               $(LOCALAUTHPATH)/localauth.pm > /dev/null); then \
  887: 		echo "**** WARNING **** $(LOCALAUTHPATH)/localauth.pm is different than the $(LOCALAUTHPATH)/localauth-std.pm; if you have not customized localauth.pm, then please manually overwrite localauth.pm (rm $(LOCALAUTHPATH)/localauth.pm; ln -s $(LOCALAUTHPATH)/localauth-std.pm $(LOCALAUTHPATH)/localauth.pm); if you have customized localauth.pm, then please double-check to see that your customized localauth.pm is compatible with any localauth-std.pm changes for this version of LON-CAPA"| tee -a WARNINGS; \
  888: 	elif (test -e $(LOCALAUTHPATH)/localauth.pm) && \
  889:               (diff $(LOCALAUTHPATH)/localauth-std.pm \
  890:               $(LOCALAUTHPATH)/localauth.pm > /dev/null); then \
  891: 		echo "**** NOTE **** LOCAL AUTH IS IDENTICAL WITH STANDARD TEMPLATE"| tee -a WARNINGS; \
  892: 	elif !(test -e $(LOCALAUTHPATH)/localauth.pm) && \
  893: 	      (test -e $(LOCALAUTHPATH)/localauth-std.pm); then \
  894: 		ln -s $(LOCALAUTHPATH)/localauth-std.pm $(LOCALAUTHPATH)/localauth.pm; \
  895: 	fi
  896: 
  897: # ================================================ *** A HELPFUL DEPENDENCY ***
  898: alwaysrun:

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