Annotation of loncom/build/Makefile, revision 1.155

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

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