Makefileを修正
authorj8takagi <j8takagi@nifty.com>
Sat, 3 Nov 2012 07:18:12 +0000 (16:18 +0900)
committerj8takagi <j8takagi@nifty.com>
Sat, 3 Nov 2012 07:18:12 +0000 (16:18 +0900)
Makefile
VERSION
doc/autotest_mk.html

index 3702221..be2803b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,11 @@
+CAT := cat
 GITTAG := git tag
+XARGS := xargs
 
-.PHONY: gittag
+.PHONY: docall gittag
 
 gittag: VERSION
        $(CAT) $^ | $(XARGS) $(GITTAG)
+
+docall:
+       $(MAKE) -C doc all
diff --git a/VERSION b/VERSION
index 3b04cfb..4265b7c 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.2
+0.2p1
index 74f84d8..893cdb2 100644 (file)
@@ -413,7 +413,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Install">Install</a>
 
 <h3 class="section">2.2 ダウンロード</h3>
 
- <p><a href="http://www.j8takagi.net/autotest_mk/">Autotest_mkのサイト</a>または<a href="http://github.com/j8takagi/Autotest.mk/downloads/">githubのダウンロードページ</a>から最新版の<samp><span class="file">tar.gz</span></samp>ファイルをダウンロードします。
+ <p><a href="http://www.j8takagi.net/autotest_mk/">Autotest.mkのサイト</a>または<a href="http://github.com/j8takagi/Autotest.mk/downloads/">githubのダウンロードページ</a>から最新版の<samp><span class="file">tar.gz</span></samp>ファイルをダウンロードします。
 
 <div class="node">
 <a name="Verify"></a>
@@ -664,7 +664,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Tutorial-triangle">Tutorial triangle</
 
 <h3 class="section">3.2 テストディレクトリーの作成</h3>
 
- <p>グループディレクトリーで<kbd>make create</kbd>を実行し、テストディレクトリーを作成します。このとき、変数<code>GROUPDIR</code>でテスト名を指定します。テスト名は、小文字のアルファベットと数字で指定します。ここでは、1つめのテスト・ケースに対応するテストディレクトリーを、<samp><span class="file">01_scalene</span></samp>という名前で作成します。
+ <p>グループディレクトリーで<kbd>make create</kbd>を実行し、テストディレクトリーを作成します。このとき、変数<code>TEST</code>でテスト名を指定します。テスト名は、小文字のアルファベットと数字で指定します。ここでは、1つめのテスト・ケースに対応するテストディレクトリーを、<samp><span class="file">01_scalene</span></samp>という名前で作成します。
 
 <pre class="example">$ <kbd>make create TEST=01_scalene</kbd>
 </pre>