TwlToolsRED/build/tools/NitroArm7VerChecker/AutoBuild.pl
yoshida_teruhisa d6ec98e4d9 ・カードアプリ(セキュア領域除く)を SD に書き込むツール
・カードアプリのコンポーネント(一部のみ)を判定して表示するツール

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@497 7061adef-622a-194b-ae81-725974e89856
2010-01-27 05:38:37 +00:00

13 lines
365 B
Perl
Executable File

#!/bin/perl
if( @ARGV[0] !~ /^[0-9]+$/ || @ARGV[1] !~ /^[0-9]+$/ || @ARGV[0] > @ARGV[1] )
{
print STDOUT "Usage : AutoBuild.pl start end [BUILDOPTIONS...] \n";
print STDOUT " start, end - positive number. must be ( start <= end ) \n";
exit 1;
}
foreach $number(@ARGV[0]..@ARGV[1])
{
system "make ID_NUMBER=$number @ARGV[2..$#ARGV]";
}