[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.23

1.23    ! takayama    1: #$OpenXM: OpenXM/src/asir-contrib/packages/doc/Makefile.in,v 1.22 2011/02/21 09:27:07 noro 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.1       takayama    9:
1.7       takayama   10: SUBDIRS=dsolv gnuplot mathematica ok_diff ok_dmodule om \
                     11:    pfpcoh phc plucker sm1 tigers \
1.23    ! takayama   12:    todo_parametrize f_res taji_alc top noro_matrix mt_graph nn_ndbf noro_mwl noro_pd \
        !            13:    ns_twistedlog
        !            14:
1.7       takayama   15:
                     16: all :
1.17      ohara      17:        @if [ ! -f ./.build_done ] ; then \
                     18:                for i in ${SUBDIRS}; do (cd $$i && ${MAKE}); done ; \
                     19:            touch ./.build_done ; \
                     20:        fi
1.7       takayama   21:
1.18      ohara      22: install: install-help install-document
1.17      ohara      23:
                     24: install-help: all
1.7       takayama   25:        @if [ ! -f ./.install_help_done ] ; then \
1.17      ohara      26:                for i in ${SUBDIRS}; do (cd $$i && ${MAKE} install-help); done ; \
1.7       takayama   27:            touch ./.install_help_done ; \
1.1       takayama   28:        else \
1.7       takayama   29:            echo "NOTE: Installation of document is already done. Remove .install_help_done for a new installation." ; \
1.1       takayama   30:        fi
1.17      ohara      31:
                     32: install-document: all
                     33:        @if [ ! -f ./.install_doc_done ] ; then \
1.19      ohara      34:                for i in ${SUBDIRS}; do (cd $$i && ${MAKE} install-document); done ; \
1.17      ohara      35:            touch ./.install_doc_done ; \
1.1       takayama   36:        else \
1.19      ohara      37:            echo "NOTE: Installation of document is already done. Remove .install_doc_done for a new installation." ; \
1.1       takayama   38:        fi
1.7       takayama   39:
1.17      ohara      40: clean:
                     41:        for i in ${SUBDIRS}; do (cd $$i; ${MAKE} clean); done
1.1       takayama   42:
1.7       takayama   43: distclean: clean
1.17      ohara      44:        -for j in ${LANGUAGES}; do \
                     45:                ${RM} -r ${LIBDIR}/help-$$j/xm.help ; \
                     46:        done
                     47:        -${RM} -r ${DOCDIR}
                     48:        -${RM} -r ./.*done config.log config.status autom4te.cache
                     49:        -${RM} Makefile M/Makefile

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