Lines Matching refs:targetos
70 $buildlogname $configurebuild $targetos $confheader $binext
93 $targetos = (split(/=/, shift @ARGV, 2))[1];
149 if ($^O eq 'MSWin32' || $targetos) {
150 if (!$targetos) {
152 $targetos = 'vc';
154 if ($targetos =~ /vc/ || $targetos =~ /borland/ || $targetos =~ /watcom/) {
158 elsif ($targetos =~ /mingw/) {
164 elsif ($targetos =~ /netware/) {
177 ($targetos =~ /vc/ || $targetos =~ /mingw32/ ||
178 $targetos =~ /borland/ || $targetos =~ /watcom/)) {
363 logit "target = ".$targetos;
556 $make = "nmake" if ($targetos =~ /vc/);
558 $make = "wmake" if ($targetos =~ /watcom/);
575 if (($^O eq 'MSWin32') && ($targetos !~ /netware/)) {
579 elsif ($targetos =~ /netware/) {
592 system("$make -i -C lib -f Makefile.$targetos prebuild");
593 system("$make -i -C src -f Makefile.$targetos
596 system("$make -i -C ares -f Makefile.$targetos prebuild");
676 if ($targetos && !$configurebuild) {
677 logit "$make -f Makefile.$targetos";
678 open(F, "$make -f Makefile.$targetos 2>&1 |") or die;
700 my $mkcmd = "$make -i" . ($targetos && !$configurebuild ? " $targetos" : "");