git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@672 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-12 03:03:51 +00:00
parent 91b27d5f65
commit f61cf01c13
2 changed files with 8 additions and 4 deletions

View File

@@ -170,13 +170,13 @@ print(OUT
foreach my $l (@library_targets) {
my $warn = "-Wall -Wextra -Wno-sign-compare";
my $s = $l;
my $o = $object_suffix;
my $s = $l;
my $o = $object_suffix;
$o =~ s/\./\\\./g;
$s =~ s/$o$/.c/;
if($l =~ /^external\//){
$warn = "";
if ($l =~ /^external\//) {
$warn = "";
}
print(OUT "${l}: ${s}\n");