Annotation of loncom/build/Makefile, revision 1.112
1.48 harris41 1: # The LearningOnline Network with CAPA
2:
1.1 harris41 3: # Scott Harrison
1.112 ! harris41 4: # $Id: Makefile,v 1.111 2002/05/16 18:35:34 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.100 harris41 11: DIRTARGET=loncapa
1.55 harris41 12: NORESTORECONF="0"
1.66 harris41 13: HOSTNAME=""
14: LAUNCH=| perl
1.106 harris41 15: QUERYLAUNCH=> /tmp/loncapa_query.pl; perl /tmp/loncapa_query.pl
1.66 harris41 16: OUTSTREAM=>
17: SAVE=program.pl.$(TIMESTAMP)
18: LAUNCHSAVE=$(OUTSTREAM) $(SAVE)
19: METAMTARGET=""
20: MTARGET=""
1.82 harris41 21: VERSION=0.1
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 "
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"
78: @if (test -h ../hosts.tab); then \
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.45 harris41 215:
1.63 harris41 216: install: TEST_hosts_tab Makefile.install Makefile
1.46 harris41 217: echo -n "" > WARNINGS
1.52 harris41 218: make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
219: directories
1.51 harris41 220: make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" files
221: make -f Makefile.install SOURCE="$(SOURCE)" TARGET="$(TARGET)" links
1.55 harris41 222: make SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
223: NORESTORECONF="$(NORESTORECONF)" configinstall
1.72 harris41 224: make postinstall
1.45 harris41 225: make warningnote
1.76 harris41 226: echo "You can run 'make test' to see if your system is ready to go!"
1.4 harris41 227:
1.80 harris41 228: Makefile.install: $(SOURCE)/doc/loncapafiles/loncapafiles.lpml lpml_parse.pl
229: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
1.52 harris41 230: perl lpml_parse.pl install $(CATEGORY) $(DIST) "$(SOURCE)" \
231: "$(TARGET)" > Makefile.install
1.37 albertel 232:
1.50 harris41 233: build: Makefile.build pod2html.sh pod2man.sh
1.91 harris41 234: install -d $(SOURCE)/doc/man
235: install -d $(SOURCE)/doc/scripts
236: install -d $(SOURCE)/doc/lib/perl/Apache
1.46 harris41 237: echo -n "" > WARNINGS
1.37 albertel 238: make -f Makefile.build all
1.45 harris41 239: make warningnote
1.37 albertel 240:
1.80 harris41 241: Makefile.build: $(SOURCE)/doc/loncapafiles/loncapafiles.lpml lpml_parse.pl
242: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
1.78 harris41 243: perl lpml_parse.pl build $(CATEGORY) $(DIST) "$(SOURCE)" "$(TARGET)" \
244: > Makefile.build
1.8 harris41 245:
1.55 harris41 246: RPM: BinaryRoot base_rpm_file_list
1.80 harris41 247: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
1.63 harris41 248: perl lpml_parse.pl make_rpm $(CATEGORY) $(DIST) $(SOURCE) $(TARGET) \
249: > base_customizerpm.xml
1.55 harris41 250: cat base_rpm_file_list.txt | perl make_rpm.pl base 3.2 '' '' \
251: BinaryRoot base_customizerpm.xml
252:
1.59 harris41 253: setup_RPM:
1.55 harris41 254: echo "SetupBinaryRoot/etc/passwd" > setup_rpm_file_list.txt
255: echo "SetupBinaryRoot/etc/group" >> setup_rpm_file_list.txt
256: echo "SetupBinaryRoot/etc/hosts.deny" >> setup_rpm_file_list.txt
257: echo "SetupBinaryRoot/home/www" >> setup_rpm_file_list.txt
258: echo "SetupBinaryRoot/etc/pam.d/passwd" >> setup_rpm_file_list.txt
259: echo "SetupBinaryRoot/etc/pam.d/login" >> setup_rpm_file_list.txt
260: perl setup_rpm_binaryroot.pl
261: cat setup_rpm_file_list.txt | perl make_rpm.pl setup 3.2 '' '' \
262: SetupBinaryRoot customizerpm.xml
1.60 harris41 263:
264: DPKG:
1.82 harris41 265: make TARGET='lon-capa-$(VERSION)' NORESTORECONF='1' install
1.60 harris41 266: @echo "You will next need to follow instructions at:"
267: @echo "http://people.debian.org/~jaldhar/make_package1.html"
268: @echo "A directory with a snapshot of the debian package files"
269: @echo "is LON-CAPA-base."
1.82 harris41 270: # What DPKG steps need to happen (for future implementation):
271: # export EMAIL="" ... probably sharrison@mail.lon-capa.org
272: # deb-make
273: # edit debian/control
274: # make debian/dirs file
275: # make debian/copyright file
276: # debian/README.debian... point them to LON-CAPA URLS
277: # debian/changelog
278: # debian/conffiles
279: # debuild
280: # and maybe do some GPG-related steps around here
1.55 harris41 281:
282: base_rpm_file_list:
1.80 harris41 283: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
1.55 harris41 284: perl lpml_parse.pl rpm_file_list $(CATEGORY) $(DIST) $(SOURCE) \
285: 'BinaryRoot' | sort > base_rpm_file_list.txt
1.6 harris41 286:
1.55 harris41 287: BinaryRoot: base_rpm_file_list
288: make TARGET='BinaryRoot' NORESTORECONF='1' install
1.23 harris41 289:
1.62 harris41 290: # Generates CVS:loncom/build/docs; root location of install.lon-capa.org
291: doc:
292: install -d docs
1.99 harris41 293: @if (test -e installation_manual.pdf); then \
294: cp -vf installation_manual.pdf docs/.; \
295: else \
296: touch docs/installation_manual.pdf; \
297: fi
1.62 harris41 298: install -m 0755 -d docs/icons
1.80 harris41 299: install -m 0644 $(SOURCE)/doc/icons/[^C][^V]* docs/icons
1.62 harris41 300: install -m 0755 -d docs/reconfig
1.99 harris41 301: cd docs; ln -fs installation_manual.pdf index.pdf
302: cd docs/reconfig; ln -fs ../installation_manual.pdf index.pdf
1.80 harris41 303: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
304: $(SOURCE)/doc/build/reconfig.html > docs/reconfig/index.html
1.62 harris41 305: install -m 0755 -d docs/reconfig/confexamples
1.80 harris41 306: install -m 0644 $(SOURCE)/doc/build/confexamples/[^C][^V]* \
1.62 harris41 307: docs/reconfig/confexamples
1.80 harris41 308: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
309: $(SOURCE)/doc/build/installindex.html > docs/index.html
1.67 harris41 310: install -m 0755 -d docs/license
1.99 harris41 311: cd docs/license; ln -fs ../installation_manual.pdf index.pdf
1.80 harris41 312: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
313: $(SOURCE)/doc/build/license.html > docs/license/index.html
1.67 harris41 314: install -m 0755 -d docs/contact
1.99 harris41 315: cd docs/contact; ln -fs ../installation_manual.pdf index.pdf
1.80 harris41 316: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
317: $(SOURCE)/doc/build/contact.html > docs/contact/index.html
1.68 harris41 318: install -m 0755 -d docs/faq
1.99 harris41 319: cd docs/faq; ln -fs ../installation_manual.pdf index.pdf
1.80 harris41 320: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
321: $(SOURCE)/doc/build/faq.html > docs/faq/index.html
1.69 harris41 322: install -m 0755 -d docs/downloads
1.99 harris41 323: cd docs/downloads; ln -fs ../installation_manual.pdf download.pdf
1.80 harris41 324: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
325: $(SOURCE)/doc/build/download.html > docs/downloads/index.html
1.69 harris41 326: install -m 0755 -d docs/install
1.99 harris41 327: cd docs/install; ln -fs ../installation_manual.pdf install.pdf
1.80 harris41 328: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
329: $(SOURCE)/doc/build/install.html > docs/install/index.html
1.69 harris41 330: install -m 0755 -d docs/upgrade
1.99 harris41 331: cd docs/upgrade; ln -fs ../installation_manual.pdf upgrade.pdf
1.80 harris41 332: perl doc_template.pl $(SOURCE)/doc/templates/template.html \
333: $(SOURCE)/doc/build/upgrade.html > docs/upgrade/index.html
1.62 harris41 334: cd docs; tar czvpf ../docs.tar.gz .
335:
1.99 harris41 336: pdfdoc: TEST_html2ps
337: install -d pdfdoc
338: /usr/local/html2ps/bin/html2ps -D \
339: $(SOURCE)/doc/build/installindex_noform.html > pdfdoc/installindex.ps
340: /usr/local/html2ps/bin/html2ps -D \
341: $(SOURCE)/doc/build/reconfig.html | \
342: perl -nle 's/\[EXAMPLE\]/\[EXAMPLE \(at end of document\)\]/g;print' \
343: > pdfdoc/reconfig.ps
344: /usr/local/html2ps/bin/html2ps -D \
345: $(SOURCE)/doc/build/install.html > pdfdoc/install.ps
346: /usr/local/html2ps/bin/html2ps -D \
347: $(SOURCE)/doc/build/upgrade.html > pdfdoc/upgrade.ps
348: /usr/local/html2ps/bin/html2ps -D \
349: $(SOURCE)/doc/build/faq.html > pdfdoc/faq.ps
350: /usr/local/html2ps/bin/html2ps -D \
351: $(SOURCE)/doc/build/download.html > pdfdoc/download.ps
352: /usr/local/html2ps/bin/html2ps -D \
353: $(SOURCE)/doc/build/contact.html > pdfdoc/contact.ps
354: /usr/local/html2ps/bin/html2ps -D \
355: $(SOURCE)/doc/build/license.html > pdfdoc/license.ps
356: # This creates a bad confexamples.ps... so take the long way around
357: # cd $(SOURCE)/doc/build/confexamples; \
358: # mpage -P- -1 -H [^C]* > ../../../loncom/build/pdfdoc/confexamples.ps
359: install -d pdfdoc/confexamples
360: cd $(SOURCE)/doc/build/confexamples; \
361: find . -type f | cut -b3- | grep -v '^C' | perl -nle \
362: '`mpage -P- -1 -H $$_ > ../../../loncom/build/pdfdoc/confexamples/$$_.ps`;'
363: echo '' > pdfdoc/contents.txt
364: echo '' >> pdfdoc/contents.txt
365: echo ' The Learning Online Network' >> pdfdoc/contents.txt
366: echo ' with the' >> pdfdoc/contents.txt
367: echo ' Computer-Assisted Personalized Approach' >> \
368: pdfdoc/contents.txt
369: echo '' >> pdfdoc/contents.txt
370: echo '' >> pdfdoc/contents.txt
371: echo 'CONTENTS' >> pdfdoc/contents.txt
372: echo '--------' >> pdfdoc/contents.txt
373: echo 'Opening' >> pdfdoc/contents.txt
374: echo 'Configuration' >> pdfdoc/contents.txt
375: echo 'Installation' >> pdfdoc/contents.txt
376: echo 'Upgrading a LON-CAPA Server' >> pdfdoc/contents.txt
377: echo 'FAQ' >> pdfdoc/contents.txt
378: echo 'Download' >> pdfdoc/contents.txt
379: echo 'Contact Information' >> pdfdoc/contents.txt
380: echo 'License Information' >> pdfdoc/contents.txt
381: echo 'Configuration Examples' >> pdfdoc/contents.txt
382: mpage -P- -1 \
383: pdfdoc/contents.txt \
384: pdfdoc/installindex.ps \
385: pdfdoc/reconfig.ps \
386: pdfdoc/install.ps \
387: pdfdoc/upgrade.ps \
388: pdfdoc/faq.ps \
389: pdfdoc/download.ps \
390: pdfdoc/contact.ps \
391: pdfdoc/license.ps \
392: pdfdoc/confexamples/*.ps \
393: > pdfdoc/installation_manual.ps
394: ps2pdf pdfdoc/installation_manual.ps pdfdoc/installation_manual.pdf
395: mv -vf pdfdoc/installation_manual.pdf .
396:
397: TEST_html2ps:
398: @if (test -e /usr/local/html2ps/bin/html2ps); then \
399: echo "I can find html2ps; assume okay"; \
400: else \
401: echo "**** ERROR **** cannot find /usr/local/html2ps/bin/html2ps!" && \
402: echo "Please visit http://www.tdb.uu.se/~jan/html2ps.html" && \
403: exit 1; \
404: fi
405:
1.80 harris41 406: tardist:
1.104 harris41 407: # ----------- MANIFEST the building, testing and standard loncapa files
1.87 harris41 408: cat $(SOURCE)/doc/loncapafiles/buildfiles.lpml | \
409: perl lpml_parse.pl MANIFEST development default \
1.88 harris41 410: '$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' > $(SOURCE)/MANIFEST
1.94 harris41 411: cat $(SOURCE)/doc/loncapafiles/testfiles.lpml | \
412: perl lpml_parse.pl MANIFEST development default \
413: '$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
1.95 harris41 414: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
1.80 harris41 415: perl lpml_parse.pl MANIFEST development default \
1.88 harris41 416: '$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
1.104 harris41 417: # ------ CVS/Entries directories to retain 'time-checking' intelligence
1.90 harris41 418: cd $(SOURCE); find . -type f -name 'Entries' | grep 'CVS/Entries' >> \
419: MANIFEST
1.104 harris41 420: # ---- Files for top-level (the vanilla layer that the user first sees)
1.80 harris41 421: echo 'README' >> $(SOURCE)/MANIFEST
422: echo 'UPDATE' >> $(SOURCE)/MANIFEST
423: echo 'TEST' >> $(SOURCE)/MANIFEST
1.93 harris41 424: echo 'CHECKRPMS' >> $(SOURCE)/MANIFEST
1.105 harris41 425: # ---------------------------------- might as well include the MANIFEST
1.86 harris41 426: echo 'MANIFEST' >> $(SOURCE)/MANIFEST
1.104 harris41 427: # ------------------------------------------ hosts.tab are belong to us
1.89 harris41 428: echo 'loncom/rawhide_hosts.tab' >> $(SOURCE)/MANIFEST
429: echo 'loncom/production_hosts.tab' >> $(SOURCE)/MANIFEST
430: echo 'loncom/development_hosts.tab' >> $(SOURCE)/MANIFEST
1.104 harris41 431: # ------------------ Files needed for dynamically generated directories
1.83 harris41 432: echo 'doc/man' >> $(SOURCE)/MANIFEST
433: echo 'doc/lib' >> $(SOURCE)/MANIFEST
434: echo 'doc/lib/perl' >> $(SOURCE)/MANIFEST
1.85 harris41 435: echo 'doc/lib/perl/Apache' >> $(SOURCE)/MANIFEST
1.84 harris41 436: echo 'doc/scripts' >> $(SOURCE)/MANIFEST
1.104 harris41 437: # --------------------------- Point UPDATE to the internal make process
1.80 harris41 438: echo '#!/bin/sh' > $(SOURCE)/UPDATE
1.105 harris41 439: echo 'touch loncom/build/WARNINGS' >> $(SOURCE)/UPDATE;
440: echo 'ln -s loncom/build/WARNINGS WARNINGS' >> $(SOURCE)/UPDATE;
1.110 harris41 441: echo 'cd loncom/build; make build' >> $(SOURCE)/UPDATE
442: echo 'make install' >> $(SOURCE)/UPDATE
1.108 harris41 443: echo 'make updatequery' >> $(SOURCE)/UPDATE
1.109 harris41 444: echo 'make hosts_tab' >> $(SOURCE)/UPDATE
1.104 harris41 445: # ----------------------------- Point TEST to the internal make process
1.81 harris41 446: echo '#!/bin/sh' > $(SOURCE)/TEST
1.80 harris41 447: echo 'cd loncom/build; make test' >> $(SOURCE)/TEST
1.104 harris41 448: # ----------------------------- Copy CHECKRPMS to the vanilla top-level
1.93 harris41 449: cp $(SOURCE)/loncom/build/CHECKRPMS $(SOURCE)/CHECKRPMS
1.104 harris41 450: # ----------------------- vanilla executables must indeed be executable
1.80 harris41 451: chmod a+rx $(SOURCE)/UPDATE
452: chmod a+rx $(SOURCE)/TEST
1.93 harris41 453: chmod a+rx $(SOURCE)/CHECKRPMS
1.104 harris41 454: # -------------------------------- Copy README to the vanilla top-level
1.80 harris41 455: cp $(SOURCE)/doc/shortest_path_redhat7.2.txt $(SOURCE)/README
1.104 harris41 456: # --------------------------------------------------- Clean up MANIFEST
1.80 harris41 457: cd $(SOURCE); \
1.103 harris41 458: sort MANIFEST | perl -nle 'print "$(DIRTARGET)/$$_"' | \
1.104 harris41 459: perl -nle 's/\w+\/\.\.\///g;s/\w+\/\.\.\///g;print' | \
460: perl -nle 's/\w+\/\.\.\///g;s/\w+\/\.\.\///g;print' | \
461: perl -nle 's/\w+\/\.\.\///g;s/\w+\/\.\.\///g;print' | \
462: perl -nle 's/\/\.\//\//g;print' | sort | uniq > \
463: MANIFEST_loncapa
464: # -------------------------------------------------------- Make tardist
465: @cd $(SOURCE); \
466: if (test -h $(DIRTARGET)); then \
467: echo "$(DIRTARGET) link already defined; assume okay"; \
468: else \
469: ln -s . $(DIRTARGET); \
470: fi
1.105 harris41 471: cd $(SOURCE); \
1.100 harris41 472: tar --no-recursion --numeric-owner --files-from MANIFEST_loncapa \
1.102 harris41 473: -h -czf loncapa.tar.gz 2>WARNINGS || [ "0" == "0" ]
1.80 harris41 474: cat $(SOURCE)/WARNINGS | \
475: xargs --replace=XXX echo '**** WARNING **** XXX' > WARNINGS
476: rm -f $(SOURCE)/WARNINGS
477: make warningnote
1.52 harris41 478:
1.1 harris41 479: clean:
1.112 ! harris41 480: rm -Rf HTML
! 481: rm -f installation_manual.pdf
! 482: rm -f Makefile.build
! 483: rm -f Makefile.install
! 484: rm -f Makefile.configinstall
! 485: rm -Rf BinaryRoot
! 486: rm -Rf SetupBinaryRoot
! 487: rm -Rf LON-CAPA-base
! 488: rm -f base_rpm_file_list.txt
! 489: rm -f base_customizerpm.xml
! 490: rm -f setup_rpm_file_list.txt
! 491: rm -f docs.tar.gz
! 492: rm -Rf docs
! 493: rm -Rf pdfdoc
! 494: rm -f program.pl*
! 495: rm -Rf lpmladm.*
! 496: rm -f WARNINGS
! 497:
! 498: reallyclean:
1.80 harris41 499: rm -f $(SOURCE)/README
500: rm -f $(SOURCE)/UPDATE
501: rm -f $(SOURCE)/TEST
1.105 harris41 502: rm -f $(SOURCE)/MANIFEST
503: rm -f $(SOURCE)/loncapa
1.80 harris41 504: rm -f $(SOURCE)/loncapa.tar.gz
1.3 harris41 505: rm -Rf HTML
1.99 harris41 506: rm -f installation_manual.pdf
1.8 harris41 507: rm -f Makefile.build
508: rm -f Makefile.install
1.57 harris41 509: rm -f Makefile.configinstall
1.55 harris41 510: rm -Rf BinaryRoot
511: rm -Rf SetupBinaryRoot
1.62 harris41 512: rm -Rf LON-CAPA-base
1.56 harris41 513: rm -f base_rpm_file_list.txt
1.58 harris41 514: rm -f base_customizerpm.xml
1.56 harris41 515: rm -f setup_rpm_file_list.txt
1.62 harris41 516: rm -f docs.tar.gz
517: rm -Rf docs
1.99 harris41 518: rm -Rf pdfdoc
1.66 harris41 519: rm -f program.pl*
520: rm -Rf lpmladm.*
1.67 harris41 521: make -f Makefile.cvs clean
1.80 harris41 522: rm -f WARNINGS
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>