summaryrefslogtreecommitdiff
path: root/glafp-utils/scripts/mkdependC.prl
blob: e81c1482344c022d7213a6b59d14d444286708f1 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# *** MSUB does some substitutions here ***
# *** grep for $( ***
#
# tries to work like mkdependC
#
# ToDo: strip out all the .h junk
#
($Pgm = $0) =~ s/.*\/([^\/]+)$/\1/;
$Usage  = "usage: $Pgm: not done yet\n";

$Status  = 0; # just used for exit() status
$Verbose = 0;
$Dashdashes_seen = 0;

$Begin_magic_str = "# DO NOT DELETE: Beginning of C dependencies\n";
$End_magic_str = "# DO NOT DELETE: End of C dependencies\n";
$Obj_suffix = '.o';
@Defines = ();
$Include_dirs = '';
$Col_width = 78; # ignored
$Makefile = '';
@Src_files = ();

# the following is a hack, so we can use RAWCPP, but there you go;
# put in just enough #defines that mkdependC will not barf.
$HostPlatform = '$(HOSTPLATFORM)';

if ( $HostPlatform =~ /^i386-/ ) {
    push(@Defines, '-D__i386__');
}
if ( $HostPlatform =~ /^sparc-/ ) {
    push(@Defines, '-D__sparc__');
}
if ( $HostPlatform =~ /-solaris2$/ ) {
    push(@Defines, '-D__svr4__');
}

&mangle_command_line_args();

if ( ! $Makefile && -f 'makefile' ) {
    $Makefile = 'makefile';
} elsif ( ! $Makefile && -f 'Makefile') {
    $Makefile = 'Makefile';
} elsif ( ! $Makefile) {
    die "$Pgm: no makefile or Makefile found\n";
}

@Depend_lines = ();
%Depend_seen = ();

print STDERR "CPP defines=@Defines\n" if $Verbose;
print STDERR "Include_dirs=$Include_dirs\n" if $Verbose;

foreach $sf (@Src_files) {
    # just like lit-inputter
    # except it puts each file through CPP and
    # a de-commenter (not implemented);
    # builds up @Depend_lines
    print STDERR "Here we go for source file: $sf\n" if $Verbose;
    ($of = $sf) =~ s/\.(c|hc)$/$Obj_suffix/;

    &slurp_file($sf, 'fh00');
}

# OK, mangle the Makefile
unlink("$Makefile.bak");
rename($Makefile,"$Makefile.bak");
# now copy Makefile.bak into Makefile, rm'ing old dependencies
# and adding the new
open(OMKF,"< $Makefile.bak") || die "$Pgm: can't open $Makefile.bak: $!\n";
open(NMKF,"> $Makefile") || die "$Pgm: can't open $Makefile: $!\n";
select(NMKF);
$_ = <OMKF>;
while ($_ && $_ ne $Begin_magic_str) { # copy through, 'til Begin_magic_str
    print $_;
    $_ = <OMKF>;
}
while ($_ && $_ ne $End_magic_str) { # delete 'til End_magic_str
    $_ = <OMKF>;
}
# insert dependencies
print $Begin_magic_str;
print @Depend_lines;
print $End_magic_str;
while (<OMKF>) { # copy the rest through
    print $_;
}
close(NMKF);
close(OMKF);
exit 0;

sub mangle_command_line_args {
    while($_ = $ARGV[0]) {
	shift(@ARGV);

	if ( /^--$/ ) {
	    $Dashdashes_seen++;

	} elsif ( /^-D(.*)/ ) { # recognized wherever they occur
	    push(@Defines, $_);
	} elsif ( /^-I/ ) {
	    $Include_dirs .= " $_";

	} elsif ($Dashdashes_seen != 1) { # not between -- ... --
	    if ( /^-v$/ ) {
		$Verbose++;
	    } elsif ( /^-f/ ) {
		$Makefile	= &grab_arg_arg($_);
	    } elsif ( /^-o/ ) {
		$Obj_suffix	= &grab_arg_arg($_);
	    } elsif ( /^-bs/ ) {
		$Begin_magic_str = &grab_arg_arg($_) . "\n";
	    } elsif ( /^-es/ ) {
		$End_magic_str = &grab_arg_arg($_) . "\n";
	    } elsif ( /^-w/ ) {
		$Width	= &grab_arg_arg($_);
	    } elsif ( /^-/ ) {
		print STDERR "$Pgm: unknown option ignored: $_\n";
	    } else {
		push(@Src_files, $_);
	    }

	} elsif ($Dashdashes_seen == 1) { # where we ignore unknown options
	    push(@Src_files,$_) if ! /^-/;
	}
    }
}

sub grab_arg_arg {
    local($option) = @_;
    local($rest_of_arg);
    
    ($rest_of_arg = $option) =~ s/^-.//;

    if ($rest_of_arg) {
	return($rest_of_arg);
    } elsif ($#ARGV >= 0) {
	local($temp) = $ARGV[0]; shift(@ARGV); 
	return($temp);
    } else {
	die "$Pgm: no argument following $option option\n";
    }
}

sub slurp_file { # follows an example in the `open' item in perl man page
    local($fname,$fhandle) = @_;
    local($depend); # tmp
    $fhandle++; # a string increment

    $fname = &tidy_dir_names($fname);

    unless (open($fhandle, "$(RAWCPP) $Include_dirs @Defines $fname |")) {
         die "$Pgm: Can't open $fname: $!\n";
    }
    line: while (<$fhandle>) {
	next line if ! /^#/;
	next line if /^#(ident|pragma)/;
	chop; # rm trailing newline

	$_ = &tidy_dir_names($_);

	# strip junk off the front and back
	$_ =~ s/^#\s+\d+\s+//;
	$_ =~ s/[ 0-9]*$//;
	
	# a little bit of ad-hoc fiddling now:
	# don't bother w/ dependencies on /usr/include stuff
	# don't bother if it looks like a GCC built-in hdr file
	# don't bother with funny yacc-ish files
    	# don't bother with "literate" .h files (.lh); we'll just
	# depend on the de-litified versions (which have better info)
	# don't let a file depend on itself
	next line if /^\/usr\/include/;
	next line if /\/gcc-lib\/[^\/\n]+\/[\.0-9]+\/include\//;
	next line if /\/yaccpar/;
    	next line if /\/bison\.(simple|hairy)/;
	next line if /\.lh$/;
	next line if $_ eq $fname;

	print STDERR "$fname :: $_\n" if $Verbose;

	# ToDo: some sanity checks that we still have something reasonable?

	$depend = "$of : $_\n";
	next line if $Depend_seen{$depend};  # already seen this one...

	# OK, it's a new one.
	push (@Depend_lines, $depend);
	$Depend_seen{$depend} = 1;
    }
    close($fhandle);
}

sub tidy_dir_names { # rm various pernicious dir-name combinations...
    local($str) = @_;

    $str =~ s|/[^/.][^/]*/\.\.||g;	# nuke: /<dir>/..
    $str =~ s|/\.[^.][^/]*/\.\.||g;	# nuke: /./.. (and others)
    $str =~ s|"||g;
    $str =~ s| \./| |;
    $str;
}