mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
・カードアプリのコンポーネント(一部のみ)を判定して表示するツール git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@497 7061adef-622a-194b-ae81-725974e89856
13 lines
365 B
Perl
Executable File
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]";
|
|
} |