[project @ 1996-07-19 18:36:04 by partain]
[ghc-hetmet.git] / glafp-utils / scripts / mkdependC.prl
1 # *** MSUB does some substitutions here ***
2 # *** grep for $( ***
3 #
4 # tries to work like mkdependC
5 #
6 # ToDo: strip out all the .h junk
7 #
8 ($Pgm = $0) =~ s/.*\/([^\/]+)$/\1/;
9 $Usage  = "usage: $Pgm: not done yet\n";
10
11 $Status  = 0; # just used for exit() status
12 $Verbose = 0;
13 $Dashdashes_seen = 0;
14
15 $Begin_magic_str = "# DO NOT DELETE: Beginning of C dependencies\n";
16 $End_magic_str = "# DO NOT DELETE: End of C dependencies\n";
17 $Obj_suffix = '.o';
18 @Defines = ();
19 $Include_dirs = '';
20 $Col_width = 78; # ignored
21 $Makefile = '';
22 @Src_files = ();
23
24 &mangle_command_line_args();
25
26 if ( ! $Makefile && -f 'makefile' ) {
27     $Makefile = 'makefile';
28 } elsif ( ! $Makefile && -f 'Makefile') {
29     $Makefile = 'Makefile';
30 } elsif ( ! $Makefile) {
31     die "$Pgm: no makefile or Makefile found\n";
32 }
33
34 @Depend_lines = ();
35 %Depend_seen = ();
36
37 print STDERR "CPP defines=@Defines\n" if $Verbose;
38 print STDERR "Include_dirs=$Include_dirs\n" if $Verbose;
39
40 foreach $sf (@Src_files) {
41     # just like lit-inputter
42     # except it puts each file through CPP and
43     # a de-commenter (not implemented);
44     # builds up @Depend_lines
45     print STDERR "Here we go for source file: $sf\n" if $Verbose;
46     ($of = $sf) =~ s/\.(c|hc)$/$Obj_suffix/;
47
48     &slurp_file($sf, 'fh00');
49 }
50
51 # OK, mangle the Makefile
52 unlink("$Makefile.bak");
53 rename($Makefile,"$Makefile.bak");
54 # now copy Makefile.bak into Makefile, rm'ing old dependencies
55 # and adding the new
56 open(OMKF,"< $Makefile.bak") || die "$Pgm: can't open $Makefile.bak: $!\n";
57 open(NMKF,"> $Makefile") || die "$Pgm: can't open $Makefile: $!\n";
58 select(NMKF);
59 $_ = <OMKF>;
60 while ($_ && $_ ne $Begin_magic_str) { # copy through, 'til Begin_magic_str
61     print $_;
62     $_ = <OMKF>;
63 }
64 while ($_ && $_ ne $End_magic_str) { # delete 'til End_magic_str
65     $_ = <OMKF>;
66 }
67 # insert dependencies
68 print $Begin_magic_str;
69 print @Depend_lines;
70 print $End_magic_str;
71 while (<OMKF>) { # copy the rest through
72     print $_;
73 }
74 close(NMKF);
75 close(OMKF);
76 exit 0;
77
78 sub mangle_command_line_args {
79     while($_ = $ARGV[0]) {
80         shift(@ARGV);
81
82         if ( /^--$/ ) {
83             $Dashdashes_seen++;
84
85         } elsif ( /^-D(.*)/ ) { # recognized wherever they occur
86             push(@Defines, $_);
87         } elsif ( /^-I/ ) {
88             $Include_dirs .= " $_";
89
90         } elsif ($Dashdashes_seen != 1) { # not between -- ... --
91             if ( /^-v$/ ) {
92                 $Verbose++;
93             } elsif ( /^-f/ ) {
94                 $Makefile       = &grab_arg_arg($_);
95             } elsif ( /^-o/ ) {
96                 $Obj_suffix     = &grab_arg_arg($_);
97             } elsif ( /^-bs/ ) {
98                 $Begin_magic_str = &grab_arg_arg($_) . "\n";
99             } elsif ( /^-es/ ) {
100                 $End_magic_str = &grab_arg_arg($_) . "\n";
101             } elsif ( /^-w/ ) {
102                 $Width  = &grab_arg_arg($_);
103             } elsif ( /^-/ ) {
104                 print STDERR "$Pgm: unknown option ignored: $_\n";
105             } else {
106                 push(@Src_files, $_);
107             }
108
109         } elsif ($Dashdashes_seen == 1) { # where we ignore unknown options
110             push(@Src_files,$_) if ! /^-/;
111         }
112     }
113 }
114
115 sub grab_arg_arg {
116     local($option) = @_;
117     local($rest_of_arg);
118     
119     ($rest_of_arg = $option) =~ s/^-.//;
120
121     if ($rest_of_arg) {
122         return($rest_of_arg);
123     } elsif ($#ARGV >= 0) {
124         local($temp) = $ARGV[0]; shift(@ARGV); 
125         return($temp);
126     } else {
127         die "$Pgm: no argument following $option option\n";
128     }
129 }
130
131 sub slurp_file { # follows an example in the `open' item in perl man page
132     local($fname,$fhandle) = @_;
133     local($depend); # tmp
134     $fhandle++; # a string increment
135
136     $fname = &tidy_dir_names($fname);
137
138     unless (open($fhandle, "$(GNUCPP) $Include_dirs @Defines $fname |")) {
139          die "$Pgm: Can't open $fname: $!\n";
140     }
141     line: while (<$fhandle>) {
142         next line if ! /^#/;
143         next line if /^#(ident|pragma)/;
144         chop; # rm trailing newline
145
146         $_ = &tidy_dir_names($_);
147
148         # strip junk off the front and back
149         $_ =~ s/^#\s+\d+\s+//;
150         $_ =~ s/[ 0-9]*$//;
151         
152         # a little bit of ad-hoc fiddling now:
153         # don't bother w/ dependencies on /usr/include stuff
154         # don't bother if it looks like a GCC built-in hdr file
155         # don't bother with funny yacc-ish files
156         # don't bother with "literate" .h files (.lh); we'll just
157         # depend on the de-litified versions (which have better info)
158         # don't let a file depend on itself
159         next line if /^\/usr\/include/;
160         next line if /\/gcc-lib\/[^\/\n]+\/[\.0-9]+\/include\//;
161         next line if /\/yaccpar/;
162         next line if /\/bison\.(simple|hairy)/;
163         next line if /\.lh$/;
164         next line if $_ eq $fname;
165
166         print STDERR "$fname :: $_\n" if $Verbose;
167
168         # ToDo: some sanity checks that we still have something reasonable?
169
170         $depend = "$of : $_\n";
171         next line if $Depend_seen{$depend};  # already seen this one...
172
173         # OK, it's a new one.
174         push (@Depend_lines, $depend);
175         $Depend_seen{$depend} = 1;
176     }
177     close($fhandle);
178 }
179
180 sub tidy_dir_names { # rm various pernicious dir-name combinations...
181     local($str) = @_;
182
183     $str =~ s|/[^/.][^/]*/\.\.||g;      # nuke: /<dir>/..
184     $str =~ s|/\.[^.][^/]*/\.\.||g;     # nuke: /./.. (and others)
185     $str =~ s|"||g;
186     $str =~ s| \./| |;
187     $str;
188 }