*** empty log message ***
authorhanda <handa>
Fri, 27 Feb 2004 13:24:54 +0000 (13:24 +0000)
committerhanda <handa>
Fri, 27 Feb 2004 13:24:54 +0000 (13:24 +0000)
Makefile.am
mainpage.txt
utils/exmim.sh [deleted file]
utils/usr_filter.rb

index 5a5f74d..4812926 100644 (file)
@@ -128,7 +128,7 @@ html: usr-html ja-html dev-html
 latex: usr-latex ja-latex dev-latex
 man: usr-man ja-man
 
 latex: usr-latex ja-latex dev-latex
 man: usr-man ja-man
 
-doxyfile-html: doxyfile Makefile
+doxyfile-html: doxyfile ${SRCALL}
        sed -e 's|%PROJECT_NUMBER%|@PACKAGE_VERSION@|' \
            -e 's|%INPUT%|${SRCALL}|' \
            -e 's|%GENERATE_HTML%|YES|' \
        sed -e 's|%PROJECT_NUMBER%|@PACKAGE_VERSION@|' \
            -e 's|%INPUT%|${SRCALL}|' \
            -e 's|%GENERATE_HTML%|YES|' \
@@ -154,7 +154,7 @@ doxyfile-html.ja: doxyfile-html
            -e 's/%OUTPUT_LANGUAGE%/Japanese/' \
          < $< >$@
 
            -e 's/%OUTPUT_LANGUAGE%/Japanese/' \
          < $< >$@
 
-doxyfile-latex: doxyfile
+doxyfile-latex: doxyfile ${SRCALL}
        sed -e 's|%PROJECT_NUMBER%|@PACKAGE_VERSION@|' \
            -e 's|%INPUT%|${SRCALL}|' \
            -e 's|%GENERATE_HTML%|NO|' \
        sed -e 's|%PROJECT_NUMBER%|@PACKAGE_VERSION@|' \
            -e 's|%INPUT%|${SRCALL}|' \
            -e 's|%GENERATE_HTML%|NO|' \
@@ -180,7 +180,7 @@ doxyfile-latex.ja: doxyfile-latex
            -e 's/%OUTPUT_LANGUAGE%/Japanese/' \
          < $< >$@
 
            -e 's/%OUTPUT_LANGUAGE%/Japanese/' \
          < $< >$@
 
-doxyfile-man1: doxyfile
+doxyfile-man1: doxyfile ${SRCALL}
        sed -e 's|%PROJECT_NUMBER%|@PACKAGE_VERSION@|' \
            -e 's|%INPUT%|${MAN1}|' \
            -e 's|%GENERATE_HTML%|NO|' \
        sed -e 's|%PROJECT_NUMBER%|@PACKAGE_VERSION@|' \
            -e 's|%INPUT%|${MAN1}|' \
            -e 's|%GENERATE_HTML%|NO|' \
@@ -189,7 +189,7 @@ doxyfile-man1: doxyfile
            -e 's|%MAN_EXTENSION%|.1|' \
          < $< >$@
 
            -e 's|%MAN_EXTENSION%|.1|' \
          < $< >$@
 
-doxyfile-man3: doxyfile
+doxyfile-man3: doxyfile ${SRCALL}
        sed -e 's|%PROJECT_NUMBER%|@PACKAGE_VERSION@|' \
            -e 's|%INPUT%|${MAN3}|' \
            -e 's|%GENERATE_HTML%|NO|' \
        sed -e 's|%PROJECT_NUMBER%|@PACKAGE_VERSION@|' \
            -e 's|%INPUT%|${MAN3}|' \
            -e 's|%GENERATE_HTML%|NO|' \
@@ -198,7 +198,7 @@ doxyfile-man3: doxyfile
            -e 's|%MAN_EXTENSION%|.3m17n|' \
          < $< >$@
 
            -e 's|%MAN_EXTENSION%|.3m17n|' \
          < $< >$@
 
-doxyfile-man5: doxyfile
+doxyfile-man5: doxyfile ${SRCALL}
        sed -e 's|%PROJECT_NUMBER%|@PACKAGE_VERSION@|' \
            -e 's|%INPUT%|${MAN5}|' \
            -e 's|%GENERATE_HTML%|NO|' \
        sed -e 's|%PROJECT_NUMBER%|@PACKAGE_VERSION@|' \
            -e 's|%INPUT%|${MAN5}|' \
            -e 's|%GENERATE_HTML%|NO|' \
@@ -312,7 +312,7 @@ WEBDIR = /project/web/extra/m17n-lib/m17n-docs
 
 release: dist
        [ -d ${WEBDIR} ] || mkdir ${WEBDIR}
 
 release: dist
        [ -d ${WEBDIR} ] || mkdir ${WEBDIR}
-       cp usr/html/* ${WEBDIR}
+       cd usr/html; for f in *; do case $$f in *8c*);; *8h*);; *8txt*);; *) echo $$f;; esac; done
        cp ${distdir}.tar.gz ${WEBDIR}
 
 
        cp ${distdir}.tar.gz ${WEBDIR}
 
 
index 6341668..80cd6f4 100644 (file)
@@ -89,7 +89,7 @@ mandatory but several functions of the m17n library depend on them.
 
 <li> wordcut -- http://thaiwordseg.sourceforge.net/
 
 
 <li> wordcut -- http://thaiwordseg.sourceforge.net/
 
-     Used to find Thai word boundary in the example program
+     Used for finding Thai word boundary in the example program
      example/linebreak.c.
 
 </ul>
      example/linebreak.c.
 
 </ul>
diff --git a/utils/exmim.sh b/utils/exmim.sh
deleted file mode 100755 (executable)
index 6119249..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-cat <<EOF
-/***en @page m17nExMim Example Input Methods */
-/***ja @page m17nExMim ¥µ¥ó¥×¥ëÆþÎϥ᥽¥Ã¥É */
-/***
-This section describes these example input methods.  They are to
-demonstrate the usage of the m17n library, not for practical use.
-
-<ul>
-EOF
-
-cat $* | grep '@page' | sed -e 's/;; @page \([^.]*\).mim/<li> @ref \1 "\1.mim" --/'
-
-cat <<EOF
-</ul>
-*/
-EOF
-
-cat $* | \
-sed -n -e '/;; \/\*\*\*/,/;; \*\// p' | \
-sed -e 's/;; *//' \
-    -e 's/@section/@subsection/' \
-    -e 's/@page \([^.]*\).mim/@section \1 \1.mim --/'
-
-# Local Variables:
-# coding: euc-jp
-# End:
index 2bb63b0..db8ee0c 100755 (executable)
@@ -29,7 +29,7 @@ while gets
        if doxy == 1 
            buf.push($_)
           end
        if doxy == 1 
            buf.push($_)
           end
-     when /\/\/\/\// 
+     when /\/\*=\*\// 
        commentblock(buf)
        buf = []
    
        commentblock(buf)
        buf = []