This commit is contained in:
IoIxD
2026-01-09 14:43:44 -07:00
parent 079cfa18b9
commit 2d3bd9213e
13 changed files with 402 additions and 69 deletions

View File

@@ -40,10 +40,14 @@ sub new_example {
push(@examples_targets, "${_[0]}${executable_suffix}");
}
sub set_shared_flag {
@shared = $_[0];
}
sub new_object {
my @l = glob($_[0]);
foreach my $e (@l) {
$e =~ s/\.c$/$object_suffix/;
$e =~ s/\.(c|m)$/$object_suffix/;
push(@library_targets, $e);
}
}