3 # mms2make.pl - convert Descrip.MMS file to Makefile
4 # Version 2.0 29-Sep-1994
5 # David Denholm <denholm@conmat.phys.soton.ac.uk>
7 # 1.0 06-Aug-1994 Charles Bailey bailey@genetics.upenn.edu
9 # 2.0 29-Sep-1994 David Denholm <denholm@conmat.phys.soton.ac.uk>
10 # - take action based on MMS .if / .else / .endif
11 # any command line options after filenames are set in an assoc array %macros
12 # maintain "@condition as a stack of current conditions
13 # we unshift a 0 or 1 to front of @conditions at an .ifdef
14 # we invert top of stack at a .else
16 # we deselect any other line if $conditions[0] is 0
17 # I'm being very lazy - push a 1 at start, then dont need to check for
18 # an empty @conditions [assume nesting in descrip.mms is correct]
19 # 2.1 26-Feb-1995 Charles Bailey bailey@genetics.upenn.edu
20 # - handle MMS macros generated by MakeMaker
22 if ($#ARGV > -1 && $ARGV[0] =~ /^[\-\/]trim/i) {
26 $infile = $#ARGV > -1 ? shift(@ARGV) : "Descrip.MMS";
27 $outfile = $#ARGV > -1 ? shift(@ARGV) : "Makefile.";
29 # set any other args in %macros - set VAXC by default
30 foreach (@ARGV) { $macros{"\U$_"}=1 }
33 $macros{"DECC"} = 1 if $macros{"__AXP__"};
35 # set conditions as if there was a .if 1 around whole file
36 # [lazy - saves having to check for empty array - just test [0]==1]
39 open(INFIL,$infile) || die "Can't open $infile: $!\n";
40 open(OUTFIL,">$outfile") || die "Can't open $outfile: $!\n";
42 print OUTFIL "#> This file produced from $infile by $0\n";
43 print OUTFIL "#> Lines beginning with \"#>\" were commented out during the\n";
44 print OUTFIL "#> conversion process. For more information, see $0\n";
48 s/$infile/$outfile/eoi;
50 if (!/^\#\:/) {print OUTFIL;}
54 # look for ".ifdef macro" and push 1 or 0 to head of @conditions
55 # push 0 if we are in false branch of another if
56 if (/^\.ifdef\s*(.+)/i)
58 print OUTFIL "#> ",$_ unless $do_trim;
59 unshift @conditions, ($macros{"\U$1"} ? $conditions[0] : 0);
63 # reverse $conditions[0] for .else provided surrounding if is active
66 print OUTFIL "#> ",$_ unless $do_trim;
67 $conditions[0] = $conditions[1] && !$conditions[0];
71 # pop top condition for .endif
74 print OUTFIL "#> ",$_ unless $do_trim;
79 next if ($do_trim && !$conditions[0]);
81 # spot new rule and pick up first source file, since some versions of
82 # Make don't provide a macro for this
84 if (/:\s+([^\s,]+)/) { $firstsrc = $1 }
85 else { $firstsrc = "\$<" }
88 #convert macros we expect to see in MakeMaker-generated Descrip.MMSs
89 s#/Descrip=\s*\n#-f \nMMS = make\n#;
91 s#MACROEND = \)#MACROEND = #;
92 if (m#\$\(USEMACROS\)(.*)(\$\(MACROEND\))?#) {
94 my($macros,$end) = ($1,$2);
95 $macros =~ s/,/ /g; # We're hosed if there're commas within a macro -
96 # someday, check for "" and skip contents
98 print OUTFIL $conditions[0] ? "#> " : "",$_;
100 m#(.*)(\$\(MACROEND\))?#;
105 s/^\.first/\.first:/i;
106 s/^\.suffixes/\.suffixes:/i;
107 s/\@\[\.vms\]/\$\$\@\[\.vms\]/;
109 s/\$\(mms\$source\)/$firstsrc/i;
110 s/\$\(mms\$target\)/\$\@/i;
111 s/\$\(mms\$target_name\)\$\(O\)/\$\@/i;
112 s/\$\(mms\$target_name\)/\$\*/i;
113 s/sys\$([^\(])/sys\$\$$1/gi;
114 print OUTFIL "#> " unless $conditions[0];