Annotation of loncom/build/Makefile, revision 1.102
1.48 harris41 1: # The LearningOnline Network with CAPA
2:
1.1 harris41 3: # Scott Harrison
1.102 ! harris41 4: # $Id: Makefile,v 1.101 2002/05/08 20:23:36 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
15: OUTSTREAM=>
16: SAVE=program.pl.$(TIMESTAMP)
17: LAUNCHSAVE=$(OUTSTREAM) $(SAVE)
18: METAMTARGET=""
19: MTARGET=""
1.82 harris41 20: VERSION=0.1
1.12 harris41 21:
1.53 harris41 22: help:
1.52 harris41 23: @echo "*** You need to specify a valid target ***"
24: @echo "NOTE: You can specify options to your Makefile target."
25: @echo "(option) DIST can be redhat7.1, debian, redhat6.2, or default"
26: @echo "(option) CATEGORY can be runtime or development"
27: @echo "(option) SOURCE is an absolute or relative directory path"
28: @echo "(option) TARGET is an absolute or relative directory path"
29: @echo "build: compile the CVS source tree"
30: @echo "install: install from a compiled CVS source tree to a "
31: @echo " specified TARGET destination on the filesystem"
32: @echo "test: test different parts of the LON-CAPA system (TEST_*)"
33: @echo "TEST_lpml_scripts: make sure that the system can process "
34: @echo " the Linux Packaging Markup Language"
35: @echo "TEST_system_dependencies: make sure that all needed system "
36: @echo " components are active and present "
37: @echo " on the server such as perl modules"
38: @echo " and the MySQL database"
39: @echo "TEST_web_layer: mimic a login and various system actions on "
40: @echo " a LON-CAPA system"
41: @echo "HTML: generate an HTML-formatted description of the LON-CAPA"
42: @echo " CVS files"
1.54 harris41 43: @echo "documentation_tree: compiles a documentation tree from the "
44: @echo " CVS:doc directory"
1.52 harris41 45: @echo "status: compare the TARGET filesystem with a compiled CVS "
46: @echo " source directory"
47: @echo "statuspost: post the results of "make status" to "
48: @echo " TARGET/home/httpd/html/lon-status/filestatus.html"
49: @echo "rpmstatus: compare the rpms on a system to defined lists "
50: @echo " CVS:doc/otherfiles/cd_rpms and "
51: @echo " CVS:doc/otherfiles/rpm_list.txt"
52: @echo "rpmstatuspost: post the results of "make rpmstatus" to "
53: @echo " TARGET/home/httpd/html/lon-status/rpmstatus.html"
1.55 harris41 54: @echo "RPM: build LON-CAPA-base RPM from CVS repository"
55: @echo "setup_RPM: build LON-CAPA-setup RPM from CVS repository"
56: @echo " handy for CD-ROM generation"
1.83 harris41 57: @echo "tardist: build a tarball that will upgrade the software on a "
58: @echo " system"
1.1 harris41 59:
1.52 harris41 60: test: TEST_lpml_scripts TEST_system_dependencies TEST_web_layer
1.41 harris41 61: @echo "ALL SYSTEM DEPENDENCY TESTS SUCCESSFUL"
62:
63: TEST_system_dependencies:
1.52 harris41 64: @echo "TESTING SYSTEM DEPENDENCIES"
1.41 harris41 65: cd system_dependencies; make
1.44 harris41 66:
67: TEST_lpml_scripts:
1.52 harris41 68: @echo "TESTING LPML INSTALLATION CODE"
1.44 harris41 69: cd ../test; perl filecomparetest.pl
1.41 harris41 70:
1.52 harris41 71: TEST_web_layer:
1.77 harris41 72: @echo "TESTING WEB LAYER"
73: cd weblayer_test; make
1.2 harris41 74:
1.63 harris41 75: TEST_hosts_tab:
76: @echo "Testing hosts.tab"
77: @if (test -h ../hosts.tab); then \
78: echo "there is a defined link; assume okay"; \
79: else echo "**** ERROR **** hosts.tab not defined!" && \
80: echo -n "You need to do one of the following within your " && \
1.92 harris41 81: echo "CVS repository (cd loncapa/loncom)" && \
82: echo " 1) ln -s production_hosts.tab hosts.tab" && \
83: echo " 2) ln -s development_hosts.tab hosts.tab" && \
84: echo "or 3) ln -s rawhide_hosts.tab hosts.tab" && \
1.63 harris41 85: echo "(you most likely want option #1, production_hosts.tab)" && \
86: exit 1; \
87: fi
1.64 harris41 88:
1.66 harris41 89: NET_hosts_tab:
90: make TIMESTAMP=`date +"%s"` METAMTARGET="TRANSPORT" \
91: MTARGET="hosts_tab" HOSTNAME="$(HOSTNAME)" lpmladm
92:
1.64 harris41 93: hosts_tab: TEST_hosts_tab
1.80 harris41 94: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
95: perl xfml_parse.pl $(SOURCE)/doc/loncapafiles/valid_hosts.xfml | \
1.64 harris41 96: perl lpml_parse.pl install $(CATEGORY) $(DIST) "$(SOURCE)" \
97: "$(TARGET)" > Makefile.install
1.66 harris41 98: make -f Makefile.install directories
1.64 harris41 99: make -f Makefile.install files
100: @echo "If hosts.tab has changed, restart httpd and loncontrol:"
101: @echo " /etc/rc.d/init.d/httpd restart"
102: @echo " /etc/rc.d/init.d/loncontrol restart"
103:
1.66 harris41 104: lpmladm:
105: @if (test $(METAMTARGET) = "TRANSPORT"); then \
106: echo "Transporting to $(HOSTNAME)"; \
107: sudo make DIST=$(DIST) CATEGORY=$(CATEGORY) \
108: SOURCE="$(SOURCE)" \
109: TARGET="lpmladm.$(TIMESTAMP)" \
110: NORESTORECONF="$(NORESTORECONF)" "$(MTARGET)"; \
111: cd lpmladm.$(TIMESTAMP); \
112: sudo tar czvf ../tarball$(TIMESTAMP).tar.gz .; \
113: cd ..; scp tarball$(TIMESTAMP).tar.gz \
114: lpmladm@$(HOSTNAME):~/tarball$(TIMESTAMP).tar.gz; \
115: ssh lpmladm@$(HOSTNAME) sudo mv tarball$(TIMESTAMP).tar.gz /; \
116: ssh lpmladm@$(HOSTNAME) sudo tar -x -z -v -C / \
117: -p --same-owner -f \
118: /tarball$(TIMESTAMP).tar.gz; \
119: ssh lpmladm@$(HOSTNAME) sudo rm -f \
120: /tarball$(TIMESTAMP).tar.gz; \
121: elif (test $(METAMTARGET) = "LAUNCH"); then \
122: echo "Launching process on $(HOSTNAME)"; \
123: LAUNCHSAVE=$(OUTSTREAM) $(SAVE); \
124: make DIST=$(DIST) CATEGORY=$(CATEGORY) SOURCE="$(SOURCE)" \
125: TARGET="$(TARGET)" NORESTORECONF="$(NORESTORECONF)" \
126: LAUNCH="$(LAUNCHSAVE)" "$(MTARGET)"; \
127: scp $(SAVE) lpmladm@$(HOSTNAME):~/$(SAVE); \
128: ssh lpmladm@$(HOSTNAME) sudo perl $(SAVE); \
129: ssh lpmladm@$(HOSTNAME) sudo rm -f $(SAVE); \
130: else \
131: echo "**** ERROR **** Incorrect METAMTARGET"; \
132: fi
133:
1.3 harris41 134: HTML:
135: install -d HTML
1.80 harris41 136: cp $(SOURCE)/doc/loncapafiles/*.gif HTML
137: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
138: perl lpml_parse.pl html development default "$(SOURCE)" '$(TARGET)' \
139: > HTML/index.html
1.3 harris41 140:
1.8 harris41 141: status:
1.7 harris41 142: install -d HTML
1.80 harris41 143: cp $(SOURCE)/doc/loncapafiles/*.gif HTML
144: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
145: perl lpml_parse.pl html $(CATEGORY) $(DIST) "$(SOURCE)" "($TARGET)" | \
1.49 harris41 146: perl lpml_html_posteval.pl > \
1.39 harris41 147: HTML/filestatus.html
1.48 harris41 148:
1.22 harris41 149: statuspost: status
1.80 harris41 150: cp $(SOURCE)/doc/loncapafiles/*.gif \
151: $(TARGET)/home/httpd/html/lon-status
1.52 harris41 152: cp HTML/filestatus.html \
153: $(TARGET)/home/httpd/html/lon-status/filestatus.html
1.22 harris41 154:
1.33 harris41 155: rpmstatus:
156: install -d RPMSTATUS
1.52 harris41 157: rpm -qa --queryformat \
158: '%{NAME}\t%{VERSION}\t%{RELEASE}\t%{BUILDTIME}\n' | sort > \
159: RPMSTATUS/current.tmp
1.80 harris41 160: cat $(SOURCE)/doc/otherfiles/cd_rpms.txt > RPMSTATUS/standard.tmp
161: cat $(SOURCE)/doc/otherfiles/rpm_list.txt > RPMSTATUS/expected.tmp
1.52 harris41 162: perl rpmparse.pl RPMSTATUS/standard.tmp RPMSTATUS/current.tmp \
163: RPMSTATUS/expected.tmp > RPMSTATUS/rpmstatus.html
1.33 harris41 164:
165: rpmstatuspost: rpmstatus
166: cp RPMSTATUS/rpmstatus.html /home/httpd/html/lon-status/rpmstatus.html
167:
1.37 albertel 168: configinstall: Makefile.configinstall
1.55 harris41 169: make -f Makefile.configinstall SOURCE="$(SOURCE)" TARGET="$(TARGET)" \
170: configfiles
171: if (test "0" = $(NORESTORECONF)); then \
172: perl loncaparestoreconfigurations suffix .lpmlnew; fi
1.9 harris41 173:
1.80 harris41 174: Makefile.configinstall: $(SOURCE)/doc/loncapafiles/loncapafiles.lpml lpml_parse.pl
175: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
1.55 harris41 176: perl lpml_parse.pl configinstall $(CATEGORY) $(DIST) "$(SOURCE)" \
177: "$(TARGET)" > Makefile.configinstall
1.37 albertel 178:
1.45 harris41 179: warningnote:
180: @if (test -s WARNINGS); then \
181: W=`grep -c '\*\*\*\* WARNING' WARNINGS`; \
182: E=`grep -c '\*\*\*\* ERROR' WARNINGS`; \
183: N=`grep -c '\*\*\*\* NOTE' WARNINGS`; \
184: echo "---> $$W WARNINGS ENCOUNTERED! "; \
185: echo "---> $$E ERRORS ENCOUNTERED! "; \
186: echo "---> $$N NOTES ENCOUNTERED! "; \
187: echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; \
188: echo "!!!! Please read the WARNINGS file !!!!"; \
189: echo "!!!! to make sure everything is !!!!"; \
190: echo "!!!! correct and taken care of !!!!"; \
191: echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; \
192: fi
1.65 harris41 193:
1.66 harris41 194: NET_webserverconf:
195: make TIMESTAMP=`date +"%s"` METAMTARGET="LAUNCH" \
196: MTARGET="webserverconf" HOSTNAME="$(HOSTNAME)" lpmladm
197:
1.65 harris41 198: webserverconf:
1.80 harris41 199: cat $(SOURCE)/doc/loncapafiles/webserver.piml | \
1.66 harris41 200: perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH)
1.65 harris41 201:
1.75 harris41 202: sanitycheck:
1.80 harris41 203: cat $(SOURCE)/doc/loncapafiles/sanitycheck.piml | \
1.98 harris41 204: perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
205: tee -a WARNINGS
206:
207: updatequery:
208: cat $(SOURCE)/doc/loncapafiles/updatequery.piml | \
1.76 harris41 209: perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
210: tee -a WARNINGS
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.87 harris41 407: cat $(SOURCE)/doc/loncapafiles/buildfiles.lpml | \
408: perl lpml_parse.pl MANIFEST development default \
1.88 harris41 409: '$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' > $(SOURCE)/MANIFEST
1.94 harris41 410: cat $(SOURCE)/doc/loncapafiles/testfiles.lpml | \
411: perl lpml_parse.pl MANIFEST development default \
412: '$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
1.95 harris41 413: cat $(SOURCE)/doc/loncapafiles/loncapafiles.lpml | \
1.80 harris41 414: perl lpml_parse.pl MANIFEST development default \
1.88 harris41 415: '$(SOURCE)' '$(TARGET)' | grep '[[:alnum:]]' >> $(SOURCE)/MANIFEST
1.90 harris41 416: cd $(SOURCE); find . -type f -name 'Entries' | grep 'CVS/Entries' >> \
417: MANIFEST
1.80 harris41 418: echo 'README' >> $(SOURCE)/MANIFEST
419: echo 'UPDATE' >> $(SOURCE)/MANIFEST
420: echo 'TEST' >> $(SOURCE)/MANIFEST
1.93 harris41 421: echo 'CHECKRPMS' >> $(SOURCE)/MANIFEST
1.86 harris41 422: echo 'MANIFEST' >> $(SOURCE)/MANIFEST
1.89 harris41 423: echo 'loncom/rawhide_hosts.tab' >> $(SOURCE)/MANIFEST
424: echo 'loncom/production_hosts.tab' >> $(SOURCE)/MANIFEST
425: echo 'loncom/development_hosts.tab' >> $(SOURCE)/MANIFEST
1.83 harris41 426: echo 'doc/man' >> $(SOURCE)/MANIFEST
427: echo 'doc/lib' >> $(SOURCE)/MANIFEST
428: echo 'doc/lib/perl' >> $(SOURCE)/MANIFEST
1.85 harris41 429: echo 'doc/lib/perl/Apache' >> $(SOURCE)/MANIFEST
1.84 harris41 430: echo 'doc/scripts' >> $(SOURCE)/MANIFEST
1.80 harris41 431: echo '#!/bin/sh' > $(SOURCE)/UPDATE
432: echo 'cd loncom/build; make build; make install' >> $(SOURCE)/UPDATE
1.81 harris41 433: echo '#!/bin/sh' > $(SOURCE)/TEST
1.80 harris41 434: echo 'cd loncom/build; make test' >> $(SOURCE)/TEST
1.93 harris41 435: cp $(SOURCE)/loncom/build/CHECKRPMS $(SOURCE)/CHECKRPMS
1.80 harris41 436: chmod a+rx $(SOURCE)/UPDATE
437: chmod a+rx $(SOURCE)/TEST
1.93 harris41 438: chmod a+rx $(SOURCE)/CHECKRPMS
1.80 harris41 439: cp $(SOURCE)/doc/shortest_path_redhat7.2.txt $(SOURCE)/README
440: cd $(SOURCE); \
1.101 harris41 441: sort MANIFEST | perl -nle 'print "$(DIRTARGET)/$$_"' > \
442: MANIFEST_loncapa; \
1.100 harris41 443: ln -s . $(DIRTARGET); \
444: tar --no-recursion --numeric-owner --files-from MANIFEST_loncapa \
1.102 ! harris41 445: -h -czf loncapa.tar.gz 2>WARNINGS || [ "0" == "0" ]
1.80 harris41 446: cat $(SOURCE)/WARNINGS | \
447: xargs --replace=XXX echo '**** WARNING **** XXX' > WARNINGS
448: rm -f $(SOURCE)/WARNINGS
449: make warningnote
1.52 harris41 450:
1.1 harris41 451: clean:
1.80 harris41 452: rm -f $(SOURCE)/README
453: rm -f $(SOURCE)/UPDATE
454: rm -f $(SOURCE)/TEST
455: rm -f $(SOURCE)/loncapa.tar.gz
1.3 harris41 456: rm -Rf HTML
1.99 harris41 457: rm -f installation_manual.pdf
1.8 harris41 458: rm -f Makefile.build
459: rm -f Makefile.install
1.57 harris41 460: rm -f Makefile.configinstall
1.55 harris41 461: rm -Rf BinaryRoot
462: rm -Rf SetupBinaryRoot
1.62 harris41 463: rm -Rf LON-CAPA-base
1.56 harris41 464: rm -f base_rpm_file_list.txt
1.58 harris41 465: rm -f base_customizerpm.xml
1.56 harris41 466: rm -f setup_rpm_file_list.txt
1.62 harris41 467: rm -f docs.tar.gz
468: rm -Rf docs
1.99 harris41 469: rm -Rf pdfdoc
1.66 harris41 470: rm -f program.pl*
471: rm -Rf lpmladm.*
1.67 harris41 472: make -f Makefile.cvs clean
1.80 harris41 473: rm -f WARNINGS
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>