chiark / gitweb /
4aa7f20fe3f021efe9cf9c6a88a203c404c97464
[sgt-puzzles.git] / mkfiles.pl
1 #!/usr/bin/env perl
2 #
3 # Cross-platform Makefile generator.
4 #
5 # Reads the file `Recipe' to determine the list of generated
6 # executables and their component objects. Then reads the source
7 # files to compute #include dependencies. Finally, writes out the
8 # various target Makefiles.
9
10 # PuTTY specifics which could still do with removing:
11 #  - Mac makefile is not portabilised at all. Include directories
12 #    are hardwired, and also the libraries are fixed. This is
13 #    mainly because I was too scared to go anywhere near it.
14 #  - sbcsgen.pl is still run at startup.
15
16 # Other things undone:
17 #  - special-define objects (foo.o[PREPROCSYMBOL]) are not
18 #    supported in the mac or vcproj makefiles.
19
20 use IO::Handle;
21 use Cwd;
22
23 @filestack = ();
24 $in = new IO::Handle;
25 open $in, "Recipe" or do {
26     # We want to deal correctly with being run from one of the
27     # subdirs in the source tree. So if we can't find Recipe here,
28     # try one level up.
29     chdir "..";
30     open $in, "Recipe" or die "unable to open Recipe file\n";
31 };
32 push @filestack, $in;
33
34 # HACK: One of the source files in `charset' is auto-generated by
35 # sbcsgen.pl. We need to generate that _now_, before attempting
36 # dependency analysis.
37 eval 'chdir "charset"; require "sbcsgen.pl"; chdir ".."';
38
39 @srcdirs = ("./");
40
41 $divert = undef; # ref to scalar in which text is currently being put
42 $help = ""; # list of newline-free lines of help text
43 $project_name = "project"; # this is a good enough default
44 %makefiles = (); # maps makefile types to output makefile pathnames
45 %makefile_extra = (); # maps makefile types to extra Makefile text
46 %programs = (); # maps prog name + type letter to listref of objects/resources
47 %groups = (); # maps group name to listref of objects/resources
48
49 @allobjs = (); # all object file names
50
51 readinput: while (1) {
52   while (not defined ($_ = <$in>)) {
53     close $in;
54     last readinput if 0 == scalar @filestack;
55     $in = pop @filestack;
56   }
57
58   chomp;
59   split;
60
61   # Skip comments (unless the comments belong, for example because
62   # they're part of a diversion).
63   next if /^\s*#/ and !defined $divert;
64
65   if ($_[0] eq "!begin" and $_[1] eq "help") { $divert = \$help; next; }
66   if ($_[0] eq "!end") { $divert = undef; next; }
67   if ($_[0] eq "!name") { $project_name = $_[1]; next; }
68   if ($_[0] eq "!srcdir") { push @srcdirs, $_[1]; next; }
69   if ($_[0] eq "!makefile" and &mfval($_[1])) { $makefiles{$_[1]}=$_[2]; next;}
70   if ($_[0] eq "!specialobj" and &mfval($_[1])) { $specialobj{$_[1]}->{$_[2]} = 1; next;}
71   if ($_[0] eq "!begin") {
72       if ($_[1] =~ /^>(.*)/) {
73           $divert = \$auxfiles{$1};
74       } elsif (&mfval($_[1])) {
75           $divert = \$makefile_extra{$_[1]};
76       }
77       next;
78   }
79   if ($_[0] eq "!include") {
80       @newfiles = ();
81       for ($i = 1; $i <= $#_; $i++) {
82           push @newfiles, (sort glob $_[$i]);
83       }
84       for ($i = $#newfiles; $i >= 0; $i--) {
85           $file = $newfiles[$i];
86           $f = new IO::Handle;
87           open $f, "<$file" or die "unable to open include file '$file'\n";
88           push @filestack, $f;
89       }
90       $in = $filestack[$#filestack];
91       next;
92   }
93   # If we're gathering help text, keep doing so.
94   if (defined $divert) { ${$divert} .= "$_\n"; next; }
95   # Ignore blank lines.
96   next if scalar @_ == 0;
97
98   # Now we have an ordinary line. See if it's an = line, a : line
99   # or a + line.
100   @objs = @_;
101
102   if ($_[0] eq "+") {
103     $listref = $lastlistref;
104     $prog = undef;
105     die "$.: unexpected + line\n" if !defined $lastlistref;
106   } elsif ($_[1] eq "=") {
107     $groups{$_[0]} = [];
108     $listref = $groups{$_[0]};
109     $prog = undef;
110     shift @objs; # eat the group name
111   } elsif ($_[1] eq "+=") {
112     $groups{$_[0]} = [] if !defined $groups{$_[0]};
113     $listref = $groups{$_[0]};
114     $prog = undef;
115     shift @objs; # eat the group name
116   } elsif ($_[1] eq ":") {
117     $listref = [];
118     $prog = $_[0];
119     shift @objs; # eat the program name
120   } else {
121     die "$.: unrecognised line type: '$_'\n";
122   }
123   shift @objs; # eat the +, the = or the :
124
125   while (scalar @objs > 0) {
126     $i = shift @objs;
127     if ($groups{$i}) {
128       foreach $j (@{$groups{$i}}) { unshift @objs, $j; }
129     } elsif (($i eq "[G]" or $i eq "[C]" or $i eq "[M]" or
130               $i eq "[X]" or $i eq "[U]" or $i eq "[MX]") and defined $prog) {
131       $type = substr($i,1,(length $i)-2);
132     } else {
133       if ($i =~ /\?$/) {
134         # Object files with a trailing question mark are optional:
135         # the build can proceed fine without them, so we only use
136         # them if their primary source files are present.
137         $i =~ s/\?$//;
138         $i = undef unless defined &finddep($i);
139       } elsif ($i =~ /\|/) {
140         # Object file descriptions containing a vertical bar are
141         # lists of choices: we use the _first_ one whose primary
142         # source file is present.
143         @options = split /\|/, $i;
144         $j = undef;
145         foreach $k (@options) {
146           $j=$k, last if defined &finddep($k);
147         }
148         die "no alternative found for $i\n" unless defined $j;
149         $i = $j;
150       }
151       if (defined $i) {
152         push @$listref, $i;
153         push @allobjs, $i;
154       }
155     }
156   }
157   if ($prog and $type) {
158     die "multiple program entries for $prog [$type]\n"
159         if defined $programs{$prog . "," . $type};
160     $programs{$prog . "," . $type} = $listref;
161   }
162   $lastlistref = $listref;
163 }
164
165 foreach $aux (sort keys %auxfiles) {
166     open AUX, ">$aux";
167     print AUX $auxfiles{$aux};
168     close AUX;
169 }
170
171 # Find object file names with predefines (in square brackets after
172 # the module name), and decide on actual object names for them.
173 foreach $i (@allobjs) {
174   if ($i !~ /\[/) {
175     $objname{$i} = $i;
176     $srcname{$i} = $i;
177     $usedobjname{$i} = 1;
178   }
179 }
180 foreach $i (@allobjs) {
181   if ($i =~ /^(.*)\[([^\]]*)/) {
182     $defs{$i} = [ split ",",$2 ];
183     $srcname{$i} = $s = $1;
184     $index = 1;
185     while (1) {
186       $maxlen = length $s;
187       $maxlen = 8 if $maxlen < 8;
188       $chop = $maxlen - length $index;
189       $chop = length $s if $chop > length $s;
190       $chop = 0 if $chop < 0;
191       $name = substr($s, 0, $chop) . $index;
192       $index++, next if $usedobjname{$name};
193       $objname{$i} = $name;
194       $usedobjname{$name} = 1;
195       last;
196     }
197   }
198 }
199
200 # Now retrieve the complete list of objects and resource files, and
201 # construct dependency data for them. While we're here, expand the
202 # object list for each program, and complain if its type isn't set.
203 @prognames = sort keys %programs;
204 %depends = ();
205 @scanlist = ();
206 foreach $i (@prognames) {
207   ($prog, $type) = split ",", $i;
208   # Strip duplicate object names.
209   $prev = undef;
210   @list = grep { $status = ($prev ne $_); $prev=$_; $status }
211           sort @{$programs{$i}};
212   $programs{$i} = [@list];
213   foreach $jj (@list) {
214     $j = $srcname{$jj};
215     $file = &finddep($j);
216     if (defined $file) {
217       $depends{$jj} = [$file];
218       push @scanlist, $file;
219     }
220   }
221 }
222
223 # Scan each file on @scanlist and find further inclusions.
224 # Inclusions are given by lines of the form `#include "otherfile"'
225 # (system headers are automatically ignored by this because they'll
226 # be given in angle brackets). Files included by this method are
227 # added back on to @scanlist to be scanned in turn (if not already
228 # done).
229 #
230 # Resource scripts (.rc) can also include a file by means of a line
231 # ending `ICON "filename"'. Files included by this method are not
232 # added to @scanlist because they can never include further files.
233 #
234 # In this pass we write out a hash %further which maps a source
235 # file name into a listref containing further source file names.
236
237 %further = ();
238 while (scalar @scanlist > 0) {
239   $file = shift @scanlist;
240   next if defined $further{$file}; # skip if we've already done it
241   $resource = ($file =~ /\.rc$/ ? 1 : 0);
242   $further{$file} = [];
243   $dirfile = &findfile($file);
244   open IN, "$dirfile" or die "unable to open source file $file\n";
245   while (<IN>) {
246     chomp;
247     /^\s*#include\s+\"([^\"]+)\"/ and do {
248       push @{$further{$file}}, $1;
249       push @scanlist, $1;
250       next;
251     };
252     /ICON\s+\"([^\"]+)\"\s*$/ and do {
253       push @{$further{$file}}, $1;
254       next;
255     }
256   }
257   close IN;
258 }
259
260 # Now we're ready to generate the final dependencies section. For
261 # each key in %depends, we must expand the dependencies list by
262 # iteratively adding entries from %further.
263 foreach $i (keys %depends) {
264   %dep = ();
265   @scanlist = @{$depends{$i}};
266   foreach $i (@scanlist) { $dep{$i} = 1; }
267   while (scalar @scanlist > 0) {
268     $file = shift @scanlist;
269     foreach $j (@{$further{$file}}) {
270       if ($dep{$j} != 1) {
271         $dep{$j} = 1;
272         push @{$depends{$i}}, $j;
273         push @scanlist, $j;
274       }
275     }
276   }
277 #  printf "%s: %s\n", $i, join ' ',@{$depends{$i}};
278 }
279
280 # Validation of input.
281
282 sub mfval($) {
283     my ($type) = @_;
284     # Returns true if the argument is a known makefile type. Otherwise,
285     # prints a warning and returns false;
286     if (grep { $type eq $_ }
287         ("vc","vcproj","cygwin","borland","lcc","gtk","mpw","osx")) {
288             return 1;
289         }
290     warn "$.:unknown makefile type '$type'\n";
291     return 0;
292 }
293
294 # Utility routines while writing out the Makefiles.
295
296 sub dirpfx {
297     my ($path) = shift @_;
298     my ($sep) = shift @_;
299     my $ret = "", $i;
300     while (($i = index $path, $sep) >= 0) {
301         $path = substr $path, ($i + length $sep);
302         $ret .= "..$sep";
303     }
304     return $ret;
305 }
306
307 sub findfile {
308   my ($name) = @_;
309   my $dir;
310   my $i;
311   my $outdir = undef;
312   unless (defined $findfilecache{$name}) {
313     $i = 0;
314     foreach $dir (@srcdirs) {
315       $outdir = $dir, $i++ if -f "$dir$name";
316     }
317     die "multiple instances of source file $name\n" if $i > 1;
318     $findfilecache{$name} = (defined $outdir ? $outdir . $name : undef);
319   }
320   return $findfilecache{$name};
321 }
322
323 sub finddep {
324   my $j = shift @_;
325   my $file;
326   # Find the first dependency of an object.
327
328   # Dependencies for "x" start with "x.c" or "x.m" (depending on
329   # which one exists).
330   # Dependencies for "x.res" start with "x.rc".
331   # Dependencies for "x.rsrc" start with "x.r".
332   # Both types of file are pushed on the list of files to scan.
333   # Libraries (.lib) don't have dependencies at all.
334   if ($j =~ /^(.*)\.res$/) {
335     $file = "$1.rc";
336   } elsif ($j =~ /^(.*)\.rsrc$/) {
337     $file = "$1.r";
338   } elsif ($j !~ /\./) {
339     $file = "$j.c";
340     $file = "$j.m" unless &findfile($file);
341   } else {
342     # For everything else, we assume it's its own dependency.
343     $file = $j;
344   }
345   $file = undef unless &findfile($file);
346   return $file;
347 }
348
349 sub objects {
350   my ($prog, $otmpl, $rtmpl, $ltmpl, $prefix, $dirsep) = @_;
351   my @ret;
352   my ($i, $x, $y);
353   @ret = ();
354   foreach $ii (@{$programs{$prog}}) {
355     $i = $objname{$ii};
356     $x = "";
357     if ($i =~ /^(.*)\.(res|rsrc)/) {
358       $y = $1;
359       ($x = $rtmpl) =~ s/X/$y/;
360     } elsif ($i =~ /^(.*)\.lib/) {
361       $y = $1;
362       ($x = $ltmpl) =~ s/X/$y/;
363     } elsif ($i !~ /\./) {
364       ($x = $otmpl) =~ s/X/$i/;
365     }
366     push @ret, $x if $x ne "";
367   }
368   return join " ", @ret;
369 }
370
371 sub special {
372   my ($prog, $suffix) = @_;
373   my @ret;
374   my ($i, $x, $y);
375   @ret = ();
376   foreach $ii (@{$programs{$prog}}) {
377     $i = $objname{$ii};
378     if (substr($i, (length $i) - (length $suffix)) eq $suffix) {
379       push @ret, $i;
380     }
381   }
382   return join " ", @ret;
383 }
384
385 sub splitline {
386   my ($line, $width, $splitchar) = @_;
387   my ($result, $len);
388   $len = (defined $width ? $width : 76);
389   $splitchar = (defined $splitchar ? $splitchar : '\\');
390   while (length $line > $len) {
391     $line =~ /^(.{0,$len})\s(.*)$/ or $line =~ /^(.{$len,}?\s(.*)$/;
392     $result .= $1;
393     $result .= " ${splitchar}\n\t\t" if $2 ne '';
394     $line = $2;
395     $len = 60;
396   }
397   return $result . $line;
398 }
399
400 sub deps {
401   my ($otmpl, $rtmpl, $prefix, $dirsep, $depchar, $splitchar) = @_;
402   my ($i, $x, $y);
403   my @deps, @ret;
404   @ret = ();
405   $depchar ||= ':';
406   foreach $ii (sort keys %depends) {
407     $i = $objname{$ii};
408     next if $specialobj{$mftyp}->{$i};
409     if ($i =~ /^(.*)\.(res|rsrc)/) {
410       next if !defined $rtmpl;
411       $y = $1;
412       ($x = $rtmpl) =~ s/X/$y/;
413     } else {
414       ($x = $otmpl) =~ s/X/$i/;
415     }
416     @deps = @{$depends{$ii}};
417     @deps = map {
418       $_ = &findfile($_);
419       s/\//$dirsep/g;
420       $_ = $prefix . $_;
421     } @deps;
422     push @ret, {obj => $x, deps => [@deps], defs => $defs{$ii}};
423   }
424   return @ret;
425 }
426
427 sub prognames {
428   my ($types) = @_;
429   my ($n, $prog, $type);
430   my @ret;
431   @ret = ();
432   foreach $n (@prognames) {
433     ($prog, $type) = split ",", $n;
434     push @ret, $n if index(":$types:", ":$type:") >= 0;
435   }
436   return @ret;
437 }
438
439 sub progrealnames {
440   my ($types) = @_;
441   my ($n, $prog, $type);
442   my @ret;
443   @ret = ();
444   foreach $n (@prognames) {
445     ($prog, $type) = split ",", $n;
446     push @ret, $prog if index(":$types:", ":$type:") >= 0;
447   }
448   return @ret;
449 }
450
451 sub manpages {
452   my ($types,$suffix) = @_;
453
454   # assume that all UNIX programs have a man page
455   if($suffix eq "1" && $types =~ /:X:/) {
456     return map("$_.1", &progrealnames($types));
457   }
458   return ();
459 }
460
461 # Now we're ready to output the actual Makefiles.
462
463 if (defined $makefiles{'cygwin'}) {
464     $mftyp = 'cygwin';
465     $dirpfx = &dirpfx($makefiles{'cygwin'}, "/");
466
467     ##-- CygWin makefile
468     open OUT, ">$makefiles{'cygwin'}"; select OUT;
469     print
470     "# Makefile for $project_name under cygwin.\n".
471     "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
472     "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
473     # gcc command line option is -D not /D
474     ($_ = $help) =~ s/=\/D/=-D/gs;
475     print $_;
476     print
477     "\n".
478     "# You can define this path to point at your tools if you need to\n".
479     "# TOOLPATH = c:\\cygwin\\bin\\ # or similar, if you're running Windows\n".
480     "# TOOLPATH = /pkg/mingw32msvc/i386-mingw32msvc/bin/\n".
481     "CC = \$(TOOLPATH)gcc\n".
482     "RC = \$(TOOLPATH)windres\n".
483     "# Uncomment the following two lines to compile under Winelib\n".
484     "# CC = winegcc\n".
485     "# RC = wrc\n".
486     "# You may also need to tell windres where to find include files:\n".
487     "# RCINC = --include-dir c:\\cygwin\\include\\\n".
488     "\n".
489     &splitline("CFLAGS = -mno-cygwin -Wall -O2 -D_WINDOWS -DDEBUG -DWIN32S_COMPAT".
490       " -D_NO_OLDNAMES -DNO_MULTIMON " .
491                (join " ", map {"-I$dirpfx$_"} @srcdirs)) .
492                "\n".
493     "LDFLAGS = -mno-cygwin -s\n".
494     &splitline("RCFLAGS = \$(RCINC) --define WIN32=1 --define _WIN32=1".
495       " --define WINVER=0x0400 --define MINGW32_FIX=1 " .
496         (join " ", map {"--include $dirpfx$_"} @srcdirs) )."\n".
497     "\n";
498     print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C"));
499     print "\n\n";
500     foreach $p (&prognames("G:C")) {
501       ($prog, $type) = split ",", $p;
502       $objstr = &objects($p, "X.o", "X.res.o", undef);
503       print &splitline($prog . ".exe: " . $objstr), "\n";
504       my $mw = $type eq "G" ? " -mwindows" : "";
505       $libstr = &objects($p, undef, undef, "-lX");
506       print &splitline("\t\$(CC)" . $mw . " \$(LDFLAGS) -o \$@ " .
507                        "-Wl,-Map,$prog.map " .
508                        $objstr . " $libstr", 69), "\n\n";
509     }
510     foreach $d (&deps("X.o", "X.res.o", $dirpfx, "/")) {
511       print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
512         "\n";
513       if ($d->{obj} =~ /\.res\.o$/) {
514         print "\t\$(RC) \$(FWHACK) \$(RCFL) \$(RCFLAGS) \$< \$\@\n";
515       } else {
516         $deflist = join "", map { " -D$_" } @{$d->{defs}};
517         print "\t\$(CC) \$(COMPAT) \$(FWHACK) \$(CFLAGS)" .
518             " \$(XFLAGS)$deflist -c \$< -o \$\@\n";
519       }
520     }
521     print "\n";
522     print $makefile_extra{'cygwin'};
523     print "\nclean:\n".
524     "\trm -f *.o *.exe *.res.o *.map\n".
525     "\n";
526     select STDOUT; close OUT;
527
528 }
529
530 ##-- Borland makefile
531 if (defined $makefiles{'borland'}) {
532     $mftyp = 'borland';
533     $dirpfx = &dirpfx($makefiles{'borland'}, "\\");
534
535     %stdlibs = (  # Borland provides many Win32 API libraries intrinsically
536       "advapi32" => 1,
537       "comctl32" => 1,
538       "comdlg32" => 1,
539       "gdi32" => 1,
540       "imm32" => 1,
541       "shell32" => 1,
542       "user32" => 1,
543       "winmm" => 1,
544       "winspool" => 1,
545       "wsock32" => 1,
546     );
547     open OUT, ">$makefiles{'borland'}"; select OUT;
548     print
549     "# Makefile for $project_name under Borland C.\n".
550     "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
551     "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
552     # bcc32 command line option is -D not /D
553     ($_ = $help) =~ s/=\/D/=-D/gs;
554     print $_;
555     print
556     "\n".
557     "# If you rename this file to `Makefile', you should change this line,\n".
558     "# so that the .rsp files still depend on the correct makefile.\n".
559     "MAKEFILE = Makefile.bor\n".
560     "\n".
561     "# C compilation flags\n".
562     "CFLAGS = -D_WINDOWS -DWINVER=0x0401\n".
563     "\n".
564     "# Get include directory for resource compiler\n".
565     "!if !\$d(BCB)\n".
566     "BCB = \$(MAKEDIR)\\..\n".
567     "!endif\n".
568     "\n";
569     print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C"));
570     print "\n\n";
571     foreach $p (&prognames("G:C")) {
572       ($prog, $type) = split ",", $p;
573       $objstr = &objects($p, "X.obj", "X.res", undef);
574       print &splitline("$prog.exe: " . $objstr . " $prog.rsp"), "\n";
575       my $ap = ($type eq "G") ? "-aa" : "-ap";
576       print "\tilink32 $ap -Gn -L\$(BCB)\\lib \@$prog.rsp\n\n";
577     }
578     foreach $p (&prognames("G:C")) {
579       ($prog, $type) = split ",", $p;
580       print $prog, ".rsp: \$(MAKEFILE)\n";
581       $objstr = &objects($p, "X.obj", undef, undef);
582       @objlist = split " ", $objstr;
583       @objlines = ("");
584       foreach $i (@objlist) {
585         if (length($objlines[$#objlines] . " $i") > 50) {
586           push @objlines, "";
587         }
588         $objlines[$#objlines] .= " $i";
589       }
590       $c0w = ($type eq "G") ? "c0w32" : "c0x32";
591       print "\techo $c0w + > $prog.rsp\n";
592       for ($i=0; $i<=$#objlines; $i++) {
593         $plus = ($i < $#objlines ? " +" : "");
594         print "\techo$objlines[$i]$plus >> $prog.rsp\n";
595       }
596       print "\techo $prog.exe >> $prog.rsp\n";
597       $objstr = &objects($p, "X.obj", "X.res", undef);
598       @libs = split " ", &objects($p, undef, undef, "X");
599       @libs = grep { !$stdlibs{$_} } @libs;
600       unshift @libs, "cw32", "import32";
601       $libstr = join ' ', @libs;
602       print "\techo nul,$libstr, >> $prog.rsp\n";
603       print "\techo " . &objects($p, undef, "X.res", undef) . " >> $prog.rsp\n";
604       print "\n";
605     }
606     foreach $d (&deps("X.obj", "X.res", $dirpfx, "\\")) {
607       print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
608         "\n";
609       if ($d->{obj} =~ /\.res$/) {
610         print &splitline("\tbrcc32 \$(FWHACK) \$(RCFL) " .
611                          "-i \$(BCB)\\include -r -DNO_WINRESRC_H -DWIN32".
612                          " -D_WIN32 -DWINVER=0x0401 \$*.rc",69)."\n";
613       } else {
614         $deflist = join "", map { " -D$_" } @{$d->{defs}};
615         print &splitline("\tbcc32 -w-aus -w-ccc -w-par -w-pia \$(COMPAT)" .
616                          " \$(FWHACK) \$(CFLAGS) \$(XFLAGS)$deflist ".
617                          (join " ", map {"-I$dirpfx$_"} @srcdirs) .
618                          " /o$d->{obj} /c ".$d->{deps}->[0],69)."\n";
619       }
620     }
621     print "\n";
622     print $makefile_extra{'borland'};
623     print "\nclean:\n".
624     "\t-del *.obj\n".
625     "\t-del *.exe\n".
626     "\t-del *.res\n".
627     "\t-del *.pch\n".
628     "\t-del *.aps\n".
629     "\t-del *.il*\n".
630     "\t-del *.pdb\n".
631     "\t-del *.rsp\n".
632     "\t-del *.tds\n".
633     "\t-del *.\$\$\$\$\$\$\n";
634     select STDOUT; close OUT;
635 }
636
637 if (defined $makefiles{'vc'}) {
638     $mftyp = 'vc';
639     $dirpfx = &dirpfx($makefiles{'vc'}, "\\");
640
641     ##-- Visual C++ makefile
642     open OUT, ">$makefiles{'vc'}"; select OUT;
643     print
644       "# Makefile for $project_name under Visual C.\n".
645       "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
646       "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
647     print $help;
648     print
649       "\n".
650       "# If you rename this file to `Makefile', you should change this line,\n".
651       "# so that the .rsp files still depend on the correct makefile.\n".
652       "MAKEFILE = Makefile.vc\n".
653       "\n".
654       "# C compilation flags\n".
655       "CFLAGS = /nologo /W3 /O1 /D_WINDOWS /D_WIN32_WINDOWS=0x401 /DWINVER=0x401\n".
656       "LFLAGS = /incremental:no /fixed\n".
657       "\n";
658     print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C"));
659     print "\n\n";
660     foreach $p (&prognames("G:C")) {
661         ($prog, $type) = split ",", $p;
662         $objstr = &objects($p, "X.obj", "X.res", undef);
663         print &splitline("$prog.exe: " . $objstr . " $prog.rsp"), "\n";
664         print "\tlink \$(LFLAGS) -out:$prog.exe -map:$prog.map \@$prog.rsp\n\n";
665     }
666     foreach $p (&prognames("G:C")) {
667         ($prog, $type) = split ",", $p;
668         print $prog, ".rsp: \$(MAKEFILE)\n";
669         $objstr = &objects($p, "X.obj", "X.res", "X.lib");
670         @objlist = split " ", $objstr;
671         @objlines = ("");
672         foreach $i (@objlist) {
673             if (length($objlines[$#objlines] . " $i") > 50) {
674                 push @objlines, "";
675             }
676             $objlines[$#objlines] .= " $i";
677         }
678         $subsys = ($type eq "G") ? "windows" : "console";
679         print "\techo /nologo /subsystem:$subsys > $prog.rsp\n";
680         for ($i=0; $i<=$#objlines; $i++) {
681             print "\techo$objlines[$i] >> $prog.rsp\n";
682         }
683         print "\n";
684     }
685     foreach $d (&deps("X.obj", "X.res", $dirpfx, "\\")) {
686         print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
687           "\n";
688         if ($d->{obj} =~ /\.res$/) {
689             print "\trc \$(FWHACK) \$(RCFL) -r -DWIN32 -D_WIN32 ".
690               "-DWINVER=0x0400 -fo".$d->{obj}." ".$d->{deps}->[0]."\n";
691         } else {
692             $deflist = join "", map { " /D$_" } @{$d->{defs}};
693             print "\tcl \$(COMPAT) \$(FWHACK) \$(CFLAGS) \$(XFLAGS)$deflist".
694               " /c ".$d->{deps}->[0]." /Fo$d->{obj}\n";
695         }
696     }
697     print "\n";
698     print $makefile_extra{'vc'};
699     print "\nclean: tidy\n".
700       "\t-del *.exe\n\n".
701       "tidy:\n".
702       "\t-del *.obj\n".
703       "\t-del *.res\n".
704       "\t-del *.pch\n".
705       "\t-del *.aps\n".
706       "\t-del *.ilk\n".
707       "\t-del *.pdb\n".
708       "\t-del *.rsp\n".
709       "\t-del *.dsp\n".
710       "\t-del *.dsw\n".
711       "\t-del *.ncb\n".
712       "\t-del *.opt\n".
713       "\t-del *.plg\n".
714       "\t-del *.map\n".
715       "\t-del *.idb\n".
716       "\t-del debug.log\n";
717     select STDOUT; close OUT;
718 }
719
720 if (defined $makefiles{'vcproj'}) {
721     $mftyp = 'vcproj';
722
723     $orig_dir = cwd;
724
725     ##-- MSVC 6 Workspace and projects
726     #
727     # Note: All files created in this section are written in binary
728     # mode, because although MSVC's command-line make can deal with
729     # LF-only line endings, MSVC project files really _need_ to be
730     # CRLF. Hence, in order for mkfiles.pl to generate usable project
731     # files even when run from Unix, I make sure all files are binary
732     # and explicitly write the CRLFs.
733     #
734     # Create directories if necessary
735     mkdir $makefiles{'vcproj'}
736         if(! -d $makefiles{'vcproj'});
737     chdir $makefiles{'vcproj'};
738     @deps = &deps("X.obj", "X.res", "", "\\");
739     %all_object_deps = map {$_->{obj} => $_->{deps}} @deps;
740     # Create the project files
741     # Get names of all Windows projects (GUI and console)
742     my @prognames = &prognames("G:C");
743     foreach $progname (@prognames) {
744         create_project(\%all_object_deps, $progname);
745     }
746     # Create the workspace file
747     open OUT, ">$project_name.dsw"; binmode OUT; select OUT;
748     print
749     "Microsoft Developer Studio Workspace File, Format Version 6.00\r\n".
750     "# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\r\n".
751     "\r\n".
752     "###############################################################################\r\n".
753     "\r\n";
754     # List projects
755     foreach $progname (@prognames) {
756       ($windows_project, $type) = split ",", $progname;
757         print "Project: \"$windows_project\"=\".\\$windows_project\\$windows_project.dsp\" - Package Owner=<4>\r\n";
758     }
759     print
760     "\r\n".
761     "Package=<5>\r\n".
762     "{{{\r\n".
763     "}}}\r\n".
764     "\r\n".
765     "Package=<4>\r\n".
766     "{{{\r\n".
767     "}}}\r\n".
768     "\r\n".
769     "###############################################################################\r\n".
770     "\r\n".
771     "Global:\r\n".
772     "\r\n".
773     "Package=<5>\r\n".
774     "{{{\r\n".
775     "}}}\r\n".
776     "\r\n".
777     "Package=<3>\r\n".
778     "{{{\r\n".
779     "}}}\r\n".
780     "\r\n".
781     "###############################################################################\r\n".
782     "\r\n";
783     select STDOUT; close OUT;
784     chdir $orig_dir;
785
786     sub create_project {
787         my ($all_object_deps, $progname) = @_;
788         # Construct program's dependency info
789         %seen_objects = ();
790         %lib_files = ();
791         %source_files = ();
792         %header_files = ();
793         %resource_files = ();
794         @object_files = split " ", &objects($progname, "X.obj", "X.res", "X.lib");
795         foreach $object_file (@object_files) {
796             next if defined $seen_objects{$object_file};
797             $seen_objects{$object_file} = 1;
798             if($object_file =~ /\.lib$/io) {
799                 $lib_files{$object_file} = 1;
800                 next;
801             }
802             $object_deps = $all_object_deps{$object_file};
803             foreach $object_dep (@$object_deps) {
804                 if($object_dep =~ /\.c$/io) {
805                     $source_files{$object_dep} = 1;
806                     next;
807                 }
808                 if($object_dep =~ /\.h$/io) {
809                     $header_files{$object_dep} = 1;
810                     next;
811                 }
812                 if($object_dep =~ /\.(rc|ico)$/io) {
813                     $resource_files{$object_dep} = 1;
814                     next;
815                 }
816             }
817         }
818         $libs = join " ", sort keys %lib_files;
819         @source_files = sort keys %source_files;
820         @header_files = sort keys %header_files;
821         @resources = sort keys %resource_files;
822         ($windows_project, $type) = split ",", $progname;
823         mkdir $windows_project
824             if(! -d $windows_project);
825         chdir $windows_project;
826         $subsys = ($type eq "G") ? "windows" : "console";
827         open OUT, ">$windows_project.dsp"; binmode OUT; select OUT;
828         print
829         "# Microsoft Developer Studio Project File - Name=\"$windows_project\" - Package Owner=<4>\r\n".
830         "# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n".
831         "# ** DO NOT EDIT **\r\n".
832         "\r\n".
833         "# TARGTYPE \"Win32 (x86) Application\" 0x0101\r\n".
834         "\r\n".
835         "CFG=$windows_project - Win32 Debug\r\n".
836         "!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n".
837         "!MESSAGE use the Export Makefile command and run\r\n".
838         "!MESSAGE \r\n".
839         "!MESSAGE NMAKE /f \"$windows_project.mak\".\r\n".
840         "!MESSAGE \r\n".
841         "!MESSAGE You can specify a configuration when running NMAKE\r\n".
842         "!MESSAGE by defining the macro CFG on the command line. For example:\r\n".
843         "!MESSAGE \r\n".
844         "!MESSAGE NMAKE /f \"$windows_project.mak\" CFG=\"$windows_project - Win32 Debug\"\r\n".
845         "!MESSAGE \r\n".
846         "!MESSAGE Possible choices for configuration are:\r\n".
847         "!MESSAGE \r\n".
848         "!MESSAGE \"$windows_project - Win32 Release\" (based on \"Win32 (x86) Application\")\r\n".
849         "!MESSAGE \"$windows_project - Win32 Debug\" (based on \"Win32 (x86) Application\")\r\n".
850         "!MESSAGE \r\n".
851         "\r\n".
852         "# Begin Project\r\n".
853         "# PROP AllowPerConfigDependencies 0\r\n".
854         "# PROP Scc_ProjName \"\"\r\n".
855         "# PROP Scc_LocalPath \"\"\r\n".
856         "CPP=cl.exe\r\n".
857         "MTL=midl.exe\r\n".
858         "RSC=rc.exe\r\n".
859         "\r\n".
860         "!IF  \"\$(CFG)\" == \"$windows_project - Win32 Release\"\r\n".
861         "\r\n".
862         "# PROP BASE Use_MFC 0\r\n".
863         "# PROP BASE Use_Debug_Libraries 0\r\n".
864         "# PROP BASE Output_Dir \"Release\"\r\n".
865         "# PROP BASE Intermediate_Dir \"Release\"\r\n".
866         "# PROP BASE Target_Dir \"\"\r\n".
867         "# PROP Use_MFC 0\r\n".
868         "# PROP Use_Debug_Libraries 0\r\n".
869         "# PROP Output_Dir \"Release\"\r\n".
870         "# PROP Intermediate_Dir \"Release\"\r\n".
871         "# PROP Ignore_Export_Lib 0\r\n".
872         "# PROP Target_Dir \"\"\r\n".
873         "# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_WINDOWS\" /D \"_MBCS\" /YX /FD /c\r\n".
874         "# ADD CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_WINDOWS\" /D \"_MBCS\" /YX /FD /c\r\n".
875         "# ADD BASE MTL /nologo /D \"NDEBUG\" /mktyplib203 /win32\r\n".
876         "# ADD MTL /nologo /D \"NDEBUG\" /mktyplib203 /win32\r\n".
877         "# ADD BASE RSC /l 0x809 /d \"NDEBUG\"\r\n".
878         "# ADD RSC /l 0x809 /d \"NDEBUG\"\r\n".
879         "BSC32=bscmake.exe\r\n".
880         "# ADD BASE BSC32 /nologo\r\n".
881         "# ADD BSC32 /nologo\r\n".
882         "LINK32=link.exe\r\n".
883         "# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:$subsys /machine:I386\r\n".
884         "# ADD LINK32 $libs /nologo /subsystem:$subsys /machine:I386\r\n".
885         "# SUBTRACT LINK32 /pdb:none\r\n".
886         "\r\n".
887         "!ELSEIF  \"\$(CFG)\" == \"$windows_project - Win32 Debug\"\r\n".
888         "\r\n".
889         "# PROP BASE Use_MFC 0\r\n".
890         "# PROP BASE Use_Debug_Libraries 1\r\n".
891         "# PROP BASE Output_Dir \"Debug\"\r\n".
892         "# PROP BASE Intermediate_Dir \"Debug\"\r\n".
893         "# PROP BASE Target_Dir \"\"\r\n".
894         "# PROP Use_MFC 0\r\n".
895         "# PROP Use_Debug_Libraries 1\r\n".
896         "# PROP Output_Dir \"Debug\"\r\n".
897         "# PROP Intermediate_Dir \"Debug\"\r\n".
898         "# PROP Ignore_Export_Lib 0\r\n".
899         "# PROP Target_Dir \"\"\r\n".
900         "# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_WINDOWS\" /D \"_MBCS\" /YX /FD /GZ /c\r\n".
901         "# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_WINDOWS\" /D \"_MBCS\" /YX /FD /GZ /c\r\n".
902         "# ADD BASE MTL /nologo /D \"_DEBUG\" /mktyplib203 /win32\r\n".
903         "# ADD MTL /nologo /D \"_DEBUG\" /mktyplib203 /win32\r\n".
904         "# ADD BASE RSC /l 0x809 /d \"_DEBUG\"\r\n".
905         "# ADD RSC /l 0x809 /d \"_DEBUG\"\r\n".
906         "BSC32=bscmake.exe\r\n".
907         "# ADD BASE BSC32 /nologo\r\n".
908         "# ADD BSC32 /nologo\r\n".
909         "LINK32=link.exe\r\n".
910         "# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:$subsys /debug /machine:I386 /pdbtype:sept\r\n".
911         "# ADD LINK32 $libs /nologo /subsystem:$subsys /debug /machine:I386 /pdbtype:sept\r\n".
912         "# SUBTRACT LINK32 /pdb:none\r\n".
913         "\r\n".
914         "!ENDIF \r\n".
915         "\r\n".
916         "# Begin Target\r\n".
917         "\r\n".
918         "# Name \"$windows_project - Win32 Release\"\r\n".
919         "# Name \"$windows_project - Win32 Debug\"\r\n".
920         "# Begin Group \"Source Files\"\r\n".
921         "\r\n".
922         "# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n";
923         foreach $source_file (@source_files) {
924             print
925               "# Begin Source File\r\n".
926               "\r\n".
927               "SOURCE=..\\..\\$source_file\r\n";
928             if($source_file =~ /ssh\.c/io) {
929                 # Disable 'Edit and continue' as Visual Studio can't handle the macros
930                 print
931                   "\r\n".
932                   "!IF  \"\$(CFG)\" == \"$windows_project - Win32 Release\"\r\n".
933                   "\r\n".
934                   "!ELSEIF  \"\$(CFG)\" == \"$windows_project - Win32 Debug\"\r\n".
935                   "\r\n".
936                   "# ADD CPP /Zi\r\n".
937                   "\r\n".
938                   "!ENDIF \r\n".
939                   "\r\n";
940             }
941             print "# End Source File\r\n";
942         }
943         print
944         "# End Group\r\n".
945         "# Begin Group \"Header Files\"\r\n".
946         "\r\n".
947         "# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n";
948         foreach $header_file (@header_files) {
949             print
950               "# Begin Source File\r\n".
951               "\r\n".
952               "SOURCE=..\\..\\$header_file\r\n".
953               "# End Source File\r\n";
954         }
955         print
956         "# End Group\r\n".
957         "# Begin Group \"Resource Files\"\r\n".
958         "\r\n".
959         "# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n";
960         foreach $resource_file (@resources) {
961             print
962               "# Begin Source File\r\n".
963               "\r\n".
964               "SOURCE=..\\..\\$resource_file\r\n".
965               "# End Source File\r\n";
966         }
967         print
968         "# End Group\r\n".
969         "# End Target\r\n".
970         "# End Project\r\n";
971         select STDOUT; close OUT;
972         chdir "..";
973     }
974 }
975
976 if (defined $makefiles{'gtk'}) {
977     $mftyp = 'gtk';
978     $dirpfx = &dirpfx($makefiles{'gtk'}, "/");
979
980     ##-- X/GTK/Unix makefile
981     open OUT, ">$makefiles{'gtk'}"; select OUT;
982     print
983     "# Makefile for $project_name under X/GTK and Unix.\n".
984     "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
985     "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
986     # gcc command line option is -D not /D
987     ($_ = $help) =~ s/=\/D/=-D/gs;
988     print $_;
989     print
990     "\n".
991     "# You can define this path to point at your tools if you need to\n".
992     "# TOOLPATH = /opt/gcc/bin\n".
993     "CC = \$(TOOLPATH)cc\n".
994     "# You can manually set this to `gtk-config' or `pkg-config gtk+-1.2'\n".
995     "# (depending on what works on your system) if you want to enforce\n".
996     "# building with GTK 1.2, or you can set it to `pkg-config gtk+-2.0'\n".
997     "# if you want to enforce 2.0. The default is to try 2.0 and fall back\n".
998     "# to 1.2 if it isn't found.\n".
999     "GTK_CONFIG = sh -c 'pkg-config gtk+-2.0 \$\$0 2>/dev/null || gtk-config \$\$0'\n".
1000     "\n".
1001     &splitline("CFLAGS = -O2 -Wall -Werror -g " .
1002                (join " ", map {"-I$dirpfx$_"} @srcdirs) .
1003                " `\$(GTK_CONFIG) --cflags`")."\n".
1004     "XLDFLAGS = `\$(GTK_CONFIG) --libs`\n".
1005     "ULDFLAGS =#\n".
1006     "INSTALL=install\n",
1007     "INSTALL_PROGRAM=\$(INSTALL)\n",
1008     "INSTALL_DATA=\$(INSTALL)\n",
1009     "prefix=/usr/local\n",
1010     "exec_prefix=\$(prefix)\n",
1011     "bindir=\$(exec_prefix)/bin\n",
1012     "gamesdir=\$(exec_prefix)/games\n",
1013     "mandir=\$(prefix)/man\n",
1014     "man1dir=\$(mandir)/man1\n",
1015     "\n";
1016     print &splitline("all:" . join "", map { " $_" } &progrealnames("X:U"));
1017     print "\n\n";
1018     foreach $p (&prognames("X:U")) {
1019       ($prog, $type) = split ",", $p;
1020       $objstr = &objects($p, "X.o", undef, undef);
1021       print &splitline($prog . ": " . $objstr), "\n";
1022       $libstr = &objects($p, undef, undef, "-lX");
1023       print &splitline("\t\$(CC)" . $mw . " \$(${type}LDFLAGS) -o \$@ " .
1024                        $objstr . " $libstr", 69), "\n\n";
1025     }
1026     foreach $d (&deps("X.o", undef, $dirpfx, "/")) {
1027       print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
1028           "\n";
1029       $deflist = join "", map { " -D$_" } @{$d->{defs}};
1030       print "\t\$(CC) \$(COMPAT) \$(FWHACK) \$(CFLAGS) \$(XFLAGS)$deflist" .
1031           " -c \$< -o \$\@\n";
1032     }
1033     print "\n";
1034     print $makefile_extra{'gtk'};
1035     print "\nclean:\n".
1036     "\trm -f *.o". (join "", map { " $_" } &progrealnames("X:U")) . "\n";
1037     select STDOUT; close OUT;
1038 }
1039
1040 if (defined $makefiles{'mpw'}) {
1041     $mftyp = 'mpw';
1042     ##-- MPW Makefile
1043     open OUT, ">$makefiles{'mpw'}"; select OUT;
1044     print
1045     "# Makefile for $project_name under MPW.\n#\n".
1046     "# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
1047     "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
1048     # MPW command line option is -d not /D
1049     ($_ = $help) =~ s/=\/D/=-d /gs;
1050     print $_;
1051     print "\n\n".
1052     "ROptions     = `Echo \"{VER}\" | StreamEdit -e \"1,\$ replace /=(\xc5)\xa81\xb0/ 'STR=\xb6\xb6\xb6\xb6\xb6\"' \xa81 '\xb6\xb6\xb6\xb6\xb6\"'\"`".
1053     "\n".
1054     "C_68K = {C}\n".
1055     "C_CFM68K = {C}\n".
1056     "C_PPC = {PPCC}\n".
1057     "C_Carbon = {PPCC}\n".
1058     "\n".
1059     "# -w 35 disables \"unused parameter\" warnings\n".
1060     "COptions     = -i : -i :: -i ::charset -w 35 -w err -proto strict -ansi on \xb6\n".
1061     "          -notOnce\n".
1062     "COptions_68K = {COptions} -model far -opt time\n".
1063     "# Enabling \"-opt space\" for CFM-68K gives me undefined references to\n".
1064     "# _\$LDIVT and _\$LMODT.\n".
1065     "COptions_CFM68K = {COptions} -model cfmSeg -opt time\n".
1066     "COptions_PPC = {COptions} -opt size -traceback\n".
1067     "COptions_Carbon = {COptions} -opt size -traceback -d TARGET_API_MAC_CARBON\n".
1068     "\n".
1069     "Link_68K = ILink\n".
1070     "Link_CFM68K = ILink\n".
1071     "Link_PPC = PPCLink\n".
1072     "Link_Carbon = PPCLink\n".
1073     "\n".
1074     "LinkOptions = -c 'pTTY'\n".
1075     "LinkOptions_68K = {LinkOptions} -br 68k -model far -compact\n".
1076     "LinkOptions_CFM68K = {LinkOptions} -br 020 -model cfmseg -compact\n".
1077     "LinkOptions_PPC = {LinkOptions}\n".
1078     "LinkOptions_Carbon = -m __appstart -w {LinkOptions}\n".
1079     "\n".
1080     "Libs_68K = \"{CLibraries}StdCLib.far.o\" \xb6\n".
1081     "           \"{Libraries}MacRuntime.o\" \xb6\n".
1082     "           \"{Libraries}MathLib.far.o\" \xb6\n".
1083     "           \"{Libraries}IntEnv.far.o\" \xb6\n".
1084     "           \"{Libraries}Interface.o\" \xb6\n".
1085     "           \"{Libraries}Navigation.far.o\" \xb6\n".
1086     "           \"{Libraries}OpenTransport.o\" \xb6\n".
1087     "           \"{Libraries}OpenTransportApp.o\" \xb6\n".
1088     "           \"{Libraries}OpenTptInet.o\" \xb6\n".
1089     "           \"{Libraries}UnicodeConverterLib.far.o\"\n".
1090     "\n".
1091     "Libs_CFM = \"{SharedLibraries}InterfaceLib\" \xb6\n".
1092     "           \"{SharedLibraries}StdCLib\" \xb6\n".
1093     "           \"{SharedLibraries}AppearanceLib\" \xb6\n".
1094     "                   -weaklib AppearanceLib \xb6\n".
1095     "           \"{SharedLibraries}NavigationLib\" \xb6\n".
1096     "                   -weaklib NavigationLib \xb6\n".
1097     "           \"{SharedLibraries}TextCommon\" \xb6\n".
1098     "                   -weaklib TextCommon \xb6\n".
1099     "           \"{SharedLibraries}UnicodeConverter\" \xb6\n".
1100     "                   -weaklib UnicodeConverter\n".
1101     "\n".
1102     "Libs_CFM68K =      {Libs_CFM} \xb6\n".
1103     "           \"{CFM68KLibraries}NuMacRuntime.o\"\n".
1104     "\n".
1105     "Libs_PPC = {Libs_CFM} \xb6\n".
1106     "           \"{SharedLibraries}ControlsLib\" \xb6\n".
1107     "                   -weaklib ControlsLib \xb6\n".
1108     "           \"{SharedLibraries}WindowsLib\" \xb6\n".
1109     "                   -weaklib WindowsLib \xb6\n".
1110     "           \"{SharedLibraries}OpenTransportLib\" \xb6\n".
1111     "                   -weaklib OTClientLib \xb6\n".
1112     "                   -weaklib OTClientUtilLib \xb6\n".
1113     "           \"{SharedLibraries}OpenTptInternetLib\" \xb6\n".
1114     "                   -weaklib OTInetClientLib \xb6\n".
1115     "           \"{PPCLibraries}StdCRuntime.o\" \xb6\n".
1116     "           \"{PPCLibraries}PPCCRuntime.o\" \xb6\n".
1117     "           \"{PPCLibraries}CarbonAccessors.o\" \xb6\n".
1118     "           \"{PPCLibraries}OpenTransportAppPPC.o\" \xb6\n".
1119     "           \"{PPCLibraries}OpenTptInetPPC.o\"\n".
1120     "\n".
1121     "Libs_Carbon =      \"{PPCLibraries}CarbonStdCLib.o\" \xb6\n".
1122     "           \"{PPCLibraries}StdCRuntime.o\" \xb6\n".
1123     "           \"{PPCLibraries}PPCCRuntime.o\" \xb6\n".
1124     "           \"{SharedLibraries}CarbonLib\" \xb6\n".
1125     "           \"{SharedLibraries}StdCLib\"\n".
1126     "\n";
1127     print &splitline("all \xc4 " . join(" ", &progrealnames("M")), undef, "\xb6");
1128     print "\n\n";
1129     foreach $p (&prognames("M")) {
1130       ($prog, $type) = split ",", $p;
1131
1132       print &splitline("$prog \xc4 $prog.68k $prog.ppc $prog.carbon",
1133                    undef, "\xb6"), "\n\n";
1134
1135       $rsrc = &objects($p, "", "X.rsrc", undef);
1136
1137       foreach $arch (qw(68K CFM68K PPC Carbon)) {
1138           $objstr = &objects($p, "X.\L$arch\E.o", "", undef);
1139           print &splitline("$prog.\L$arch\E \xc4 $objstr $rsrc", undef, "\xb6");
1140           print "\n";
1141           print &splitline("\tDuplicate -y $rsrc {Targ}", 69, "\xb6"), "\n";
1142           print &splitline("\t{Link_$arch} -o {Targ} -fragname $prog " .
1143                        "{LinkOptions_$arch} " .
1144                        $objstr . " {Libs_$arch}", 69, "\xb6"), "\n";
1145           print &splitline("\tSetFile -a BMi {Targ}", 69, "\xb6"), "\n\n";
1146       }
1147
1148     }
1149     foreach $d (&deps("", "X.rsrc", "::", ":")) {
1150       next unless $d->{obj};
1151       print &splitline(sprintf("%s \xc4 %s", $d->{obj}, join " ", @{$d->{deps}}),
1152                    undef, "\xb6"), "\n";
1153       print "\tRez ", $d->{deps}->[0], " -o {Targ} {ROptions}\n\n";
1154     }
1155     foreach $arch (qw(68K CFM68K)) {
1156         foreach $d (&deps("X.\L$arch\E.o", "", "::", ":")) {
1157          next unless $d->{obj};
1158         print &splitline(sprintf("%s \xc4 %s", $d->{obj},
1159                                  join " ", @{$d->{deps}}),
1160                          undef, "\xb6"), "\n";
1161          print "\t{C_$arch} ", $d->{deps}->[0],
1162                " -o {Targ} {COptions_$arch}\n\n";
1163          }
1164     }
1165     foreach $arch (qw(PPC Carbon)) {
1166         foreach $d (&deps("X.\L$arch\E.o", "", "::", ":")) {
1167          next unless $d->{obj};
1168         print &splitline(sprintf("%s \xc4 %s", $d->{obj},
1169                                  join " ", @{$d->{deps}}),
1170                          undef, "\xb6"), "\n";
1171          # The odd stuff here seems to stop afpd getting confused.
1172          print "\techo -n > {Targ}\n";
1173          print "\tsetfile -t XCOF {Targ}\n";
1174          print "\t{C_$arch} ", $d->{deps}->[0],
1175                " -o {Targ} {COptions_$arch}\n\n";
1176          }
1177     }
1178     select STDOUT; close OUT;
1179 }
1180
1181 if (defined $makefiles{'lcc'}) {
1182     $mftyp = 'lcc';
1183     $dirpfx = &dirpfx($makefiles{'lcc'}, "\\");
1184
1185     ##-- lcc makefile
1186     open OUT, ">$makefiles{'lcc'}"; select OUT;
1187     print
1188     "# Makefile for $project_name under lcc.\n".
1189     "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
1190     "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
1191     # lcc command line option is -D not /D
1192     ($_ = $help) =~ s/=\/D/=-D/gs;
1193     print $_;
1194     print
1195     "\n".
1196     "# If you rename this file to `Makefile', you should change this line,\n".
1197     "# so that the .rsp files still depend on the correct makefile.\n".
1198     "MAKEFILE = Makefile.lcc\n".
1199     "\n".
1200     "# C compilation flags\n".
1201     "CFLAGS = -D_WINDOWS " .
1202       (join " ", map {"-I$dirpfx$_"} @srcdirs) .
1203       "\n".
1204     "\n".
1205     "# Get include directory for resource compiler\n".
1206     "\n";
1207     print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C"));
1208     print "\n\n";
1209     foreach $p (&prognames("G:C")) {
1210       ($prog, $type) = split ",", $p;
1211       $objstr = &objects($p, "X.obj", "X.res", undef);
1212       print &splitline("$prog.exe: " . $objstr ), "\n";
1213       $subsystemtype = undef;
1214       if ($type eq "G") { $subsystemtype = "-subsystem  windows"; }
1215       my $libss = "shell32.lib wsock32.lib ws2_32.lib winspool.lib winmm.lib imm32.lib";
1216       print &splitline("\tlcclnk $subsystemtype -o $prog.exe $objstr $libss");
1217       print "\n\n";
1218     }
1219
1220     foreach $d (&deps("X.obj", "X.res", $dirpfx, "\\")) {
1221       print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
1222         "\n";
1223       if ($d->{obj} =~ /\.res$/) {
1224         print &splitline("\tlrc \$(FWHACK) \$(RCFL) -r \$*.rc",69)."\n";
1225       } else {
1226         $deflist = join "", map { " -D$_" } @{$d->{defs}};
1227         print &splitline("\tlcc -O -p6 \$(COMPAT) \$(FWHACK) \$(CFLAGS)".
1228                          " \$(XFLAGS)$deflist ".$d->{deps}->[0]." -o \$\@",69)."\n";
1229       }
1230     }
1231     print "\n";
1232     print $makefile_extra{'lcc'};
1233     print "\nclean:\n".
1234     "\t-del *.obj\n".
1235     "\t-del *.exe\n".
1236     "\t-del *.res\n";
1237
1238     select STDOUT; close OUT;
1239 }
1240
1241 if (defined $makefiles{'osx'}) {
1242     $mftyp = 'osx';
1243     $dirpfx = &dirpfx($makefiles{'osx'}, "/");
1244
1245     ##-- Mac OS X makefile
1246     open OUT, ">$makefiles{'osx'}"; select OUT;
1247     print
1248     "# Makefile for $project_name under Mac OS X.\n".
1249     "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
1250     "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
1251     # gcc command line option is -D not /D
1252     ($_ = $help) =~ s/=\/D/=-D/gs;
1253     print $_;
1254     print
1255     "CC = \$(TOOLPATH)gcc\n".
1256     "\n".
1257     &splitline("CFLAGS = -O2 -Wall -Werror -g " .
1258                (join " ", map {"-I$dirpfx$_"} @srcdirs))."\n".
1259     "LDFLAGS = -framework Cocoa\n".
1260     &splitline("all:" . join "", map { " $_" } &progrealnames("MX:U")) .
1261     "\n" .
1262     $makefile_extra{'osx'} .
1263     "\n".
1264     ".SUFFIXES: .o .c .m\n".
1265     "\n";
1266     print "\n\n";
1267     foreach $p (&prognames("MX")) {
1268       ($prog, $type) = split ",", $p;
1269       $objstr = &objects($p, "X.o", undef, undef);
1270       $icon = &special($p, ".icns");
1271       $infoplist = &special($p, "info.plist");
1272       print "${prog}.app:\n\tmkdir -p \$\@\n";
1273       print "${prog}.app/Contents: ${prog}.app\n\tmkdir -p \$\@\n";
1274       print "${prog}.app/Contents/MacOS: ${prog}.app/Contents\n\tmkdir -p \$\@\n";
1275       $targets = "${prog}.app/Contents/MacOS/$prog";
1276       if (defined $icon) {
1277         print "${prog}.app/Contents/Resources: ${prog}.app/Contents\n\tmkdir -p \$\@\n";
1278         print "${prog}.app/Contents/Resources/${prog}.icns: ${prog}.app/Contents/Resources $icon\n\tcp $icon \$\@\n";
1279         $targets .= " ${prog}.app/Contents/Resources/${prog}.icns";
1280       }
1281       if (defined $infoplist) {
1282         print "${prog}.app/Contents/Info.plist: ${prog}.app/Contents/Resources $infoplist\n\tcp $infoplist \$\@\n";
1283         $targets .= " ${prog}.app/Contents/Info.plist";
1284       }
1285       $targets .= " \$(${prog}_extra)";
1286       print &splitline("${prog}: $targets", 69) . "\n\n";
1287       print &splitline("${prog}.app/Contents/MacOS/$prog: ".
1288                        "${prog}.app/Contents/MacOS " . $objstr), "\n";
1289       $libstr = &objects($p, undef, undef, "-lX");
1290       print &splitline("\t\$(CC)" . $mw . " \$(LDFLAGS) -o \$@ " .
1291                        $objstr . " $libstr", 69), "\n\n";
1292     }
1293     foreach $p (&prognames("U")) {
1294       ($prog, $type) = split ",", $p;
1295       $objstr = &objects($p, "X.o", undef, undef);
1296       print &splitline($prog . ": " . $objstr), "\n";
1297       $libstr = &objects($p, undef, undef, "-lX");
1298       print &splitline("\t\$(CC)" . $mw . " \$(ULDFLAGS) -o \$@ " .
1299                        $objstr . " $libstr", 69), "\n\n";
1300     }
1301     foreach $d (&deps("X.o", undef, $dirpfx, "/")) {
1302       print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
1303           "\n";
1304       $deflist = join "", map { " -D$_" } @{$d->{defs}};
1305       if ($d->{deps}->[0] =~ /\.m$/) {
1306         print "\t\$(CC) -x objective-c \$(COMPAT) \$(FWHACK) \$(CFLAGS)".
1307             " \$(XFLAGS)$deflist -c \$< -o \$\@\n";
1308       } else {
1309         print "\t\$(CC) \$(COMPAT) \$(FWHACK) \$(CFLAGS) \$(XFLAGS)$deflist" .
1310             " -c \$< -o \$\@\n";
1311       }
1312     }
1313     print "\nclean:\n".
1314     "\trm -f *.o *.dmg". (join "", map { " $_" } &progrealnames("U")) . "\n".
1315     "\trm -rf *.app\n";
1316     select STDOUT; close OUT;
1317 }