[project @ 2000-04-13 19:12:17 by panne]
[ghc-hetmet.git] / ghc / utils / mkdependHS / mkdependHS.prl
1 #
2 # perl script expect the following variables to be prepended:
3 #
4 #  RAWCPP TMPDIR TOP_PWD HscIfaceFileVersion
5 #  libdir libexecdir datadir INSTALLING
6 #  SED 
7 #
8 # tries to work like mkdependC - capable of dealing with:
9 #
10 #  -literate Haskell code (Bird tracks or Glasgow literate style) (.lhs)
11 #  -straight Haskell source (.hs)
12 #  -literate or straight Happy specs    (.ly)
13 #  
14 # ToDo: strip out all the .h junk
15 #
16 ($Pgm = $0) =~ s/.*\/([^\/]+)$/\1/;
17 $Usage  = <<EOUSAGE;
18 Usage: $Pgm [mkdependHS options] [-- GHC options --] srcfile1 [srcfile2 ...]
19
20 Options recognised wherever they occur (mkdependHS or GHC):
21
22     -D<blah>    A cpp #define; usual meaning
23     -i<dirs>    Add <dirs> (colon-separated) to list of directories
24                 to search for "import"ed modules
25     -I<dir>     Add <dir> to list of directories to search for
26                 .h files (i.e., usual meaning)
27     -package <blah> This program uses this GHC system library; take
28                 appropriate action (e.g., recognise when they are
29                 "import"ing a module from that library).
30
31 mkdependHS-specific options (not between --'s):
32
33     -v          Be verbose.
34     -v -v       Be very verbose.
35     -w          No warnings
36     -f blah     Use "blah" as the makefile, rather than "makefile"
37                 or "Makefile".
38     -cpp        Wash the input files through cpp(1).
39     -o <osuf>   Use <osuf> as the "object file" suffix ( default: o)
40     -s <suf>    Make extra dependencies for files with
41                 suffix <suf><osuf>; thus, "-o hc -s _a" will
42                 make dependencies both for .hc files and for .a_hc
43                 files.  (Useful in conjunction with NoFib "ways".)
44     --exclude-module=<file> 
45                 Regard <file> as "stable"; i.e., eXclude it from having
46                 dependencies on it.
47     -x          same as --exclude-module
48     --exclude-directory=<dirs> 
49                 Regard : separated list of directories as containing stable,
50                 don't generate any dependencies on modules therein.
51     -Xdirs      same as --exclude-directory
52     --include-prelude
53                 Regard prelude libraries as unstable, i.e., generate dependencies
54                 on prelude modules. This option is normally only used by the
55                 various system libraries. If a -package option is used, dependencies
56                 will also be generated on the library's interfaces.
57     --include-module=<file> 
58                 Regard <file> as not "stable"; i.e., generate dependencies
59                 on it (if any). This option is normally used in conjunction 
60                 with the --exclude-directory option.
61                 
62 EOUSAGE
63
64 $Status     = 0; # just used for exit() status
65 $Verbose    = 0; # 1 => verbose, 2 => very verbose
66 $Warnings   = 1; # 1 => warn about duplicate interface files
67 $Dashdashes_seen = 0;
68
69 $Cpp = ${RAWCPP};
70 $Cpp_flag_set = 0; # 1 => run cpp over input files.
71
72 if ( $ENV{'TMPDIR'} ) { # where to make tmp file names
73     $Tmp_prefix = $ENV{'TMPDIR'} . "/mkdependHS$$";
74 } else {
75     $Tmp_prefix ="${TMPDIR}/mkdependHS$$";
76     $ENV{'TMPDIR'} = "${TMPDIR}"; # set the env var as well
77 }
78
79 $TopPwd            = "${TOP_PWD}";
80 $InstLibDirGhc     = "${libdir}";
81 $InstLibExecDirGhc = "${libexecdir}";
82 $InstDataDirGhc    = "${datadir}";
83
84 $Unlit = ($INSTALLING) ? "${InstLibExecDirGhc}/unlit" 
85                        : "${TopPwd}/ghc/utils/unlit/unlit";
86
87 $HiBootVersion = $HscIfaceFileVersion;
88 $hi_boot_with_version = 0;
89
90 $Begin_magic_str = "# DO NOT DELETE: Beginning of Haskell dependencies\n";
91 $End_magic_str = "# DO NOT DELETE: End of Haskell dependencies\n";
92 @Obj_suffix =  ("o");
93 @File_suffix = ();
94
95 $Import_dirs = '.';
96 %Syslibs = ();
97 %LibIfaces  = ();  # known prelude/syslib ifaces; read from a file
98 %IgnoreMe = ();
99 # directories to considered stable.
100 @Ignore_dirs = ();
101
102 %ModuleIn = ();
103
104 $Include_dirs = '-I.';
105 $Makefile = '';
106 @Src_files = ();
107 $Include_prelude = 0;
108 @Defines = ();
109 $ProcessingOptions=0;
110
111 # Delete temp. file if script is halted.
112 sub quit_upon_signal { print STDERR "Deleting $Tmp_prefix.hs .. \n"; unlink "$Tmp_prefix.hs"; }
113 $SIG{'INT'}  = 'quit_upon_signal';
114 $SIG{'QUIT'} = 'quit_upon_signal';
115
116 &mangle_command_line_args(@ARGV);
117
118 if ( $Status ) {
119     print stderr $Usage;
120     exit(1);
121 }
122
123 @Import_dirs  = split(/:/,$Import_dirs);
124 @Include_dirs = split(/\s+/,$Include_dirs); # still has -I's in it
125
126 # NB: We keep the scalar-variable equivalents to use in error messages
127
128 &gather_import_dirs();
129
130 if ( ! $Makefile && -f 'makefile' ) {
131     $Makefile = 'makefile';
132 } elsif ( ! $Makefile && -f 'Makefile') {
133     $Makefile = 'Makefile';
134 } elsif ( ! $Makefile) {
135     die "$Pgm: no makefile or Makefile found\n";
136 }
137
138 print STDERR "CPP defines=@Defines\n" if $Verbose;
139 print STDERR "Import_dirs=@Import_dirs\n" if $Verbose;
140 print STDERR "Include_dirs=@Include_dirs\n" if $Verbose;
141
142 &preprocess_import_dirs();
143
144 @Depend_lines = ();
145
146 foreach $sf (@Src_files) {
147
148     # just like lit-inputter
149     # except it puts each file through CPP and
150     # a de-commenter (not implemented);
151     # builds up @Depend_lines
152     print STDERR "Here we go for source file: $sf\n" if $Verbose;
153     ($bf = $sf) =~ s/\.l?(hs|y)$//;
154
155     local($str)="";
156     foreach $obj  (@Obj_suffix) {
157         $str .= "$bf.$obj ";
158         foreach $suff (@File_suffix) {
159            $str .= "$bf.${suff}_$obj ";
160         }
161     }
162     push(@Depend_lines, "$str: $sf\n");
163     # if it's a literate file, .lhs or .ly? (happy specs), then we de-literatize it: 
164     if ( $sf !~ /\.l(hs|y)$/ ) {
165         $file_to_read = $sf;
166     } else {
167         $file_to_read = "$Tmp_prefix.hs";
168         local($to_do) = "$Unlit $sf $file_to_read";
169         &run_something($to_do, $sf, 'unlit');
170     }
171     &slurp_file_for_imports($file_to_read, $sf);
172
173     # Delete the temporary.
174     if ( $sf =~ /\.l(hs|y)$/ ) {
175         unlink "$Tmp_prefix.hs";
176     }
177 }
178
179
180 #
181 # Create backup version of output file.
182
183 if ( ! -f $Makefile ) {
184    # truncate() may not be implemented, so we
185    # play it safe here.
186    local(*TRUNC);
187    open(TRUNC,"> $Makefile.bak") && close(TRUNC);
188 } else {
189    rename($Makefile,"$Makefile.bak");
190 }
191 # now copy Makefile.bak into Makefile, rm'ing old dependencies
192 # and adding the new
193 open(OMKF,"< $Makefile.bak") || die "$Pgm: can't open $Makefile.bak: $!\n";
194 open(NMKF,"> $Makefile") || die "$Pgm: can't open $Makefile: $!\n";
195 select(NMKF);
196 $_ = <OMKF>;
197 while ($_ && $_ ne $Begin_magic_str) { # copy through, 'til Begin_magic_str
198     print $_;
199     $_ = <OMKF>;
200 }
201 while ($_ && $_ ne $End_magic_str) { # delete 'til End_magic_str
202     $_ = <OMKF>;
203 }
204 # insert dependencies
205 print "$Begin_magic_str", @Depend_lines, $End_magic_str || die "Failed to write out dependencies ($!)";
206
207 while (<OMKF>) { # copy the rest through
208     print $_ || die "Failed to write out dependencies ($!)";
209 }
210 close(NMKF) || exit(1);
211 close(OMKF) || exit(1);
212 exit 0;
213
214 sub mangle_command_line_args {
215     local(@Args) = @_;
216         
217     while($_ = $Args[0]) {
218         shift(@Args);
219
220         if ( /^--$/ ) {
221             $Dashdashes_seen++;
222
223         } elsif ( /^-D(.*)/ ) { # recognized wherever they occur
224             push(@Defines, $_);
225         } elsif ( /^-cpp$/ ) { # recognized wherever they occur
226             $Cpp_flag_set =1; 
227         } elsif ( /^-i$/ ) {
228             $Import_dirs = ''; # import path cleared!
229         } elsif ( /^-i(.*)/ ) {
230             $Import_dirs = "$1:$Import_dirs";
231         } elsif ( /^-I/ ) {
232             $Include_dirs .= " $_";
233         } elsif ( /^-syslib$/ ) { # deprecated, use -syslib
234             push(@Syslibs, &grab_arg_arg(*Args,$_,''));
235         } elsif ( /^-package$/ ) {
236             push(@Syslibs, &grab_arg_arg(*Args,$_,''));
237         } elsif ( /^-fglasgow-exts$/ ) {
238             push(@Syslibs, 'lang');
239         } elsif ( /^-concurrent$/ ) {
240             push(@Syslibs, 'concurrent');
241         } elsif (/^-#include(.*)/) {
242             &grab_arg_arg(*Args,$_,'');
243         } elsif ($Dashdashes_seen != 1) { # not between -- ... --
244             if ( /^-v$/ ) {
245                 $Verbose++;
246             } elsif ( /^-w$/ ) {
247                 $Warnings     = 0;
248             } elsif ( /^-f(.*)/ && !$ProcessingOptions ) {
249                 $Makefile       = &grab_arg_arg(*Args,'-f',$1);
250             } elsif ( /^-o(.*)/ ) {
251                 local($suff)    = &grab_arg_arg(*Args,'-o',$1);
252                 # Weed out existing entry .. there must be a better way of doing this
253                 # with arrays (non-assoc) ! -- sof
254                 @Obj_suffix     = grep(!/$suff/,@Obj_suffix);
255                 push(@Obj_suffix, $suff);
256             #
257             # --exclude-module=mod => it's stable, trust me!
258             
259             } elsif ( /^-(x|-exclude-module=)(.*)/ ) { 
260                 local($thing) = &grab_arg_arg(*Args,$1,$2);
261                 $IgnoreMe{$thing} = 'Y';
262             } elsif ( /^-(X|-exclude-directory=)(.*)/ ) { 
263                 foreach $d ( split(/:/,&grab_arg_arg(*Args,$1, $2)) ) {
264                    push(@Ignore_dirs,"$d");
265                 }
266             } elsif ( /^--include-module=(.*)/ ) { 
267                 local($thing) = &grab_arg_arg(*Args,$1,$2);
268                 $IgnoreMe{$thing} = 'n';
269             } elsif ( /^--include-prelude$/ ) { 
270                 $Include_prelude = 1;
271             } elsif ( /^-s(.*)/ ) {
272                 local($suff)    =  &grab_arg_arg(*Args,'-s',$1);
273                 push(@File_suffix, $suff);
274             } elsif ( /^-/ ) {
275                 if (!$ProcessingOptions) {
276                    print STDERR "$Pgm: unknown option ignored: $_\n";
277                    $Status++;
278                 }
279             } else {
280                 push(@Src_files, $_);
281             }
282         }
283         # Removed support for picking up plausible source file 
284         # names inside the ghc options chunk of the command
285         # line. It failed to deal with `option-value' stuff present
286         # on some invocations of ghc (e.g., "-ohi foo.baz").
287         #  -- sof 12/97
288         #
289         # } elsif ($Dashdashes_seen == 1) {
290         #     push(@Src_files, $_) if ! /^-/;
291         # }
292     }
293     @File_suffix = sort (@File_suffix);
294 }
295
296 sub grab_arg_arg {
297     local(*Args, $option, $rest_of_arg) = @_;
298     
299     if ($rest_of_arg) {
300         return($rest_of_arg);
301     } elsif ($#Args >= 0) {
302         local($temp) = $Args[0]; shift(@Args); 
303         return($temp);
304     } else {
305         print STDERR "$Pgm: no argument following $option option\n";
306         $Status++;
307     }
308 }
309
310 sub gather_import_dirs {
311
312         # set up array of ignored modules
313         local(@dirs) = ($INSTALLING) ? 
314                        ("$InstLibDirGhc/imports/std")
315                      : ("$TopPwd/ghc/lib/std");
316
317         if (!$Include_prelude) {
318            push(@Ignore_dirs, @dirs);
319         } else {
320            push(@Import_dirs, @dirs);
321         }
322
323         foreach $lib ( @Syslibs ) {
324            local($dir);
325
326            # Yuck ^ 2
327            if ( $lib eq 'lang' && ! $INSTALLING ) {
328               push(@Import_dirs, "${TopPwd}/hslibs/${lib}/monads");
329            }
330            if ( $lib eq 'text' && ! $INSTALLING ) {
331               push(@Import_dirs, "${TopPwd}/hslibs/${lib}/html");
332               push(@Import_dirs, "${TopPwd}/hslibs/${lib}/haxml/lib");
333            }
334            if ( $lib eq 'data' && ! $INSTALLING ) {
335               push(@Import_dirs, "${TopPwd}/hslibs/${lib}/edison");
336               push(@Import_dirs, "${TopPwd}/hslibs/${lib}/edison/Assoc");
337               push(@Import_dirs, "${TopPwd}/hslibs/${lib}/edison/Coll");
338               push(@Import_dirs, "${TopPwd}/hslibs/${lib}/edison/Seq");
339            }
340            if ( $lib eq 'util' && ! $INSTALLING ) {
341               push(@Import_dirs, "${TopPwd}/hslibs/${lib}/check");
342            }
343
344            # Yuck ^ 3
345            if ( $lib eq 'win32' && ! $INSTALLING ) {
346               $dir = "${TopPwd}/hslibs/${lib}/src";
347            } elsif ( $lib eq 'com' && ! $INSTALLING ) {
348               $dir = "${TopPwd}/hdirect/lib";
349            } else {
350               $dir = ($INSTALLING) ? "${InstLibDirGhc}/imports/${lib}" 
351                                    : "${TopPwd}/hslibs/${lib}";
352            }
353            if (!$Include_prelude) {
354               push(@Ignore_dirs,$dir);
355            } else {
356               push(@Import_dirs, $dir);
357            }
358         }
359 }
360
361
362
363 sub preprocess_import_dirs {
364     # it's probably cheaper to find out what's in all
365     # the @Import_dirs before we start processing.
366     local($d, $thing);
367     local($_);
368
369     foreach $d ( @Import_dirs ) {
370         # Check to see if it can be ignored
371         #print STDERR "Ignore imports from $d\n" if $Verbose && $Ignore_dirs{$d};
372         #next if $Ignore_dirs{$d};
373
374         opendir(DIR, $d) || die "$Pgm: can't open directory $d\n";
375
376         for ($_ = readdir(DIR); $_; $_ = readdir(DIR)) {
377             next unless /(.*)\.hi$/;
378             $thing = $1;
379             # 
380             # dLL_ifs.hi is used to indicate whether a directory
381             # contains interface files whose object codes reside in a Win32 DLL.
382             # 
383             if ($ModuleIn{$thing} && $ModuleIn{$thing} ne $d && $thing ne 'dLL_ifs') {
384                 print STDERR "$Pgm: warning: $thing.hi appears in both $ModuleIn{$thing} and $d!\n" if ($Warnings);
385             } else {
386                 $ModuleIn{$thing} = $d;
387             }
388         }
389         closedir(DIR); # No, don't check the error code
390     }
391
392     # Add all the modules
393     # to the IgnoreMe array before we start scanning for imports.
394     foreach $d (@Ignore_dirs) {
395
396         opendir(DIR, $d) || die "$Pgm: can't open directory $d\n";
397
398         for ($_ = readdir(DIR); $_; $_ = readdir(DIR)) {
399             next unless /(.*)\.(hi|l?hs|l?y)$/;
400             #don't tag it twice or overwrite it with a diff. value
401             next if $IgnoreMe{$1};
402             print STDERR "Module $d will be ignored\n" if $Verbose;
403
404             $IgnoreMe{$1} = 'y';
405         }
406         closedir(DIR); # No, don't check the error code
407     }
408 }
409
410 sub slurp_file_for_imports {
411     local($file_to_read, $orig_src_file) = @_;
412     local($follow_file,$read_from_file);
413     local($cleanup)=0;
414
415     local(@Old_Syslibs, $options);
416     local(@Old_Ignore_dirs);
417     local($found_options)=0;
418
419     local($last_seen_dir) = $orig_src_file;
420     $last_seen_dir =~ s/\/[^\/]+$//; # strip to dir name
421     $last_seen_dir = '.' if ($last_seen_dir eq $orig_src_file);
422
423     local($mod_name) = $orig_src_file;
424
425     $mod_name =~ s/.*\/([^\/]+)$/$1/g;
426     $mod_name =~ s/^([^.]+)\.(.*)$/$1/;
427
428     print STDERR "Warning: processing module $mod_name, which I was supposed to ignore.\n"
429         if ( $IgnoreMe{$mod_name} eq 'Y' && $Warnings );
430
431     &process_dependency('import',0,'Prelude') if ($Include_prelude);
432
433     #
434     # Check for {-# OPTIONS in the file-to-be-processed. If any syslib related options
435     # *only* are found, add them to the module search list (and take them off once
436     # we're through with this module.)
437     #
438
439     $options = &check_for_source_options($file_to_read);
440     if ($options ne "") {
441       @Old_Syslibs=@Syslibs;
442       $ProcessingOptions=1;
443       &mangle_command_line_args(split(/\s+/,$options));
444       if (@Old_Syslibs ne @Syslibs) {
445         $found_options=1;
446         @Old_Ignore_dirs = @Ignore_dirs;
447         &gather_import_dirs();
448         &preprocess_import_dirs();
449       }
450     }
451     
452     # we mangle #include's so they will also leave something
453     # behind to indicate the dependency on _them_
454     
455     local ($open_cmd);
456     if ($Cpp_flag_set) {
457        &run_something("${SED} -e '/^# *include/{p;s/^# *include/!include/;}' $file_to_read | $Cpp $Include_dirs -I$last_seen_dir @Defines - 2>&1 > ${file_to_read}.i", $orig_src_file, 'cpp');
458        $read_from_file="${file_to_read}.i";
459        $cleanup=1;
460     } else {
461        $read_from_file="${file_to_read}";
462        $open_cmd = $file_to_read;
463     }
464     print STDERR "$open_cmd\n" if $Verbose;
465
466     open(SRCFILE, $read_from_file) || die "$Pgm: Can't open $file_to_read: $!\n";
467
468     while (<SRCFILE>) {
469         #
470         # import {-# SOURCE #-} Foo (bar) generates dependencies on the source file only,
471         # the compiler will deal with the absence of Foo.hi by consulting the
472         # source for Foo directly. (for dealing with recursive modules).
473         #
474         next unless (/^>?\s*(import)(\s+{-#\s*SOURCE\s*#-})?(\s+qualified)?\s+([A-Z][A-Za-z0-9_']*)/ || /^!(include)(\s+)"(\S+)"/);
475         $todo    = $1;
476         $source  = ( $2 ne '') ? 1 : 0;
477         $modname = $4;
478
479         next if $modname eq '';
480         &process_dependency($todo,$source,$modname);
481     }
482
483     if ($found_options) {
484       @Ignore_dirs = @Old_Ignore_dirs;
485     }
486
487     close(SRCFILE) || exit(1);
488     # remove temporary file, if any.
489     if ($cleanup) {
490            unlink("$read_from_file");
491     }
492 }
493
494 #
495 # Handle
496 sub process_dependency {
497   local($todo,$source,$modname) = @_;
498
499   if ($todo eq 'import') {
500     if ( $IgnoreMe{$modname} eq 'Y' ) {
501          # user specifically asked for this module
502          # to be ignored.
503          $follow_file = '__ignore__';
504     } elsif ( $ModuleIn{$modname} ) {
505         $follow_file = "$ModuleIn{$modname}/$modname.hi";
506     } else { # hard way
507         $follow_file =
508           &find_in_Import_dirs($orig_src_file, $modname, $last_seen_dir, $source );
509     }
510   } else {
511         $follow_file
512           = &find_in_Include_dirs($orig_src_file, $modname, $last_seen_dir);
513   }
514
515   if (! $follow_file) { # it didnae find anything
516       die "$orig_src_file: Couldn't handle: $_\n";
517
518   } else { # it found something
519     if ($follow_file ne '__ignore__') {
520         local($int_file) = $follow_file;
521
522         if ( $int_file !~ /\.(l?hs|hi|l?y)$/ ) {
523             local($str) = "";
524             foreach $obj  (@Obj_suffix) {
525                 $str .= "$bf.$obj ";
526                 foreach $suff (@File_suffix) {
527                    $str .= "$bf.${suff}_$obj ";
528                 }
529             }
530             push(@Depend_lines, "$str: $int_file\n");
531         } else {
532             $int_file =~ s/\.l?hs$//;
533             $int_file =~ s/\.l?y$//;
534             $int_file =~ s/\.hi$//;
535             local($source_dep);
536
537             if ( $source ) {
538                 # if a version specific .hi-boot file exist, use it.
539                 if ( -f "$int_file.hi-boot-${HiBootVersion}" ) {
540                    $source_dep = "$int_file.hi-boot-${HiBootVersion}";
541                 } else {
542                    $source_dep = "$int_file.hi-boot";
543                 }
544             } else {
545                 local($str)="";
546                 foreach $obj (@Obj_suffix) {
547                    $str .= "$bf.$obj ";
548                 }
549                 push(@Depend_lines, "$str: $int_file.hi\n");
550             }
551
552             if ( ! $source ) {
553                foreach $suff  (@File_suffix) {
554                   local($str) = "";
555                   foreach $obj (@Obj_suffix) {
556                     $str .= "$bf.${suff}_$obj ";
557                   }
558                   push(@Depend_lines, "$str: $int_file.${suff}_hi\n");
559                }
560             } else {
561                local($str) = "";
562                foreach $obj  (@Obj_suffix) {
563                    $str .= "$bf.$obj ";
564                    foreach $suff (@File_suffix) {
565                      $str .= "$bf.${suff}_$obj ";
566                    }
567                }
568                push(@Depend_lines, "$str: $source_dep\n");
569             }
570         }
571      }
572    }
573 }
574
575 # when we see something, we cache that fact ('y').
576 # also, when we get a miss, we cache that (so we don't try later); ('n')
577 %FileExists = ();
578
579 sub find_in_Import_dirs {
580     local($orig_src_file, $modname, $last_seen_dir, $source) = @_;
581     local($import_dir);
582     local($do_magical_check) = 0;
583     local($name_to_check);
584
585     # do it the old hard way: hop along Import_dir list
586     foreach $import_dir (@Import_dirs) {
587         # handle . magically
588         if ($import_dir eq '.') {
589             # record that we should do a SPECIAL try for a file in last_seen_dir (LAST)
590             $do_magical_check = 1;
591         }
592
593         $name_to_check = "$import_dir/$modname.hi";
594         if ( $FileExists{$name_to_check} ne 'n' ) { # either 'y' or nothing
595             print STDERR "trying $name_to_check...\n" if $Verbose >= 2; # very verbose
596             return($name_to_check) if $FileExists{$name_to_check} eq 'y';
597             if (-f $name_to_check) {
598                 $FileExists{$name_to_check} = 'y';
599                 return($name_to_check) ;
600             } else {
601                 $FileExists{$name_to_check} = 'n';
602             }
603         }
604
605         for $suff ('hs', 'lhs', 'ly', 'y') {
606             $name_to_check = "$import_dir/$modname.$suff";
607             print STDERR "trying... $name_to_check\n" if $Verbose >= 2; # very verbose
608             return($name_to_check) if -f $name_to_check;
609         }
610
611         if ( $source ) {
612             $name_to_check = "$import_dir/$modname.hi-boot-${HiBootVersion}";
613             print STDERR "trying... $name_to_check\n" if $Verbose >= 2; # very verbose
614             return($name_to_check) if -f $name_to_check;
615
616             $name_to_check = "$import_dir/$modname.hi-boot";
617             print STDERR "trying... $name_to_check\n" if $Verbose >= 2; # very verbose
618             return($name_to_check) if -f $name_to_check;
619         }               
620     }
621     if ($do_magical_check == 1) {
622         $name_to_check = "$last_seen_dir/$modname.hi";
623
624         if ( $FileExists{$name_to_check} ne 'n' ) { # either 'y' or nothing
625             print STDERR "trying $name_to_check...\n" if $Verbose >= 2; # very verbose
626             return($name_to_check) if $FileExists{$name_to_check} eq 'y';
627             if (-f $name_to_check) {
628                 $FileExists{$name_to_check} = 'y';
629                 return($name_to_check) ;
630             } else {
631                 $FileExists{$name_to_check} = 'n';
632             }
633         }
634
635         for $suff ('lhs', 'hs', 'ly', 'y') {
636             $name_to_check = "$last_seen_dir/$modname.$suff";
637             print STDERR "trying... $name_to_check\n" if $Verbose >= 2; # very verbose
638             return($name_to_check) if -f $name_to_check;
639         }
640     }
641
642     # OK, maybe it's referring to something in a system library
643     #foreach $lib ( @Syslibs ) {
644     #   return('__ignore__') if $LibIfaces{"$lib:$modname"};
645     #}
646
647     # Last hope: referring to a Prelude interface
648     return('__ignore__') if ( $IgnoreMe{$modname} eq 'y' );
649
650     die "No file `$modname.hi', `$modname.lhs', `$modname.hs' (reqd from file `$orig_src_file')\namong import directories:\n\t$Import_dirs\n";
651 }
652
653 sub find_in_Include_dirs {
654     local($orig_src_file, $name, $last_seen_dir) = @_;
655     local($include_dir);
656     local($do_magical_check) = 0;
657
658     # no funny name guessing here
659
660     # hop along Include_dir list
661     foreach $include_dir (@Include_dirs) {
662         $include_dir =~ s/^-I//;
663
664         # handle . magically
665         if ($include_dir eq '.') {
666             # record that we should do a SPECIAL try for a file in last_seen_dir (LAST)
667             $do_magical_check = 1;
668         }
669         print STDERR "trying $include_dir/$name...\n" if $Verbose >= 2; # very verbose
670         if (-f "$include_dir/$name") {
671             return("$include_dir/$name");
672         }
673     }
674     if ($do_magical_check == 1) {
675         print STDERR "trying $last_seen_dir/$name...\n" if $Verbose >= 2; # very verbose
676         if (-f "$last_seen_dir/$name") {
677             return("$last_seen_dir/$name");
678         }
679     }
680     die "No file `$name' (reqd from file `$orig_src_file') among include directories: $Include_dirs\n";
681 }
682
683 # out of the driver, actually
684 sub run_something {
685     local($str_to_do, $file_to_read, $tidy_name) = @_;
686
687     print STDERR "\n$tidy_name:\n\t" if $Verbose;
688     print STDERR "$str_to_do\n" if $Verbose;
689
690     local($return_val) = system($str_to_do) >> 8;
691
692     if ($return_val != 0) {
693         local($die_msg) = "$Pgm: Running $tidy_name ( on $file_to_read ) failed";
694         $die_msg .= " program not found: $str_to_do " if $return_val == 255;
695         $die_msg .= " ($!)" if $Verbose && $! != 0;
696         $die_msg .= "\n";
697         print STDERR $die_msg;
698         exit $return_val;
699     }
700 }
701
702 # out of the driver too.
703 sub check_for_source_options {
704     local($file) = @_;
705     local($comment_start,$comment_end);
706
707     # Assume it is a file containing Haskell source
708     $comment_start = "{-#";
709     $comment_end   = "#-}";
710
711     open(FILE,$file) || return ""; # No big loss
712     
713     while (<FILE>) {
714         if ( /^${comment_start} OPTIONS (.*)${comment_end}/ ) {
715            # return the options.
716            local($stuff) = $1;
717            print STDERR "Found OPTIONS $stuff in $file\n" if $Verbose;
718            close(FILE);
719            return $stuff;
720         }
721         elsif ( /^$/ ) { # ignore empty lines
722            ;
723         }
724         elsif ( /^#line.+$/ ) { # ignore comment lines (unused..ToDo: rm )
725            ;
726         }
727         elsif ( /^{-# LINE.+$/ ) { # ignore line pragmas
728            ;
729         }
730         else { # stop looking, something non-empty / not
731                # ${comment_start} OPTIONS .. ${comment_end} encountered.
732             close(FILE);return "";
733         }
734     }
735     close(FILE);
736     return "";
737 }