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