From: Shinichiro Nakamura Date: Fri, 27 May 2011 23:22:08 +0000 (+0900) Subject: リリース作成用スクリプトを追加した。 X-Git-Tag: v0.2.0~34 X-Git-Url: http://git.sourceforge.jp/view?p=kz-h8write%2Fkz_h8write.git;a=commitdiff_plain;h=07168f98f8e4c01f8197db07f35d93ccdc25b732 リリース作成用スクリプトを追加した。 --- diff --git a/make_release b/make_release new file mode 100755 index 0000000..cb05461 --- /dev/null +++ b/make_release @@ -0,0 +1,14 @@ +#!/bin/sh + +if [ $# -ne 1 ] +then + echo "make_release " + exit 1 +fi + +VERSION="$1" +FILELIST="Makefile README.txt kz_h8write.c kz_h8write.h mot.c mot.h motdump.c serial.c serial.h" +RELFILE="kz_h8write-$VERSION.tar.gz" + +tar cvfz $RELFILE $FILELIST +