create makefile

This commit is contained in:
Nishi 2025-04-05 18:23:04 +09:00
parent 6d956c80b9
commit aaf1342a49

7
configure vendored
View File

@ -12,6 +12,10 @@ my $LDFLAGS = defined($ENV{LDFLAGS}) ? $ENV{LDFLAGS} : "";
my $LIBS = defined($ENV{LIBS}) ? $ENV{LIBS} : "";
my $NUL = "> /dev/null 2>&1";
if($CC eq "cl"){
$IS_MSVC = 1;
}
sub path_translate {
local($path) = @_;
if($IS_MSWIN){
@ -253,3 +257,6 @@ print("LDFLAGS: $LDFLAGS\n");
print(" LIBS: $LIBS\n");
print("--------------------------------\n");
if($type == "make"){
print("Creating Makefile\n");
}