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|' \
-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|' \
-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|' \
-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|' \
-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|' \
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}
+++ /dev/null
-#!/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: