From 97c1993b79101d519c13b2c905191fb61583872c Mon Sep 17 00:00:00 2001 From: j8takagi Date: Thu, 7 Apr 2011 11:42:20 +0900 Subject: [PATCH] =?utf8?q?=E3=83=89=E3=82=AD=E3=83=A5=E3=83=A1=E3=83=B3?= =?utf8?q?=E3=83=88=E3=81=AE=E3=83=95=E3=82=A9=E3=83=AB=E3=83=80=E6=A7=8B?= =?utf8?q?=E6=88=90=E3=82=92=E6=95=B4=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 内部ドキュメント(DoxygenとHTAGS)は、doc_innerフォルダに作成 外部ドキュメント(マニュアル)は、docフォルダに作成 マニュアルHTMLファイルの名前をdoc/yacasl2.htmlからdoc/index.htmlに変更 --- .gitignore | 1 + Doxyfile | 2 +- Makefile | 33 +++++++++++++++++++++++--------- README | 5 ++--- doc/Makefile | 2 ++ doc/{yacasl2.html => index.html} | 0 6 files changed, 30 insertions(+), 13 deletions(-) rename doc/{yacasl2.html => index.html} (100%) diff --git a/.gitignore b/.gitignore index cb89184..0780a99 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ /casl2 /comet2 /dumpword +/doc_inner *.o *~ GPATH diff --git a/Doxyfile b/Doxyfile index f064982..7971b95 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NUMBER = # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. -OUTPUT_DIRECTORY = doc/doxygen +OUTPUT_DIRECTORY = doc_inner/doxygen # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output diff --git a/Makefile b/Makefile index ccc16d7..77168cb 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,10 @@ .PHONY: build check doc doxygen clean gtags htags MKDIR = mkdir -p +MV = mv DOXYGEN = doxygen GTAGS = gtags HTAGS = htags -HTAGSFLAG = --map-file -anosx --tree-view +HTAGSFLAG = -anosx build: $(MAKE) -C src @@ -14,25 +15,39 @@ check: doc: @$(MAKE) -sC doc -doxygen: htags +doxygen: doc_inner @$(DOXYGEN) gtags: @$(GTAGS) -htags: doc/doxygen/html gtags +htags: doc_inner gtags @$(HTAGS) $(HTAGSFLAG) $