version 1.18, 2009/02/22 02:51:44 |
version 1.29, 2017/08/31 06:31:44 |
|
|
#$OpenXM: OpenXM/src/asir-contrib/packages/doc/Makefile.in,v 1.17 2009/02/21 22:09:11 ohara Exp $ |
#$OpenXM: OpenXM/src/asir-contrib/packages/doc/Makefile.in,v 1.28 2016/10/12 02:19:16 takayama Exp $ |
RM=rm -f |
RM=rm -f |
|
|
LANGUAGES = en ja |
LANGUAGES = en ja |
|
|
INSTALL=@INSTALL@ |
|
INSTALL_SCRIPT=@INSTALL_SCRIPT@ |
|
|
|
#top_srcdir=@top_srcdir@ |
|
bindir=@prefix@/bin |
bindir=@prefix@/bin |
LIBDIR=@prefix@/lib/asir |
LIBDIR=@prefix@/lib/asir |
DOCDIR=@prefix@/doc/asir-contrib |
DOCDIR=@prefix@/doc/asir-contrib |
OXREPLACE=${bindir}/oxreplace |
DOCDIRTOP=@prefix@/doc |
|
|
SUBDIRS=dsolv gnuplot mathematica ok_diff ok_dmodule om \ |
SUBDIRS=dsolv gnuplot mathematica ok_diff ok_dmodule om \ |
pfpcoh phc plucker sm1 tigers \ |
pfpcoh phc plucker sm1 tigers \ |
todo_parametrize f_res taji_alc top noro_matrix mt_graph |
todo_parametrize f_res taji_alc top noro_matrix mt_graph nn_ndbf noro_mwl noro_pd \ |
|
ns_twistedlog nk_fb_gen_c gtt_ekn n_wishartd noro_module_syz |
|
|
|
|
all : |
all : |
@if [ ! -f ./.build_done ] ; then \ |
@if [ ! -f ./.build_done ] ; then \ |
for i in ${SUBDIRS}; do (cd $$i && ${MAKE}); done ; \ |
for i in ${SUBDIRS}; do (cp texinfo*.tex txi-ja.tex $$i; cd $$i && ${MAKE}); done ; \ |
touch ./.build_done ; \ |
touch ./.build_done ; \ |
fi |
fi |
|
|
Line 34 install-help: all |
|
Line 32 install-help: all |
|
|
|
install-document: all |
install-document: all |
@if [ ! -f ./.install_doc_done ] ; then \ |
@if [ ! -f ./.install_doc_done ] ; then \ |
for i in ${SUBDIRS}; do (cd $$i; ${MAKE} install-document); done ; \ |
for i in ${SUBDIRS}; do (cd $$i && ${MAKE} install-document); done ; \ |
for j in ${LANGUAGES}; do \ |
install -m 0644 asir-doc-top.html ${DOCDIRTOP} ; \ |
${INSTALL_SCRIPT} top/fix-link.sh ${DOCDIR}/$$j/cman-html ; \ |
|
(cd ${DOCDIR}/$$j/cman-html; sh ./fix-link.sh $$j ${OXREPLACE}) ; \ |
|
done ; \ |
|
touch ./.install_doc_done ; \ |
touch ./.install_doc_done ; \ |
else \ |
else \ |
echo "NOTE: Installation of document is already done. Remove .install_document_done for a new installation." ; \ |
echo "NOTE: Installation of document is already done. Remove .install_doc_done for a new installation." ; \ |
fi |
fi |
|
|
clean: |
clean: |
for i in ${SUBDIRS}; do (cd $$i; ${MAKE} clean); done |
for i in ${SUBDIRS}; do (cd $$i; ${RM} -f texinfo*.tex txi-ja.tex ; ${MAKE} clean); done |
|
|
distclean: clean |
distclean: clean |
-for j in ${LANGUAGES}; do \ |
-for j in ${LANGUAGES}; do \ |