Avoid filename "test.c" because otherwise "make test"

will invoke a default rule built into make.
This commit is contained in:
Bodo Möller 2000-02-24 09:48:12 +00:00
parent 4c5fac4ac4
commit 331b59214b

View File

@ -75,21 +75,21 @@ print OUT "Compiler: $cversion\n";
print OUT "\n"; print OUT "\n";
print "Checking compiler...\n"; print "Checking compiler...\n";
if (open(TEST,">test.c")) { if (open(TEST,">cctest.c")) {
print TEST "#include <stdio.h>\nmain(){printf(\"Hello world\\n\");}\n"; print TEST "#include <stdio.h>\nmain(){printf(\"Hello world\\n\");}\n";
close(TEST); close(TEST);
system("$cc -o cctest test.c"); system("$cc -o cctest cctest.c");
if (`./cctest` !~ /Hello world/) { if (`./cctest` !~ /Hello world/) {
print OUT "Compiler doesn't work.\n"; print OUT "Compiler doesn't work.\n";
goto err; goto err;
} }
} else { } else {
print OUT "Can't create test.c\n"; print OUT "Can't create cctest.c\n";
} }
if (open(TEST,">test.c")) { if (open(TEST,">cctest.c")) {
print TEST "#include <openssl/opensslv.h>\nmain(){printf(OPENSSL_VERSION_TEXT);}\n"; print TEST "#include <openssl/opensslv.h>\nmain(){printf(OPENSSL_VERSION_TEXT);}\n";
close(TEST); close(TEST);
system("$cc -o cctest -Iinclude test.c"); system("$cc -o cctest -Iinclude cctest.c");
$cctest = `./cctest`; $cctest = `./cctest`;
if ($cctest !~ /OpenSSL $version/) { if ($cctest !~ /OpenSSL $version/) {
if ($cctest =~ /OpenSSL/) { if ($cctest =~ /OpenSSL/) {
@ -100,7 +100,7 @@ if (open(TEST,">test.c")) {
goto err; goto err;
} }
} else { } else {
print OUT "Can't create test.c\n"; print OUT "Can't create cctest.c\n";
} }
print "Running make...\n"; print "Running make...\n";