[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / doc / OpenXM-web

Annotation of OpenXM/doc/OpenXM-web/Makefile, Revision 1.52

1.52    ! takayama    1: # $OpenXM: OpenXM/doc/OpenXM-web/Makefile,v 1.51 2011/06/27 07:04:47 takayama Exp $
1.1       takayama    2: #
1.43      takayama    3: OpenXM_HOME=../..
                      4: OpenXM_include=${OpenXM_HOME}/include
1.39      takayama    5: OXHOME=/home/web/OpenXM
1.40      takayama    6: #OXHOME=/home/taka/afo/OpenXM    ## for test.
1.39      takayama    7: CURRENT=${OXHOME}/Current
                      8: CURRENT_DOC=${CURRENT}/doc
                      9: STABLE=${OXHOME}/Stable
                     10: ASCM2001=${OXHOME}/ascm2001
1.1       takayama   11: OpenXM_doc=../.
1.5       takayama   12: OpenXM_spec=../OpenXM-specs
1.25      takayama   13: OpenXM_calc=../calc2000p
1.34      takayama   14: OpenXM_ascm=../ascm2001
1.3       takayama   15: DVIPS=dvips -f
1.32      takayama   16: LATEX2HTML=latex2html -tmp /tmp
1.44      takayama   17: OXWEAVE=${OpenXM_HOME}/bin/oxweave
1.28      takayama   18: OW_FLAG=--recursive
1.39      takayama   19: RSYNC=rsync -Cavz
                     20: RM=rm
1.23      takayama   21:
1.47      takayama   22: CURRENT_FILES=index.html index-ja.html index-spec.html index-spec-ja.html \
                     23:               OpenXM-RFC.html \
                     24:               cmotag.h oxMessageTag.h smCommand.h \
1.39      takayama   25:               anonymous.html ERRATA.html
1.37      takayama   26:
1.40      takayama   27: OXWEAVE_FILES_in_doc=install-en.txt install-ja.txt OpenXM-FAQ-en.txt OpenXM-FAQ-ja.txt
1.5       takayama   28:
1.39      takayama   29: LOGOS=logo-openxm2.jpg logo-openxm5.jpg logo-openxm_simple0.jpg
1.5       takayama   30:
1.39      takayama   31: MANUALS=asir2000 asir-contrib kan96xx ox_math
1.35      takayama   32:
1.39      takayama   33: all: all-stable all-ascm2001 all-current all-top all-current-spec
1.40      takayama   34:        @echo "************************************************************"
                     35:        @echo "* cp -r  /home/web/OpenXM/Current /home/web/OpenXM/x.y.z   *"
                     36:        @echo "* to generate a page of the specific version x.y.z         *"
                     37:        @echo "* Edit /home/web/OpenXM/x.y.z/index.html by hand.          *"
                     38:        @echo "************************************************************"
1.2       takayama   39:
1.39      takayama   40: configure-dir:
                     41:        if test ! -f .configure-dir.done ; \
                     42:        then \
                     43:                if test ! -d ${OXHOME} ; then mkdir ${OXHOME} ; fi ; \
                     44:                if test ! -d ${CURRENT} ; then mkdir ${CURRENT} ; fi ; \
                     45:                if test ! -d ${CURRENT}/doc ; then mkdir ${CURRENT}/doc ; fi ; \
                     46:                if test ! -d ${STABLE} ; then mkdir ${STABLE} ; fi ; \
1.40      takayama   47:                if test ! -d ${STABLE}/html ; then mkdir ${STABLE}/html ; fi ; \
                     48:                if test ! -d ${STABLE}/html/OpenXM-poster ; then mkdir ${STABLE}/html/OpenXM-poster ; fi ; \
1.39      takayama   49:                if test ! -d ${ASCM2001} ; then mkdir ${ASCM2001} ; fi ; \
                     50:                touch .configure-dir.done ; \
                     51:        fi
                     52:
                     53: all-stable:  configure-dir
1.40      takayama   54:        make -f Makefile-intro all-html-poster
                     55:        (cd tmp-poster ; ${RSYNC} func1 func2 efficient ${STABLE}/html/OpenXM-poster)
1.39      takayama   56:
                     57: all-ascm2001: configure-dir
1.40      takayama   58:        make -f Makefile-intro all-html-ascm
                     59:        -(cd ${OpenXM_ascm} ; ${RSYNC} ascm2001 ${OXHOME}/ascm2001)
1.39      takayama   60:
                     61: all-current: configure-dir
1.40      takayama   62:        (cd ${OpenXM_doc} ; make all)
                     63:        (cd ${OpenXM_doc} ; ${RSYNC} ${OXWEAVE_FILES_in_doc} ${CURRENT})
1.39      takayama   64:        ${RSYNC} ${CURRENT_FILES} ${CURRENT}
                     65:        cp index-doc.html ${CURRENT_DOC}/index-doc.html
1.47      takayama   66:        cp index-doc-ja.html ${CURRENT_DOC}/index-doc-ja.html
1.52    ! takayama   67:        cp google-ja.html ${CURRENT_DOC}/google-ja.html
1.50      takayama   68:        cp index-doc-asir-contrib2-ja.html ${CURRENT_DOC}/asir-contrib
                     69:        cp index-doc-asir-contrib2-en.html ${CURRENT_DOC}/asir-contrib
1.47      takayama   70:        cp index-license.html ${CURRENT_DOC}/index-license.html
1.51      takayama   71:        cp video.html ${CURRENT}/video.html
                     72:        cp video-ja.html ${CURRENT}/video-ja.html
1.39      takayama   73:        @echo "***************************************************"
                     74:        @echo "*  Have you done (cd OpenXM/src ; make install)   *"
1.46      takayama   75:        @echo "*                (cd OpenXM/src ; make install-document) "
1.39      takayama   76:        @echo "*  to generate the documents?                     *"
                     77:        @echo "***************************************************"
                     78:        (cd ${OpenXM_doc} ; ${RSYNC} ${MANUALS} ${CURRENT_DOC})
                     79:
                     80: all-current-spec: configure-dir
                     81:        (cd ${OpenXM_spec} ; make CURRENT=${CURRENT} install-web-all)
                     82:
                     83: all-top: configure-dir
                     84:        cp top.html ${OXHOME}/index.html
1.47      takayama   85:        cp top-ja.html ${OXHOME}/index-ja.html
                     86:        cp inobuta-ja.html ${OXHOME}/inobuta-ja.html
1.48      takayama   87:        cp news-o.html ${OXHOME}/news-o.html
                     88:        cp news-o-ja.html ${OXHOME}/news-o-ja.html
1.45      takayama   89:        cp ../../Copyright/contrib-and-hist-ja.txt ${OXHOME}
1.39      takayama   90:        ${RSYNC} people.html ${OXHOME}
1.49      takayama   91:        (cd Screenshot ; ${RSYNC} *.html ${OXHOME})
1.39      takayama   92:        ${RSYNC} ${LOGOS} ${STABLE}
1.25      takayama   93:
                     94: clean:
1.39      takayama   95:        -${RM} .[a-z]*done
1.40      takayama   96:        -make -f Makefile-intro clean
                     97:        -(cd ${OpenXM_spec} ; make clean)
1.15      takayama   98:
1.39      takayama   99: clean-top:
                    100:        -${RM} ${OXHOME}/index.html
                    101: clean-everything: clean clean-top
                    102:        -${RM} -rf ${CURRENT} ${STABLE} ${ASCM2001} ${CURRENT_DOC}
1.40      takayama  103:        -${RM} -rf tmp-poster
1.37      takayama  104:
1.41      takayama  105:
                    106: ###
                    107: ### target for buggy latex2html
                    108: ###  (jlatex2html machine)% make
                    109: ###  (latex2html machine)%  make clean-en-html
                    110: ###  (latex2html machine)%  make
                    111: clean-en-html:
                    112:        -(cd ../OpenXM-specs ; make clean-en-done)
1.42      takayama  113:        -(make -f Makefile-intro clean)
1.43      takayama  114:
                    115: install-exec: ${OpenXM_include}/ox/cmotag.h ${OpenXM_include}/ox/oxMessageTag.h ${OpenXM_include}/ox/smCommand.h
                    116: ${OpenXM_include}/ox/cmotag.h: cmotag.h
                    117:        cp cmotag.h ${OpenXM_include}/ox
                    118: ${OpenXM_include}/ox/oxMessageTag.h: oxMessageTag.h
                    119:        cp oxMessageTag.h ${OpenXM_include}/ox
                    120: ${OpenXM_include}/ox/smCommand.h: smCommand.h
                    121:        cp smCommand.h ${OpenXM_include}/ox

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