Annotation of OpenXM/src/cfep/package/Makefile-doc, Revision 1.1
1.1 ! takayama 1: usage:
! 2: @echo "************************ Preparation ****************************"
! 3: @echo " export PATH=/sw/bin:/sw/sbin:$PATH "
! 4: @echo " to use ptex, dvipdfm(x), dvips, texi2html, (latex2html) "
! 5: @echo " (latex, dvips, pstoimg --- for print_png_form)"
! 6: @echo " export LC_ALL=\"C\" "
! 7: @echo " to avoid strange behavior of the translation of argv (see misc/argtest)"
! 8: @echo " See also oxgentexi --title name_by_euc_code "
! 9: @echo " source ~/OX4/OpenXM/rc/dot.bashrc "
! 10: @echo "*******************************************************************"
! 11: @echo "Or source ~/bin/dot.finkrc;source ~/OX4/OpenXM/rc/dot.bashrc;export LC_ALL=C"
! 12: @echo "*******************************************************************"
! 13:
! 14: OpenXM_HOME=${HOME}/OX4/OpenXM
! 15:
! 16: #Build the following html files.
! 17: #${OpenXM_HOME}/doc/asir2000/html-jp/*.html
! 18: #${OpenXM_HOME}/doc/asir2000/html-exp-ja/*.html
! 19: #${OpenXM_HOME}/doc/asir-contrib/ja/*-html/*.html
! 20: build-documents:
! 21: if test ! -f .build-documents_done ; then \
! 22: (cd ${OpenXM_HOME}/src/asir-doc ; make install) ; \
! 23: (cd ${OpenXM_HOME}/src/asir-contrib/packages/doc ; make install-document) ; \
! 24: touch .build-documents_done ; \
! 25: fi
! 26:
! 27: build-utf8-asir: build-documents
! 28: ./gendoc ${OpenXM_HOME}/doc/asir2000/html-jp
! 29: ./gendoc ${OpenXM_HOME}/doc/asir2000/html-exp-ja
! 30: # copy png files if necessary.
! 31: @echo "--------------------------------------------------------------------------"
! 32: @echo "utf8 documents are generated under ${OpenXM_HOME}/doc/cfep/html-ja_JP.utf8"
! 33: @echo "--------------------------------------------------------------------------"
! 34: #build-utf8-asir-contrib: not yet
! 35:
! 36: install-pdf-to-cfep: install-pdf-to-cfep2
! 37: mkdir -p ${OpenXM_HOME}/doc/cfep/pdf
! 38: cp ../Doc/Intro/next2.pdf ${OpenXM_HOME}/doc/cfep/pdf
! 39: -cp ${OpenXM_HOME}/doc/asir-contrib/ja/*.pdf ${OpenXM_HOME}/doc/cfep/pdf
! 40: ######### Collect pdf document from the nextwork. Update this before distribution.
! 41: -scp taka@lemon.math.kobe-u.ac.jp:this05/asir-book/main.pdf ${OpenXM_HOME}/doc/cfep/pdf/asir-book.pdf
! 42:
! 43: install-pdf-to-cfep2:
! 44: -scp taka@lemon.math.kobe-u.ac.jp:/home/web/OpenXM/Current/doc/asir-contrib/ja/yang_tutorial-ja.pdf ${OpenXM_HOME}/doc/cfep/pdf
! 45: -scp taka@lemon.math.kobe-u.ac.jp:/home/web/OpenXM/Current/doc/asir-contrib/en/dualgraph-manual.pdf ${OpenXM_HOME}/doc/cfep/pdf
! 46: -scp taka@lemon.math.kobe-u.ac.jp:/home/web/raj/Papers/002.pdf ${OpenXM_HOME}/doc/cfep/pdf/nk_mora.pdf
! 47: ## copy ../Doc/Intro
! 48:
! 49: clean:
! 50: rm -f .*done
! 51:
! 52: clean-OpenXM: clean
! 53: (cd ${OpenXM_HOME}/src/asir-doc ; make clean ; ./make-configure)
! 54: (cd ${OpenXM_HOME}/src/asir-contrib ; make clean ; ./make-configure)
! 55:
! 56:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>