summaryrefslogtreecommitdiff
path: root/scandeps
blob: 3a5b6409290753fc4bdb0ebe652d0aa4ae46ab5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/perl -W

%include = ();

die "Usage: scandeps object_dirs -- sources" if (@ARGV < 3);

@objdirs = ();
while (($z = shift @ARGV) ne "--") {
	push @objdirs, $z;
}

# scan all files for relevant #include lines
foreach my $file (@ARGV) {
	open FILE, "<$file" or die "Failed to open $file: $!";
	while (my $line = <FILE>) {
		if ($line =~ m|#include "([^"]+)"|) {
			$include{$file}{$1} = 1 if (-e $1);
		}
	}
	close FILE;
}

# output dependencies
foreach my $file (@ARGV) {
	next unless $file =~ m|([^/]+)[.]c$|;
	%deps = ();
	search_deps($file);
	foreach my $z (@objdirs) {
		print "$z/$1.o ";
	}
	print ": $file ";
	foreach my $z (sort keys %deps) { print "$z " }
	print "\n";
}


sub search_deps {
	my $file = shift;
	return unless exists $include{$file};
	foreach my $z (keys %{$include{$file}}) {
		next if exists $deps{$z};
		$deps{$z} = 1;
		search_deps($z);
	}
}