Annotation of OpenXM/src/asir-contrib/packages/doc/Makefile.in, Revision 1.26
1.26 ! takayama 1: #$OpenXM: OpenXM/src/asir-contrib/packages/doc/Makefile.in,v 1.25 2014/05/26 05:50:58 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.26 ! takayama 14: ns_twistedlog nk_fb_gen_c gtt_ekn
1.23 takayama 15:
1.7 takayama 16:
17: all :
1.17 ohara 18: @if [ ! -f ./.build_done ] ; then \
19: for i in ${SUBDIRS}; do (cd $$i && ${MAKE}); done ; \
20: touch ./.build_done ; \
21: fi
1.7 takayama 22:
1.18 ohara 23: install: install-help install-document
1.17 ohara 24:
25: install-help: all
1.7 takayama 26: @if [ ! -f ./.install_help_done ] ; then \
1.17 ohara 27: for i in ${SUBDIRS}; do (cd $$i && ${MAKE} install-help); done ; \
1.7 takayama 28: touch ./.install_help_done ; \
1.1 takayama 29: else \
1.7 takayama 30: echo "NOTE: Installation of document is already done. Remove .install_help_done for a new installation." ; \
1.1 takayama 31: fi
1.17 ohara 32:
33: install-document: all
34: @if [ ! -f ./.install_doc_done ] ; then \
1.19 ohara 35: for i in ${SUBDIRS}; do (cd $$i && ${MAKE} install-document); done ; \
1.25 takayama 36: install -m 0644 asir-doc-top.html ${DOCDIRTOP} ; \
1.17 ohara 37: touch ./.install_doc_done ; \
1.1 takayama 38: else \
1.19 ohara 39: echo "NOTE: Installation of document is already done. Remove .install_doc_done for a new installation." ; \
1.1 takayama 40: fi
1.7 takayama 41:
1.17 ohara 42: clean:
43: for i in ${SUBDIRS}; do (cd $$i; ${MAKE} clean); done
1.1 takayama 44:
1.7 takayama 45: distclean: clean
1.17 ohara 46: -for j in ${LANGUAGES}; do \
47: ${RM} -r ${LIBDIR}/help-$$j/xm.help ; \
48: done
49: -${RM} -r ${DOCDIR}
50: -${RM} -r ./.*done config.log config.status autom4te.cache
51: -${RM} Makefile M/Makefile
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>