Annotation of loncom/build/Makefile, revision 1.128
1.48 harris41 1: # The LearningOnline Network with CAPA
2:
1.1 harris41 3: # Scott Harrison
1.128 ! harris41 4: # $Id: Makefile,v 1.127 2002/07/18 21:28:35 harris41 Exp $
1.1 harris41 5:
1.79 harris41 6: DISTPROBE=`perl ./distprobe`
7: DIST=$(DISTPROBE)
1.39 harris41 8: CATEGORY="development"
1.80 harris41 9: SOURCE=../..
1.51 harris41 10: TARGET=""
1.55 harris41 11: NORESTORECONF="0"
1.66 harris41 12: HOSTNAME=""
13: LAUNCH=| perl
1.106 harris41 14: QUERYLAUNCH=> /tmp/loncapa_query.pl; perl /tmp/loncapa_query.pl
1.66 harris41 15: OUTSTREAM=>
16: SAVE=program.pl.$(TIMESTAMP)
17: LAUNCHSAVE=$(OUTSTREAM) $(SAVE)
18: METAMTARGET=""
19: MTARGET=""
1.124 albertel 20: VERSION=0.4
1.126 harris41 21: DIRTARGET=loncapa-$(VERSION)
1.12 harris41 22:
1.105 harris41 23: help:
1.52 harris41 24: @echo "*** You need to specify a valid target ***"
25: @echo "NOTE: You can specify options to your Makefile target."
1.105 harris41 26: @echo "(option) DIST can be redhat7, debian, redhat6.2, or default"
1.52 harris41 27: @echo "(option) CATEGORY can be runtime or development"
28: @echo "(option) SOURCE is an absolute or relative directory path"
29: @echo "(option) TARGET is an absolute or relative directory path"
30: @echo "build: compile the CVS source tree"
31: @echo "install: install from a compiled CVS source tree to a "
32: @echo " specified TARGET destination on the filesystem"
33: @echo "test: test different parts of the LON-CAPA system (TEST_*)"
34: @echo "TEST_lpml_scripts: make sure that the system can process "
35: @echo " the Linux Packaging Markup Language"
36: @echo "TEST_system_dependencies: make sure that all needed system "
37: @echo " components are active and present "
38: @echo " on the server such as perl modules"
39: @echo " and the MySQL database"
40: @echo "TEST_web_layer: mimic a login and various system actions on "
41: @echo " a LON-CAPA system"
42: @echo "HTML: generate an HTML-formatted description of the LON-CAPA"
43: @echo " CVS files"
1.54 harris41 44: @echo "documentation_tree: compiles a documentation tree from the "
1.119 harris41 45: @echo " CVS:doc directory"
1.52 harris41 46: @echo "status: compare the TARGET filesystem with a compiled CVS "
47: @echo " source directory"
48: @echo "statuspost: post the results of "make status" to "
49: @echo " TARGET/home/httpd/html/lon-status/filestatus.html"
50: @echo "rpmstatus: compare the rpms on a system to defined lists "
51: @echo " CVS:doc/otherfiles/cd_rpms and "
52: @echo " CVS:doc/otherfiles/rpm_list.txt"
53: @echo "rpmstatuspost: post the results of "make rpmstatus" to "
54: @echo " TARGET/home/httpd/html/lon-status/rpmstatus.html"
1.55 harris41 55: @echo "RPM: build LON-CAPA-base RPM from CVS repository"
56: @echo "setup_RPM: build LON-CAPA-setup RPM from CVS repository"
57: @echo " handy for CD-ROM generation"
1.83 harris41 58: @echo "tardist: build a tarball that will upgrade the software on a "
59: @echo " system"
1.1 harris41 60:
1.52 harris41 61: test: TEST_lpml_scripts TEST_system_dependencies TEST_web_layer
1.41 harris41 62: @echo "ALL SYSTEM DEPENDENCY TESTS SUCCESSFUL"
63:
64: TEST_system_dependencies:
1.52 harris41 65: @echo "TESTING SYSTEM DEPENDENCIES"
1.41 harris41 66: cd system_dependencies; make
1.44 harris41 67:
68: TEST_lpml_scripts:
1.52 harris41 69: @echo "TESTING LPML INSTALLATION CODE"
1.44 harris41 70: cd ../test; perl filecomparetest.pl
1.41 harris41 71:
1.52 harris41 72: TEST_web_layer:
1.77 harris41 73: @echo "TESTING WEB LAYER"
74: cd weblayer_test; make
1.2 harris41 75:
1.63 harris41 76: TEST_hosts_tab:
77: @echo "Testing hosts.tab"
1.120 albertel 78: @if (test -e ../hosts.tab); then \
1.63 harris41 79: echo "there is a defined link; assume okay"; \
80: else echo "**** ERROR **** hosts.tab not defined!" && \
81: echo -n "You need to do one of the following within your " && \
1.92 harris41 82: echo "CVS repository (cd loncapa/loncom)" && \
83: echo " 1) ln -s production_hosts.tab hosts.tab" && \
84: echo " 2) ln -s development_hosts.tab hosts.tab" && \
85: echo "or 3) ln -s rawhide_hosts.tab hosts.tab" && \
1.63 harris41 86: echo "(you most likely want option #1, production_hosts.tab)" && \
87: exit 1; \
88: fi
1.64 harris41 89:
1.66 harris41 90: NET_hosts_tab:
91: make TIMESTAMP=`date +"%s"` METAMTARGET="TRANSPORT" \
92: MTARGET="hosts_tab" HOSTNAME="$(HOSTNAME)" lpmladm
93:
1.64 harris41 94: hosts_tab: TEST_hosts_tab
1.80 harris41 95: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
96: perl xfml_parse.pl $(SOURCE)/doc/loncapafiles/valid_hosts.xfml | \
1.64 harris41 97: perl lpml_parse.pl install $(CATEGORY) $(DIST) "$(SOURCE)" \
98: "$(TARGET)" > Makefile.install
1.66 harris41 99: make -f Makefile.install directories
1.64 harris41 100: make -f Makefile.install files
101: @echo "If hosts.tab has changed, restart httpd and loncontrol:"
102: @echo " /etc/rc.d/init.d/httpd restart"
103: @echo " /etc/rc.d/init.d/loncontrol restart"
104:
1.66 harris41 105: lpmladm:
106: @if (test $(METAMTARGET) = "TRANSPORT"); then \
107: echo "Transporting to $(HOSTNAME)"; \
108: sudo make DIST=$(DIST) CATEGORY=$(CATEGORY) \
109: SOURCE="$(SOURCE)" \
110: TARGET="lpmladm.$(TIMESTAMP)" \
111: NORESTORECONF="$(NORESTORECONF)" "$(MTARGET)"; \
112: cd lpmladm.$(TIMESTAMP); \
113: sudo tar czvf ../tarball$(TIMESTAMP).tar.gz .; \
114: cd ..; scp tarball$(TIMESTAMP).tar.gz \
115: lpmladm@$(HOSTNAME):~/tarball$(TIMESTAMP).tar.gz; \
116: ssh lpmladm@$(HOSTNAME) sudo mv tarball$(TIMESTAMP).tar.gz /; \
117: ssh lpmladm@$(HOSTNAME) sudo tar -x -z -v -C / \
118: -p --same-owner -f \
119: /tarball$(TIMESTAMP).tar.gz; \
120: ssh lpmladm@$(HOSTNAME) sudo rm -f \
121: /tarball$(TIMESTAMP).tar.gz; \
122: elif (test $(METAMTARGET) = "LAUNCH"); then \
123: echo "Launching process on $(HOSTNAME)"; \
124: LAUNCHSAVE=$(OUTSTREAM) $(SAVE); \
125: make DIST=$(DIST) CATEGORY=$(CATEGORY) SOURCE="$(SOURCE)" \
126: TARGET="$(TARGET)" NORESTORECONF="$(NORESTORECONF)" \
127: LAUNCH="$(LAUNCHSAVE)" "$(MTARGET)"; \
128: scp $(SAVE) lpmladm@$(HOSTNAME):~/$(SAVE); \
129: ssh lpmladm@$(HOSTNAME) sudo perl $(SAVE); \
130: ssh lpmladm@$(HOSTNAME) sudo rm -f $(SAVE); \
131: else \
132: echo "**** ERROR **** Incorrect METAMTARGET"; \
133: fi
134:
1.3 harris41 135: HTML:
136: install -d HTML
1.80 harris41 137: cp $(SOURCE)/doc/loncapafiles/*.gif HTML
138: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
139: perl lpml_parse.pl html development default "$(SOURCE)" '$(TARGET)' \
140: > HTML/index.html
1.3 harris41 141:
1.8 harris41 142: status:
1.7 harris41 143: install -d HTML
1.80 harris41 144: cp $(SOURCE)/doc/loncapafiles/*.gif HTML
145: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
146: perl lpml_parse.pl html $(CATEGORY) $(DIST) "$(SOURCE)" "($TARGET)" | \
1.49 harris41 147: perl lpml_html_posteval.pl > \
1.39 harris41 148: HTML/filestatus.html
1.48 harris41 149:
1.22 harris41 150: statuspost: status
1.80 harris41 151: cp $(SOURCE)/doc/loncapafiles/*.gif \
152: $(TARGET)/home/httpd/html/lon-status
1.52 harris41 153: cp HTML/filestatus.html \
154: $(TARGET)/home/httpd/html/lon-status/filestatus.html
1.22 harris41 155:
1.33 harris41 156: rpmstatus:
157: install -d RPMSTATUS
1.52 harris41 158: rpm -qa --queryformat \
159: '%{NAME}\t%{VERSION}\t%{RELEASE}\t%{BUILDTIME}\n' | sort > \
160: RPMSTATUS/current.tmp
1.80 harris41 161: cat $(SOURCE)/doc/otherfiles/cd_rpms.txt > RPMSTATUS/standard.tmp
162: cat $(SOURCE)/doc/otherfiles/rpm_list.txt > RPMSTATUS/expected.tmp
1.52 harris41 163: perl rpmparse.pl RPMSTATUS/standard.tmp RPMSTATUS/current.tmp \
164: RPMSTATUS/expected.tmp > RPMSTATUS/rpmstatus.html
1.33 harris41 165:
166: rpmstatuspost: rpmstatus
167: cp RPMSTATUS/rpmstatus.html /home/httpd/html/lon-status/rpmstatus.html
168:
1.37 albertel 169: configinstall: Makefile.configinstall
1.55 harris41 170: make -f Makefile.configinstall SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
171: configfiles
172: if (test "0" = $(NORESTORECONF)); then \
173: perl loncaparestoreconfigurations suffix .lpmlnew; fi
1.9 harris41 174:
1.80 harris41 175: Makefile.configinstall: $(SOURCE)/doc/loncapafiles/loncapafiles.lpml lpml_parse.pl
176: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
1.55 harris41 177: perl lpml_parse.pl configinstall $(CATEGORY) $(DIST) "$(SOURCE)" \
178: "$(TARGET)" > Makefile.configinstall
1.37 albertel 179:
1.45 harris41 180: warningnote:
181: @if (test -s WARNINGS); then \
182: W=`grep -c '\*\*\*\* WARNING' WARNINGS`; \
183: E=`grep -c '\*\*\*\* ERROR' WARNINGS`; \
184: N=`grep -c '\*\*\*\* NOTE' WARNINGS`; \
185: echo "---> $$W WARNINGS ENCOUNTERED! "; \
186: echo "---> $$E ERRORS ENCOUNTERED! "; \
187: echo "---> $$N NOTES ENCOUNTERED! "; \
188: echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; \
189: echo "!!!! Please read the WARNINGS file !!!!"; \
190: echo "!!!! to make sure everything is !!!!"; \
191: echo "!!!! correct and taken care of !!!!"; \
192: echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; \
193: fi
1.65 harris41 194:
1.66 harris41 195: NET_webserverconf:
196: make TIMESTAMP=`date +"%s"` METAMTARGET="LAUNCH" \
197: MTARGET="webserverconf" HOSTNAME="$(HOSTNAME)" lpmladm
198:
1.65 harris41 199: webserverconf:
1.80 harris41 200: cat $(SOURCE)/doc/loncapafiles/webserver.piml | \
1.66 harris41 201: perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH)
1.65 harris41 202:
1.75 harris41 203: sanitycheck:
1.80 harris41 204: cat $(SOURCE)/doc/loncapafiles/sanitycheck.piml | \
1.98 harris41 205: perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
206: tee -a WARNINGS
207:
208: updatequery:
209: cat $(SOURCE)/doc/loncapafiles/updatequery.piml | \
1.111 harris41 210: perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(QUERYLAUNCH)
1.75 harris41 211:
1.65 harris41 212: postinstall:
213: make webserverconf
1.75 harris41 214: make sanitycheck
1.117 harris41 215:
216: NET_rawinstall:
217: make TIMESTAMP=`date +"%s"` METAMTARGET="TRANSPORT" \
218: MTARGET="rawinstall" HOSTNAME="$(HOSTNAME)" lpmladm
1.45 harris41 219:
1.121 harris41 220: VERSION:
221: install -d $(TARGET)/etc
222: echo -n "LON-CAPA release $(VERSION)-" > $(TARGET)/etc/loncapa-release
1.123 harris41 223: date +"%Y%m%d" >> $(TARGET)/etc/loncapa-release
224:
225: aboutVERSION:
226: cat $(SOURCE)/loncom/license/about.html | \
227: perl -e '$$d=`date +"%Y%m%d"`;chomp($$d);while(<>){s/\<\!\-\- VERSION \-\-\>/$(VERSION)-$$d/; print;}' > \
228: $(SOURCE)/loncom/license/about.html.new
229: mv -v $(SOURCE)/loncom/license/about.html.new \
230: $(SOURCE)/loncom/license/about.html
1.121 harris41 231:
232: install: VERSION TEST_hosts_tab Makefile.install Makefile
1.46 harris41 233: echo -n "" > WARNINGS
1.52 harris41 234: make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
235: directories
1.51 harris41 236: make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" files
237: make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" links
1.55 harris41 238: make SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
239: NORESTORECONF="$(NORESTORECONF)" configinstall
1.72 harris41 240: make postinstall
1.45 harris41 241: make warningnote
1.76 harris41 242: echo "You can run 'make test' to see if your system is ready to go!"
1.116 harris41 243: echo "NOTE THAT YOUR SYSTEM MUST HAVE MYSQL WITH A USER=\"www\" AND"
244: echo -n "PASSWORD=\"localhostkey\" FOR www\@localhost"
245: echo -n "(YOU MAY NEED TO REINITIALIZE YOUR MYSQL www\@localhost USER)"
246: echo -n "Please see http://install.lon-capa.org/ for more information"
1.4 harris41 247:
1.121 harris41 248: rawinstall: VERSION Makefile.install Makefile
1.113 harris41 249: echo -n "" > WARNINGS
250: make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
251: directories
252: make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" files
253: make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" links
254: make SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
255: NORESTORECONF="$(NORESTORECONF)" configinstall
256:
1.115 harris41 257: Makefile.install: alwaysrun
1.80 harris41 258: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
1.52 harris41 259: perl lpml_parse.pl install $(CATEGORY) $(DIST) "$(SOURCE)" \
260: "$(TARGET)" > Makefile.install
1.37 albertel 261:
1.50 harris41 262: build: Makefile.build pod2html.sh pod2man.sh
1.91 harris41 263: install -d $(SOURCE)/doc/man
264: install -d $(SOURCE)/doc/scripts
265: install -d $(SOURCE)/doc/lib/perl/Apache
1.46 harris41 266: echo -n "" > WARNINGS
1.37 albertel 267: make -f Makefile.build all
1.45 harris41 268: make warningnote
1.37 albertel 269:
1.80 harris41 270: Makefile.build: $(SOURCE)/doc/loncapafiles/loncapafiles.lpml lpml_parse.pl
271: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
1.78 harris41 272: perl lpml_parse.pl build $(CATEGORY) $(DIST) "$(SOURCE)" "$(TARGET)" \
273: > Makefile.build
1.8 harris41 274:
1.55 harris41 275: RPM: BinaryRoot base_rpm_file_list
1.80 harris41 276: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
1.63 harris41 277: perl lpml_parse.pl make_rpm $(CATEGORY) $(DIST) $(SOURCE) $(TARGET) \
278: > base_customizerpm.xml
1.55 harris41 279: cat base_rpm_file_list.txt | perl make_rpm.pl base 3.2 '' '' \
280: BinaryRoot base_customizerpm.xml
281:
1.59 harris41 282: setup_RPM:
1.55 harris41 283: echo "SetupBinaryRoot/etc/passwd" > setup_rpm_file_list.txt
284: echo "SetupBinaryRoot/etc/group" >> setup_rpm_file_list.txt
285: echo "SetupBinaryRoot/etc/hosts.deny" >> setup_rpm_file_list.txt
286: echo "SetupBinaryRoot/home/www" >> setup_rpm_file_list.txt
287: echo "SetupBinaryRoot/etc/pam.d/passwd" >> setup_rpm_file_list.txt
288: echo "SetupBinaryRoot/etc/pam.d/login" >> setup_rpm_file_list.txt
289: perl setup_rpm_binaryroot.pl
290: cat setup_rpm_file_list.txt | perl make_rpm.pl setup 3.2 '' '' \
291: SetupBinaryRoot customizerpm.xml
1.60 harris41 292:
293: DPKG:
1.82 harris41 294: make TARGET='lon-capa-$(VERSION)' NORESTORECONF='1' install
1.60 harris41 295: @echo "You will next need to follow instructions at:"
296: @echo "http://people.debian.org/~jaldhar/make_package1.html"
297: @echo "A directory with a snapshot of the debian package files"
298: @echo "is LON-CAPA-base."
1.82 harris41 299: # What DPKG steps need to happen (for future implementation):
300: # export EMAIL="" ... probably sharrison@mail.lon-capa.org
301: # deb-make
302: # edit debian/control
303: # make debian/dirs file
304: # make debian/copyright file
305: # debian/README.debian... point them to LON-CAPA URLS
306: # debian/changelog
307: # debian/conffiles
308: # debuild
309: # and maybe do some GPG-related steps around here
1.55 harris41 310:
311: base_rpm_file_list:
1.80 harris41 312: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
1.55 harris41 313: perl lpml_parse.pl rpm_file_list $(CATEGORY) $(DIST) $(SOURCE) \
314: 'BinaryRoot' | sort > base_rpm_file_list.txt
1.6 harris41 315:
1.55 harris41 316: BinaryRoot: base_rpm_file_list
317: make TARGET='BinaryRoot' NORESTORECONF='1' install
1.23 harris41 318:
1.62 harris41 319: # Generates CVS:loncom/build/docs; root location of install.lon-capa.org
320: doc:
321: install -d docs
1.99 harris41 322: @if (test -e installation_manual.pdf); then \
323: cp -vf installation_manual.pdf docs/.; \
324: else \
325: touch docs/installation_manual.pdf; \
326: fi
1.62 harris41 327: install -m 0755 -d docs/icons
1.80 harris41 328: install -m 0644 $(SOURCE)/doc/icons/[^C][^V]* docs/icons
1.62 harris41 329: install -m 0755 -d docs/reconfig
1.99 harris41 330: cd docs; ln -fs installation_manual.pdf index.pdf
331: cd docs/reconfig; ln -fs ../installation_manual.pdf index.pdf
1.80 harris41 332: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
333: $(SOURCE)/doc/build/reconfig.html > docs/reconfig/index.html
1.62 harris41 334: install -m 0755 -d docs/reconfig/confexamples
1.80 harris41 335: install -m 0644 $(SOURCE)/doc/build/confexamples/[^C][^V]* \
1.62 harris41 336: docs/reconfig/confexamples
1.80 harris41 337: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
338: $(SOURCE)/doc/build/installindex.html > docs/index.html
1.67 harris41 339: install -m 0755 -d docs/license
1.99 harris41 340: cd docs/license; ln -fs ../installation_manual.pdf index.pdf
1.80 harris41 341: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
342: $(SOURCE)/doc/build/license.html > docs/license/index.html
1.67 harris41 343: install -m 0755 -d docs/contact
1.99 harris41 344: cd docs/contact; ln -fs ../installation_manual.pdf index.pdf
1.80 harris41 345: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
346: $(SOURCE)/doc/build/contact.html > docs/contact/index.html
1.68 harris41 347: install -m 0755 -d docs/faq
1.99 harris41 348: cd docs/faq; ln -fs ../installation_manual.pdf index.pdf
1.80 harris41 349: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
350: $(SOURCE)/doc/build/faq.html > docs/faq/index.html
1.69 harris41 351: install -m 0755 -d docs/downloads
1.99 harris41 352: cd docs/downloads; ln -fs ../installation_manual.pdf download.pdf
1.80 harris41 353: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
354: $(SOURCE)/doc/build/download.html > docs/downloads/index.html
1.69 harris41 355: install -m 0755 -d docs/install
1.99 harris41 356: cd docs/install; ln -fs ../installation_manual.pdf install.pdf
1.80 harris41 357: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
358: $(SOURCE)/doc/build/install.html > docs/install/index.html
1.125 harris41 359: cp -v $(SOURCE)/doc/install/redhat7.3/new_install_rh73.html \
360: docs/install/rh73.html
1.127 harris41 361: cp -v $(SOURCE)/doc/install/redhat7.3/new_install_rh73.html \
1.128 ! harris41 362: docs/downloads/rh73.html
1.69 harris41 363: install -m 0755 -d docs/upgrade
1.99 harris41 364: cd docs/upgrade; ln -fs ../installation_manual.pdf upgrade.pdf
1.80 harris41 365: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
366: $(SOURCE)/doc/build/upgrade.html > docs/upgrade/index.html
1.62 harris41 367: cd docs; tar czvpf ../docs.tar.gz .
368:
1.99 harris41 369: pdfdoc: TEST_html2ps
370: install -d pdfdoc
371: /usr/local/html2ps/bin/html2ps -D \
372: $(SOURCE)/doc/build/installindex_noform.html > pdfdoc/installindex.ps
373: /usr/local/html2ps/bin/html2ps -D \
374: $(SOURCE)/doc/build/reconfig.html | \
375: perl -nle 's/\[EXAMPLE\]/\[EXAMPLE \(at end of document\)\]/g;print' \
376: > pdfdoc/reconfig.ps
377: /usr/local/html2ps/bin/html2ps -D \
378: $(SOURCE)/doc/build/install.html > pdfdoc/install.ps
379: /usr/local/html2ps/bin/html2ps -D \
380: $(SOURCE)/doc/build/upgrade.html > pdfdoc/upgrade.ps
381: /usr/local/html2ps/bin/html2ps -D \
382: $(SOURCE)/doc/build/faq.html > pdfdoc/faq.ps
383: /usr/local/html2ps/bin/html2ps -D \
384: $(SOURCE)/doc/build/download.html > pdfdoc/download.ps
385: /usr/local/html2ps/bin/html2ps -D \
386: $(SOURCE)/doc/build/contact.html > pdfdoc/contact.ps
387: /usr/local/html2ps/bin/html2ps -D \
388: $(SOURCE)/doc/build/license.html > pdfdoc/license.ps
389: # This creates a bad confexamples.ps... so take the long way around
390: # cd $(SOURCE)/doc/build/confexamples; \
391: # mpage -P- -1 -H [^C]* > ../../../loncom/build/pdfdoc/confexamples.ps
392: install -d pdfdoc/confexamples
393: cd $(SOURCE)/doc/build/confexamples; \
1.122 harris41 394: find . -type f | cut -b3- | grep -v '^C' | grep -v 'keyword' | perl -nle \
1.99 harris41 395: '`mpage -P- -1 -H $$_ > ../../../loncom/build/pdfdoc/confexamples/$$_.ps`;'
396: echo '' > pdfdoc/contents.txt
397: echo '' >> pdfdoc/contents.txt
398: echo ' The Learning Online Network' >> pdfdoc/contents.txt
399: echo ' with the' >> pdfdoc/contents.txt
400: echo ' Computer-Assisted Personalized Approach' >> \
401: pdfdoc/contents.txt
402: echo '' >> pdfdoc/contents.txt
403: echo '' >> pdfdoc/contents.txt
404: echo 'CONTENTS' >> pdfdoc/contents.txt
405: echo '--------' >> pdfdoc/contents.txt
406: echo 'Opening' >> pdfdoc/contents.txt
407: echo 'Configuration' >> pdfdoc/contents.txt
408: echo 'Installation' >> pdfdoc/contents.txt
409: echo 'Upgrading a LON-CAPA Server' >> pdfdoc/contents.txt
410: echo 'FAQ' >> pdfdoc/contents.txt
411: echo 'Download' >> pdfdoc/contents.txt
412: echo 'Contact Information' >> pdfdoc/contents.txt
413: echo 'License Information' >> pdfdoc/contents.txt
414: echo 'Configuration Examples' >> pdfdoc/contents.txt
415: mpage -P- -1 \
416: pdfdoc/contents.txt \
417: pdfdoc/installindex.ps \
418: pdfdoc/reconfig.ps \
419: pdfdoc/install.ps \
420: pdfdoc/upgrade.ps \
421: pdfdoc/faq.ps \
422: pdfdoc/download.ps \
423: pdfdoc/contact.ps \
424: pdfdoc/license.ps \
425: pdfdoc/confexamples/*.ps \
426: > pdfdoc/installation_manual.ps
427: ps2pdf pdfdoc/installation_manual.ps pdfdoc/installation_manual.pdf
428: mv -vf pdfdoc/installation_manual.pdf .
429:
430: TEST_html2ps:
431: @if (test -e /usr/local/html2ps/bin/html2ps); then \
432: echo "I can find html2ps; assume okay"; \
433: else \
434: echo "**** ERROR **** cannot find /usr/local/html2ps/bin/html2ps!" && \
435: echo "Please visit http://www.tdb.uu.se/~jan/html2ps.html" && \
436: exit 1; \
437: fi
438:
1.80 harris41 439: tardist:
1.104 harris41 440: # ----------- MANIFEST the building, testing and standard loncapa files
1.87 harris41 441: cat $(SOURCE)/doc/loncapafiles/buildfiles.lpml | \
442: perl lpml_parse.pl MANIFEST development default \
1.88 harris41 443: '$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' > $(SOURCE)/MANIFEST
1.94 harris41 444: cat $(SOURCE)/doc/loncapafiles/testfiles.lpml | \
445: perl lpml_parse.pl MANIFEST development default \
446: '$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
1.95 harris41 447: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
1.80 harris41 448: perl lpml_parse.pl MANIFEST development default \
1.88 harris41 449: '$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
1.104 harris41 450: # ------ CVS/Entries directories to retain 'time-checking' intelligence
1.90 harris41 451: cd $(SOURCE); find . -type f -name 'Entries' | grep 'CVS/Entries' >> \
452: MANIFEST
1.104 harris41 453: # ---- Files for top-level (the vanilla layer that the user first sees)
1.80 harris41 454: echo 'README' >> $(SOURCE)/MANIFEST
455: echo 'UPDATE' >> $(SOURCE)/MANIFEST
456: echo 'TEST' >> $(SOURCE)/MANIFEST
1.93 harris41 457: echo 'CHECKRPMS' >> $(SOURCE)/MANIFEST
1.105 harris41 458: # ---------------------------------- might as well include the MANIFEST
1.86 harris41 459: echo 'MANIFEST' >> $(SOURCE)/MANIFEST
1.104 harris41 460: # ------------------------------------------ hosts.tab are belong to us
1.89 harris41 461: echo 'loncom/rawhide_hosts.tab' >> $(SOURCE)/MANIFEST
462: echo 'loncom/production_hosts.tab' >> $(SOURCE)/MANIFEST
463: echo 'loncom/development_hosts.tab' >> $(SOURCE)/MANIFEST
1.104 harris41 464: # ------------------ Files needed for dynamically generated directories
1.83 harris41 465: echo 'doc/man' >> $(SOURCE)/MANIFEST
466: echo 'doc/lib' >> $(SOURCE)/MANIFEST
467: echo 'doc/lib/perl' >> $(SOURCE)/MANIFEST
1.85 harris41 468: echo 'doc/lib/perl/Apache' >> $(SOURCE)/MANIFEST
1.84 harris41 469: echo 'doc/scripts' >> $(SOURCE)/MANIFEST
1.104 harris41 470: # --------------------------- Point UPDATE to the internal make process
1.80 harris41 471: echo '#!/bin/sh' > $(SOURCE)/UPDATE
1.105 harris41 472: echo 'touch loncom/build/WARNINGS' >> $(SOURCE)/UPDATE;
473: echo 'ln -s loncom/build/WARNINGS WARNINGS' >> $(SOURCE)/UPDATE;
1.110 harris41 474: echo 'cd loncom/build; make build' >> $(SOURCE)/UPDATE
1.113 harris41 475: echo 'make rawinstall' >> $(SOURCE)/UPDATE
1.118 harris41 476: echo 'make configinstall' >> $(SOURCE)/UPDATE
1.108 harris41 477: echo 'make updatequery' >> $(SOURCE)/UPDATE
1.109 harris41 478: echo 'make hosts_tab' >> $(SOURCE)/UPDATE
1.113 harris41 479: echo 'make postinstall' >> $(SOURCE)/UPDATE
1.123 harris41 480: echo 'make aboutVERSION' >> $(SOURCE)/UPDATE
1.113 harris41 481: echo 'make warningnote' >> $(SOURCE)/UPDATE
1.104 harris41 482: # ----------------------------- Point TEST to the internal make process
1.81 harris41 483: echo '#!/bin/sh' > $(SOURCE)/TEST
1.80 harris41 484: echo 'cd loncom/build; make test' >> $(SOURCE)/TEST
1.104 harris41 485: # ----------------------------- Copy CHECKRPMS to the vanilla top-level
1.93 harris41 486: cp $(SOURCE)/loncom/build/CHECKRPMS $(SOURCE)/CHECKRPMS
1.104 harris41 487: # ----------------------- vanilla executables must indeed be executable
1.80 harris41 488: chmod a+rx $(SOURCE)/UPDATE
489: chmod a+rx $(SOURCE)/TEST
1.93 harris41 490: chmod a+rx $(SOURCE)/CHECKRPMS
1.104 harris41 491: # -------------------------------- Copy README to the vanilla top-level
1.80 harris41 492: cp $(SOURCE)/doc/shortest_path_redhat7.2.txt $(SOURCE)/README
1.104 harris41 493: # --------------------------------------------------- Clean up MANIFEST
1.80 harris41 494: cd $(SOURCE); \
1.103 harris41 495: sort MANIFEST | perl -nle 'print "$(DIRTARGET)/$$_"' | \
1.104 harris41 496: perl -nle 's/\w+\/\.\.\///g;s/\w+\/\.\.\///g;print' | \
497: perl -nle 's/\w+\/\.\.\///g;s/\w+\/\.\.\///g;print' | \
498: perl -nle 's/\w+\/\.\.\///g;s/\w+\/\.\.\///g;print' | \
499: perl -nle 's/\/\.\//\//g;print' | sort | uniq > \
500: MANIFEST_loncapa
501: # -------------------------------------------------------- Make tardist
502: @cd $(SOURCE); \
503: if (test -h $(DIRTARGET)); then \
504: echo "$(DIRTARGET) link already defined; assume okay"; \
505: else \
506: ln -s . $(DIRTARGET); \
507: fi
1.123 harris41 508: cp -v $(SOURCE)/loncom/license/about.html \
509: $(SOURCE)/loncom/license/about.html.orig
510: make aboutVERSION
1.105 harris41 511: cd $(SOURCE); \
1.100 harris41 512: tar --no-recursion --numeric-owner --files-from MANIFEST_loncapa \
1.126 harris41 513: -h -czf $(DIRTARGET).tar.gz 2>WARNINGS || [ "0" == "0" ]
1.123 harris41 514: mv -v $(SOURCE)/loncom/license/about.html.orig \
515: $(SOURCE)/loncom/license/about.html
1.80 harris41 516: cat $(SOURCE)/WARNINGS | \
517: xargs --replace=XXX echo '**** WARNING **** XXX' > WARNINGS
518: rm -f $(SOURCE)/WARNINGS
519: make warningnote
1.52 harris41 520:
1.1 harris41 521: clean:
1.112 harris41 522: rm -Rf HTML
523: rm -f installation_manual.pdf
524: rm -f Makefile.build
525: rm -f Makefile.install
526: rm -f Makefile.configinstall
527: rm -Rf BinaryRoot
528: rm -Rf SetupBinaryRoot
529: rm -Rf LON-CAPA-base
530: rm -f base_rpm_file_list.txt
531: rm -f base_customizerpm.xml
532: rm -f setup_rpm_file_list.txt
533: rm -f docs.tar.gz
534: rm -Rf docs
535: rm -Rf pdfdoc
536: rm -f program.pl*
537: rm -Rf lpmladm.*
538: rm -f WARNINGS
1.114 harris41 539: rm -f $(SOURCE)/loncom/build/hosts.tab
1.112 harris41 540:
541: reallyclean:
1.80 harris41 542: rm -f $(SOURCE)/README
543: rm -f $(SOURCE)/UPDATE
544: rm -f $(SOURCE)/TEST
1.105 harris41 545: rm -f $(SOURCE)/MANIFEST
546: rm -f $(SOURCE)/loncapa
1.114 harris41 547: rm -f $(SOURCE)/loncom/build/hosts.tab
1.80 harris41 548: rm -f $(SOURCE)/loncapa.tar.gz
1.3 harris41 549: rm -Rf HTML
1.99 harris41 550: rm -f installation_manual.pdf
1.8 harris41 551: rm -f Makefile.build
552: rm -f Makefile.install
1.57 harris41 553: rm -f Makefile.configinstall
1.55 harris41 554: rm -Rf BinaryRoot
555: rm -Rf SetupBinaryRoot
1.62 harris41 556: rm -Rf LON-CAPA-base
1.56 harris41 557: rm -f base_rpm_file_list.txt
1.58 harris41 558: rm -f base_customizerpm.xml
1.56 harris41 559: rm -f setup_rpm_file_list.txt
1.62 harris41 560: rm -f docs.tar.gz
561: rm -Rf docs
1.99 harris41 562: rm -Rf pdfdoc
1.66 harris41 563: rm -f program.pl*
564: rm -Rf lpmladm.*
1.67 harris41 565: make -f Makefile.cvs clean
1.80 harris41 566: rm -f WARNINGS
1.115 harris41 567:
568: alwaysrun:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>