From: j8takagi Date: Thu, 7 Apr 2011 02:42:20 +0000 (+0900) Subject: ドキュメントのフォルダ構成を整理 X-Git-Tag: v0.1p35~6 X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=commitdiff_plain;h=97c1993b79101d519c13b2c905191fb61583872c ドキュメントのフォルダ構成を整理 内部ドキュメント(DoxygenとHTAGS)は、doc_innerフォルダに作成 外部ドキュメント(マニュアル)は、docフォルダに作成 マニュアルHTMLファイルの名前をdoc/yacasl2.htmlからdoc/index.htmlに変更 --- 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) $