summaryrefslogtreecommitdiff
path: root/tests/makeicc.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/makeicc.pl')
-rwxr-xr-xtests/makeicc.pl35
1 files changed, 0 insertions, 35 deletions
diff --git a/tests/makeicc.pl b/tests/makeicc.pl
deleted file mode 100755
index 13f4ae39a39..00000000000
--- a/tests/makeicc.pl
+++ /dev/null
@@ -1,35 +0,0 @@
-# $Id$
-
-@ls = `ls -1 *.cpp`;
-$allicc = "icc.bat";
-
-foreach $tmp (@ls)
-{
- ($a1, $a2) = split("cpp",$tmp);
- $tmp2 = "$a1\icc";
-
-open(T,"> $a1\icc");
- print T "// \$Id\$\n";
- print T "\n";
- print T "include \"vacpp_setup.icc\"\n";
- print T "option\n";
- print T " link(libSearchPath, platformLibSearchPath),\n";
- print T " incl(searchPath, \"..\"),\n";
- print T " link(linkWithMultiThreadLib,yes),\n";
- print T " link(debug)\n";
- print T " {\n";
- chop($a1);
- print T " target type (exe) \"$a1\"\n";
- print T " {\n";
- print T " source type (cpp) \"$a1\.cpp\"\n";
- print T " source platformLinkLibs\n";
- print T " }\n";
- print T " }\n";
-close T;
-
-open(ALLICC,">> $allicc");
- print ALLICC "vacbld -SEV=E $a1\.icc\n";
-close ALLICC;
- print "$a1\n";
-}
-