summaryrefslogtreecommitdiffstats
path: root/kernel/dependencies.pl
blob: 10663b56b63f80b66e4034fdeb8592533e741313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use strict;

use MDK::Common;
use list_modules;

my $depfile = shift @ARGV;
load_dependencies($depfile);
print STDERR "Loaded dependencies from $depfile\n";

my @modules = uniq(map { dependencies_closure($_) } @ARGV);
print join " ", map { "$_.o" } @modules;
print "\n";