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