File:  [LON-CAPA] / loncom / build / Makefile
Revision 1.130: download - view: text, annotated - select for diffs
Fri Aug 9 19:49:30 2002 UTC (21 years, 10 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- fixes bug#257, moved resevaldata.db to nohist_resevaldata.db, and deletes hist file

- After installing these diffs you need to do a make install before restarting the webserver

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

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