initial commit

This commit is contained in:
Dusk
2013-09-21 21:34:07 -07:00
commit d6e7844cf4
6 changed files with 152 additions and 0 deletions

8
generate_script.pl Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/perl
use strict;
my $scrfile = shift or die "Usage: $0 project.prj [source...]\n";
open my $scr, ">", $scrfile or die "$scrfile: $!\n";
print $scr "run\n";
for my $arg (@ARGV) {
print $scr "$arg\n";
}