[BACK]Return to Makefile.in CVS log [TXT][DIR] Up to [local] / OpenXM / src / asir-contrib / packages / doc

Annotation of OpenXM/src/asir-contrib/packages/doc/Makefile.in, Revision 1.33

1.33    ! takayama    1: #$OpenXM: OpenXM/src/asir-contrib/packages/doc/Makefile.in,v 1.32 2021/01/20 03:05:29 takayama Exp $
1.17      ohara       2: RM=rm -f
1.7       takayama    3:
1.17      ohara       4: LANGUAGES = en ja
                      5:
                      6: bindir=@prefix@/bin
                      7: LIBDIR=@prefix@/lib/asir
                      8: DOCDIR=@prefix@/doc/asir-contrib
1.25      takayama    9: DOCDIRTOP=@prefix@/doc
1.1       takayama   10:
1.7       takayama   11: SUBDIRS=dsolv gnuplot mathematica ok_diff ok_dmodule om \
                     12:    pfpcoh phc plucker sm1 tigers \
1.23      takayama   13:    todo_parametrize f_res taji_alc top noro_matrix mt_graph nn_ndbf noro_mwl noro_pd \
1.31      takayama   14:    ns_twistedlog nk_fb_gen_c gtt_ekn n_wishartd noro_module_syz noro_grcrt \
1.33    ! takayama   15:    ox_pari mt_gkz tk_ode_by_mpfr
1.23      takayama   16:
1.7       takayama   17:
                     18: all :
1.17      ohara      19:        @if [ ! -f ./.build_done ] ; then \
1.29      takayama   20:                for i in ${SUBDIRS}; do (cp texinfo*.tex txi-ja.tex $$i; cd $$i && ${MAKE}); done ; \
1.17      ohara      21:            touch ./.build_done ; \
                     22:        fi
1.7       takayama   23:
1.18      ohara      24: install: install-help install-document
1.17      ohara      25:
                     26: install-help: all
1.7       takayama   27:        @if [ ! -f ./.install_help_done ] ; then \
1.17      ohara      28:                for i in ${SUBDIRS}; do (cd $$i && ${MAKE} install-help); done ; \
1.7       takayama   29:            touch ./.install_help_done ; \
1.1       takayama   30:        else \
1.7       takayama   31:            echo "NOTE: Installation of document is already done. Remove .install_help_done for a new installation." ; \
1.1       takayama   32:        fi
1.17      ohara      33:
                     34: install-document: all
                     35:        @if [ ! -f ./.install_doc_done ] ; then \
1.19      ohara      36:                for i in ${SUBDIRS}; do (cd $$i && ${MAKE} install-document); done ; \
1.25      takayama   37:                install -m 0644 asir-doc-top.html ${DOCDIRTOP} ; \
1.17      ohara      38:            touch ./.install_doc_done ; \
1.1       takayama   39:        else \
1.19      ohara      40:            echo "NOTE: Installation of document is already done. Remove .install_doc_done for a new installation." ; \
1.1       takayama   41:        fi
1.7       takayama   42:
1.17      ohara      43: clean:
1.29      takayama   44:        for i in ${SUBDIRS}; do (cd $$i; ${RM} -f texinfo*.tex txi-ja.tex ; ${MAKE} clean); done
1.1       takayama   45:
1.7       takayama   46: distclean: clean
1.17      ohara      47:        -for j in ${LANGUAGES}; do \
                     48:                ${RM} -r ${LIBDIR}/help-$$j/xm.help ; \
                     49:        done
                     50:        -${RM} -r ${DOCDIR}
                     51:        -${RM} -r ./.*done config.log config.status autom4te.cache
                     52:        -${RM} Makefile M/Makefile

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