So _that's_ why mkfiles.pl was running so slowly on my Windows box!
[u/mdw/putty] / mkfiles.pl
1 #!/usr/bin/env perl
2 #
3 # Makefile generator for PuTTY.
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 use FileHandle;
11
12 open IN, "Recipe" or do {
13 # We want to deal correctly with being run from one of the
14 # subdirs in the source tree. So if we can't find Recipe here,
15 # try one level up.
16 chdir "..";
17 open IN, "Recipe" or die "unable to open Recipe file\n";
18 };
19
20 # HACK: One of the source files in `charset' is auto-generated by
21 # sbcsgen.pl. We need to generate that _now_, before attempting
22 # dependency analysis.
23 eval 'chdir "charset"; require "sbcsgen.pl"; chdir ".."';
24
25 @incdirs = ("", "charset/", "unix/", "mac/");
26
27 $help = ""; # list of newline-free lines of help text
28 %programs = (); # maps prog name + type letter to listref of objects/resources
29 %groups = (); # maps group name to listref of objects/resources
30
31 while (<IN>) {
32 # Skip comments (unless the comments belong, for example because
33 # they're part of the help text).
34 next if /^\s*#/ and !$in_help;
35
36 chomp;
37 split;
38 if ($_[0] eq "!begin" and $_[1] eq "help") { $in_help = 1; next; }
39 if ($_[0] eq "!end" and $in_help) { $in_help = 0; next; }
40 # If we're gathering help text, keep doing so.
41 if ($in_help) { $help .= "$_\n"; next; }
42 # Ignore blank lines.
43 next if scalar @_ == 0;
44
45 # Now we have an ordinary line. See if it's an = line, a : line
46 # or a + line.
47 @objs = @_;
48
49 if ($_[0] eq "+") {
50 $listref = $lastlistref;
51 $prog = undef;
52 die "$.: unexpected + line\n" if !defined $lastlistref;
53 } elsif ($_[1] eq "=") {
54 $groups{$_[0]} = [] if !defined $groups{$_[0]};
55 $listref = $groups{$_[0]};
56 $prog = undef;
57 shift @objs; # eat the group name
58 } elsif ($_[1] eq ":") {
59 $listref = [];
60 $prog = $_[0];
61 shift @objs; # eat the program name
62 } else {
63 die "$.: unrecognised line type\n";
64 }
65 shift @objs; # eat the +, the = or the :
66
67 while (scalar @objs > 0) {
68 $i = shift @objs;
69 if ($groups{$i}) {
70 foreach $j (@{$groups{$i}}) { unshift @objs, $j; }
71 } elsif (($i eq "[G]" or $i eq "[C]" or $i eq "[M]" or
72 $i eq "[X]" or $i eq "[U]") and defined $prog) {
73 $type = substr($i,1,1);
74 } else {
75 push @$listref, $i;
76 }
77 }
78 if ($prog and $type) {
79 die "multiple program entries for $prog [$type]\n"
80 if defined $programs{$prog . "," . $type};
81 $programs{$prog . "," . $type} = $listref;
82 }
83 $lastlistref = $listref;
84 }
85
86 close IN;
87
88 # Now retrieve the complete list of objects and resource files, and
89 # construct dependency data for them. While we're here, expand the
90 # object list for each program, and complain if its type isn't set.
91 @prognames = sort keys %programs;
92 %depends = ();
93 @scanlist = ();
94 foreach $i (@prognames) {
95 ($prog, $type) = split ",", $i;
96 # Strip duplicate object names.
97 $prev = undef;
98 @list = grep { $status = ($prev ne $_); $prev=$_; $status }
99 sort @{$programs{$i}};
100 $programs{$i} = [@list];
101 foreach $j (@list) {
102 # Dependencies for "x" start with "x.c".
103 # Dependencies for "x.res" start with "x.rc".
104 # Dependencies for "x.rsrc" start with "x.r".
105 # Both types of file are pushed on the list of files to scan.
106 # Libraries (.lib) don't have dependencies at all.
107 if ($j =~ /^(.*)\.res$/) {
108 $file = "$1.rc";
109 $depends{$j} = [$file];
110 push @scanlist, $file;
111 } elsif ($j =~ /^(.*)\.rsrc$/) {
112 $file = "$1.r";
113 $depends{$j} = [$file];
114 push @scanlist, $file;
115 } elsif ($j =~ /\.lib$/) {
116 # libraries don't have dependencies
117 } else {
118 $file = "$j.c";
119 $depends{$j} = [$file];
120 push @scanlist, $file;
121 }
122 }
123 }
124
125 # Scan each file on @scanlist and find further inclusions.
126 # Inclusions are given by lines of the form `#include "otherfile"'
127 # (system headers are automatically ignored by this because they'll
128 # be given in angle brackets). Files included by this method are
129 # added back on to @scanlist to be scanned in turn (if not already
130 # done).
131 #
132 # Resource scripts (.rc) can also include a file by means of a line
133 # ending `ICON "filename"'. Files included by this method are not
134 # added to @scanlist because they can never include further files.
135 #
136 # In this pass we write out a hash %further which maps a source
137 # file name into a listref containing further source file names.
138
139 %further = ();
140 while (scalar @scanlist > 0) {
141 $file = shift @scanlist;
142 next if defined $further{$file}; # skip if we've already done it
143 $resource = ($file =~ /\.rc$/ ? 1 : 0);
144 $further{$file} = [];
145 $dirfile = &findfile($file);
146 open IN, "$dirfile" or die "unable to open source file $file\n";
147 while (<IN>) {
148 chomp;
149 /^\s*#include\s+\"([^\"]+)\"/ and do {
150 push @{$further{$file}}, $1;
151 push @scanlist, $1;
152 next;
153 };
154 /ICON\s+\"([^\"]+)\"\s*$/ and do {
155 push @{$further{$file}}, $1;
156 next;
157 }
158 }
159 close IN;
160 }
161
162 # Now we're ready to generate the final dependencies section. For
163 # each key in %depends, we must expand the dependencies list by
164 # iteratively adding entries from %further.
165 foreach $i (keys %depends) {
166 %dep = ();
167 @scanlist = @{$depends{$i}};
168 foreach $i (@scanlist) { $dep{$i} = 1; }
169 while (scalar @scanlist > 0) {
170 $file = shift @scanlist;
171 foreach $j (@{$further{$file}}) {
172 if ($dep{$j} != 1) {
173 $dep{$j} = 1;
174 push @{$depends{$i}}, $j;
175 push @scanlist, $j;
176 }
177 }
178 }
179 # printf "%s: %s\n", $i, join ' ',@{$depends{$i}};
180 }
181
182 # Utility routines while writing out the Makefiles.
183
184 sub findfile {
185 my ($name) = @_;
186 my $dir, $i, $outdir = "";
187 unless (defined $findfilecache{$name}) {
188 $i = 0;
189 foreach $dir (@incdirs) {
190 $outdir = $dir, $i++ if -f "$dir$name";
191 }
192 die "multiple instances of source file $name\n" if $i > 1;
193 $findfilecache{$name} = $outdir . $name;
194 }
195 return $findfilecache{$name};
196 }
197
198 sub objects {
199 my ($prog, $otmpl, $rtmpl, $ltmpl, $prefix, $dirsep) = @_;
200 my @ret;
201 my ($i, $x, $y);
202 @ret = ();
203 foreach $i (@{$programs{$prog}}) {
204 $x = "";
205 if ($i =~ /^(.*)\.(res|rsrc)/) {
206 $y = $1;
207 ($x = $rtmpl) =~ s/X/$y/;
208 } elsif ($i =~ /^(.*)\.lib/) {
209 $y = $1;
210 ($x = $ltmpl) =~ s/X/$y/;
211 } else {
212 ($x = $otmpl) =~ s/X/$i/;
213 }
214 push @ret, $x if $x ne "";
215 }
216 return join " ", @ret;
217 }
218
219 sub splitline {
220 my ($line, $width, $splitchar) = @_;
221 my ($result, $len);
222 $len = (defined $width ? $width : 76);
223 $splitchar = (defined $splitchar ? $splitchar : '\\');
224 while (length $line > $len) {
225 $line =~ /^(.{0,$len})\s(.*)$/ or $line =~ /^(.{$len,}?\s(.*)$/;
226 $result .= $1 . " ${splitchar}\n\t\t";
227 $line = $2;
228 $len = 60;
229 }
230 return $result . $line;
231 }
232
233 sub deps {
234 my ($otmpl, $rtmpl, $prefix, $dirsep, $depchar, $splitchar) = @_;
235 my ($i, $x, $y);
236 my @deps, @ret;
237 @ret = ();
238 $depchar ||= ':';
239 foreach $i (sort keys %depends) {
240 if ($i =~ /^(.*)\.(res|rsrc)/) {
241 next if !defined $rtmpl;
242 $y = $1;
243 ($x = $rtmpl) =~ s/X/$y/;
244 } else {
245 ($x = $otmpl) =~ s/X/$i/;
246 }
247 @deps = @{$depends{$i}};
248 @deps = map {
249 $_ = &findfile($_);
250 s/\//$dirsep/g;
251 $_ = $prefix . $_;
252 } @deps;
253 push @ret, {obj => $x, deps => [@deps]};
254 }
255 return @ret;
256 }
257
258 sub prognames {
259 my ($types) = @_;
260 my ($n, $prog, $type);
261 my @ret;
262 @ret = ();
263 foreach $n (@prognames) {
264 ($prog, $type) = split ",", $n;
265 push @ret, $n if index($types, $type) >= 0;
266 }
267 return @ret;
268 }
269
270 sub progrealnames {
271 my ($types) = @_;
272 my ($n, $prog, $type);
273 my @ret;
274 @ret = ();
275 foreach $n (@prognames) {
276 ($prog, $type) = split ",", $n;
277 push @ret, $prog if index($types, $type) >= 0;
278 }
279 return @ret;
280 }
281
282 sub manpages {
283 my ($types,$suffix) = @_;
284
285 # assume that all UNIX programs have a man page
286 if($suffix eq "1" && $types =~ /X/) {
287 return map("$_.1", &progrealnames($types));
288 }
289 return ();
290 }
291
292 # Now we're ready to output the actual Makefiles.
293
294 ##-- CygWin makefile
295 open OUT, ">Makefile.cyg"; select OUT;
296 print
297 "# Makefile for PuTTY under cygwin.\n".
298 "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
299 "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
300 # gcc command line option is -D not /D
301 ($_ = $help) =~ s/=\/D/=-D/gs;
302 print $_;
303 print
304 "\n".
305 "# You can define this path to point at your tools if you need to\n".
306 "# TOOLPATH = c:\\cygwin\\bin\\ # or similar, if you're running Windows\n".
307 "# TOOLPATH = /pkg/mingw32msvc/i386-mingw32msvc/bin/\n".
308 "CC = \$(TOOLPATH)gcc\n".
309 "RC = \$(TOOLPATH)windres\n".
310 "# Uncomment the following two lines to compile under Winelib\n".
311 "# CC = winegcc\n".
312 "# RC = wrc\n".
313 "# You may also need to tell windres where to find include files:\n".
314 "# RCINC = --include-dir c:\\cygwin\\include\\\n".
315 "\n".
316 &splitline("CFLAGS = -mno-cygwin -Wall -O2 -D_WINDOWS -DDEBUG -DWIN32S_COMPAT".
317 " -D_NO_OLDNAMES -DNO_MULTIMON -I.")."\n".
318 "LDFLAGS = -mno-cygwin -s\n".
319 &splitline("RCFLAGS = \$(RCINC) --define WIN32=1 --define _WIN32=1".
320 " --define WINVER=0x0400 --define MINGW32_FIX=1")."\n".
321 "\n".
322 ".SUFFIXES:\n".
323 "\n".
324 "%.o: %.c\n".
325 "\t\$(CC) \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) -c \$<\n".
326 "\n".
327 "%.res.o: %.rc\n".
328 "\t\$(RC) \$(FWHACK) \$(RCFL) \$(RCFLAGS) \$< \$\@\n".
329 "\n";
330 print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("GC"));
331 print "\n\n";
332 foreach $p (&prognames("GC")) {
333 ($prog, $type) = split ",", $p;
334 $objstr = &objects($p, "X.o", "X.res.o", undef);
335 print &splitline($prog . ".exe: " . $objstr), "\n";
336 my $mw = $type eq "G" ? " -mwindows" : "";
337 $libstr = &objects($p, undef, undef, "-lX");
338 print &splitline("\t\$(CC)" . $mw . " \$(LDFLAGS) -o \$@ " .
339 $objstr . " $libstr", 69), "\n\n";
340 }
341 foreach $d (&deps("X.o", "X.res.o", "", "/")) {
342 print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
343 "\n";
344 }
345 print
346 "\n".
347 "version.o: FORCE;\n".
348 "# Hack to force version.o to be rebuilt always\n".
349 "FORCE:\n".
350 "\t\$(CC) \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) \$(VER) -c version.c\n".
351 "clean:\n".
352 "\trm -f *.o *.exe *.res.o\n".
353 "\n";
354 select STDOUT; close OUT;
355
356 ##-- Borland makefile
357 %stdlibs = ( # Borland provides many Win32 API libraries intrinsically
358 "advapi32" => 1,
359 "comctl32" => 1,
360 "comdlg32" => 1,
361 "gdi32" => 1,
362 "imm32" => 1,
363 "shell32" => 1,
364 "user32" => 1,
365 "winmm" => 1,
366 "winspool" => 1,
367 "wsock32" => 1,
368 );
369 open OUT, ">Makefile.bor"; select OUT;
370 print
371 "# Makefile for PuTTY under Borland C.\n".
372 "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
373 "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
374 # bcc32 command line option is -D not /D
375 ($_ = $help) =~ s/=\/D/=-D/gs;
376 print $_;
377 print
378 "\n".
379 "# If you rename this file to `Makefile', you should change this line,\n".
380 "# so that the .rsp files still depend on the correct makefile.\n".
381 "MAKEFILE = Makefile.bor\n".
382 "\n".
383 "# C compilation flags\n".
384 "CFLAGS = -D_WINDOWS -DWINVER=0x0401\n".
385 "\n".
386 "# Get include directory for resource compiler\n".
387 "!if !\$d(BCB)\n".
388 "BCB = \$(MAKEDIR)\\..\n".
389 "!endif\n".
390 "\n".
391 ".c.obj:\n".
392 &splitline("\tbcc32 -w-aus -w-ccc -w-par -w-pia \$(COMPAT) \$(FWHACK)".
393 " \$(XFLAGS) \$(CFLAGS) /c \$*.c",69)."\n".
394 ".rc.res:\n".
395 &splitline("\tbrcc32 \$(FWHACK) \$(RCFL) -i \$(BCB)\\include -r".
396 " -DNO_WINRESRC_H -DWIN32 -D_WIN32 -DWINVER=0x0401 \$*.rc",69)."\n".
397 "\n";
398 print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("GC"));
399 print "\n\n";
400 foreach $p (&prognames("GC")) {
401 ($prog, $type) = split ",", $p;
402 $objstr = &objects($p, "X.obj", "X.res", undef);
403 print &splitline("$prog.exe: " . $objstr . " $prog.rsp"), "\n";
404 my $ap = ($type eq "G") ? "-aa" : "-ap";
405 print "\tilink32 $ap -Gn -L\$(BCB)\\lib \@$prog.rsp\n\n";
406 }
407 foreach $p (&prognames("GC")) {
408 ($prog, $type) = split ",", $p;
409 print $prog, ".rsp: \$(MAKEFILE)\n";
410 $objstr = &objects($p, "X.obj", undef, undef);
411 @objlist = split " ", $objstr;
412 @objlines = ("");
413 foreach $i (@objlist) {
414 if (length($objlines[$#objlines] . " $i") > 50) {
415 push @objlines, "";
416 }
417 $objlines[$#objlines] .= " $i";
418 }
419 $c0w = ($type eq "G") ? "c0w32" : "c0x32";
420 print "\techo $c0w + > $prog.rsp\n";
421 for ($i=0; $i<=$#objlines; $i++) {
422 $plus = ($i < $#objlines ? " +" : "");
423 print "\techo$objlines[$i]$plus >> $prog.rsp\n";
424 }
425 print "\techo $prog.exe >> $prog.rsp\n";
426 $objstr = &objects($p, "X.obj", "X.res", undef);
427 @libs = split " ", &objects($p, undef, undef, "X");
428 @libs = grep { !$stdlibs{$_} } @libs;
429 unshift @libs, "cw32", "import32";
430 $libstr = join ' ', @libs;
431 print "\techo nul,$libstr, >> $prog.rsp\n";
432 print "\techo " . &objects($p, undef, "X.res", undef) . " >> $prog.rsp\n";
433 print "\n";
434 }
435 foreach $d (&deps("X.obj", "X.res", "", "\\")) {
436 print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
437 "\n";
438 }
439 print
440 "\n".
441 "version.o: FORCE\n".
442 "# Hack to force version.o to be rebuilt always\n".
443 "FORCE:\n".
444 "\tbcc32 \$(FWHACK) \$(VER) \$(CFLAGS) /c version.c\n\n".
445 "clean:\n".
446 "\t-del *.obj\n".
447 "\t-del *.exe\n".
448 "\t-del *.res\n".
449 "\t-del *.pch\n".
450 "\t-del *.aps\n".
451 "\t-del *.il*\n".
452 "\t-del *.pdb\n".
453 "\t-del *.rsp\n".
454 "\t-del *.tds\n".
455 "\t-del *.\$\$\$\$\$\$\n";
456 select STDOUT; close OUT;
457
458 ##-- Visual C++ makefile
459 open OUT, ">Makefile.vc"; select OUT;
460 print
461 "# Makefile for PuTTY under Visual C.\n".
462 "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
463 "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
464 print $help;
465 print
466 "\n".
467 "# If you rename this file to `Makefile', you should change this line,\n".
468 "# so that the .rsp files still depend on the correct makefile.\n".
469 "MAKEFILE = Makefile.vc\n".
470 "\n".
471 "# C compilation flags\n".
472 "CFLAGS = /nologo /W3 /O1 /D_WINDOWS /D_WIN32_WINDOWS=0x401 /DWINVER=0x401\n".
473 "LFLAGS = /incremental:no /fixed\n".
474 "\n".
475 ".c.obj:\n".
476 "\tcl \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) /c \$*.c\n".
477 ".rc.res:\n".
478 "\trc \$(FWHACK) \$(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 \$*.rc\n".
479 "\n";
480 print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("GC"));
481 print "\n\n";
482 foreach $p (&prognames("GC")) {
483 ($prog, $type) = split ",", $p;
484 $objstr = &objects($p, "X.obj", "X.res", undef);
485 print &splitline("$prog.exe: " . $objstr . " $prog.rsp"), "\n";
486 print "\tlink \$(LFLAGS) -out:$prog.exe -map:$prog.map \@$prog.rsp\n\n";
487 }
488 foreach $p (&prognames("GC")) {
489 ($prog, $type) = split ",", $p;
490 print $prog, ".rsp: \$(MAKEFILE)\n";
491 $objstr = &objects($p, "X.obj", "X.res", "X.lib");
492 @objlist = split " ", $objstr;
493 @objlines = ("");
494 foreach $i (@objlist) {
495 if (length($objlines[$#objlines] . " $i") > 50) {
496 push @objlines, "";
497 }
498 $objlines[$#objlines] .= " $i";
499 }
500 $subsys = ($type eq "G") ? "windows" : "console";
501 print "\techo /nologo /subsystem:$subsys > $prog.rsp\n";
502 for ($i=0; $i<=$#objlines; $i++) {
503 print "\techo$objlines[$i] >> $prog.rsp\n";
504 }
505 print "\n";
506 }
507 foreach $d (&deps("X.obj", "X.res", "", "\\")) {
508 print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
509 "\n";
510 }
511 print
512 "\n".
513 "# Hack to force version.o to be rebuilt always\n".
514 "version.obj: *.c *.h *.rc\n".
515 "\tcl \$(FWHACK) \$(VER) \$(CFLAGS) /c version.c\n\n".
516 "clean: tidy\n".
517 "\t-del *.exe\n\n".
518 "tidy:\n".
519 "\t-del *.obj\n".
520 "\t-del *.res\n".
521 "\t-del *.pch\n".
522 "\t-del *.aps\n".
523 "\t-del *.ilk\n".
524 "\t-del *.pdb\n".
525 "\t-del *.rsp\n".
526 "\t-del *.dsp\n".
527 "\t-del *.dsw\n".
528 "\t-del *.ncb\n".
529 "\t-del *.opt\n".
530 "\t-del *.plg\n".
531 "\t-del *.map\n".
532 "\t-del *.idb\n".
533 "\t-del debug.log\n";
534 select STDOUT; close OUT;
535
536 ##-- X/GTK/Unix makefile
537 open OUT, ">unix/Makefile.gtk"; select OUT;
538 print
539 "# Makefile for PuTTY under X/GTK and Unix.\n".
540 "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
541 "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
542 # gcc command line option is -D not /D
543 ($_ = $help) =~ s/=\/D/=-D/gs;
544 print $_;
545 print
546 "\n".
547 "# You can define this path to point at your tools if you need to\n".
548 "# TOOLPATH = /opt/gcc/bin\n".
549 "CC = \$(TOOLPATH)cc\n".
550 "\n".
551 &splitline("CFLAGS = -O2 -Wall -Werror -g -I. -I.. -I../charset `gtk-config --cflags`")."\n".
552 "XLDFLAGS = `gtk-config --libs`\n".
553 "ULDFLAGS =#\n".
554 "INSTALL=install\n",
555 "INSTALL_PROGRAM=\$(INSTALL)\n",
556 "INSTALL_DATA=\$(INSTALL)\n",
557 "prefix=/usr/local\n",
558 "exec_prefix=\$(prefix)\n",
559 "bindir=\$(exec_prefix)/bin\n",
560 "mandir=\$(prefix)/man\n",
561 "man1dir=\$(mandir)/man1\n",
562 "\n".
563 ".SUFFIXES:\n".
564 "\n".
565 "%.o:\n".
566 "\t\$(CC) \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) -c \$<\n".
567 "\n";
568 print &splitline("all:" . join "", map { " $_" } &progrealnames("XU"));
569 print "\n\n";
570 foreach $p (&prognames("XU")) {
571 ($prog, $type) = split ",", $p;
572 $objstr = &objects($p, "X.o", undef, undef);
573 print &splitline($prog . ": " . $objstr), "\n";
574 $libstr = &objects($p, undef, undef, "-lX");
575 print &splitline("\t\$(CC)" . $mw . " \$(${type}LDFLAGS) -o \$@ " .
576 $objstr . " $libstr", 69), "\n\n";
577 }
578 foreach $d (&deps("X.o", undef, "../", "/")) {
579 print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
580 "\n";
581 }
582 print
583 "\n".
584 "version.o: FORCE;\n".
585 "# Hack to force version.o to be rebuilt always\n".
586 "FORCE:\n".
587 "\t\$(CC) \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) \$(VER) -c ../version.c\n".
588 "clean:\n".
589 "\trm -f *.o". (join "", map { " $_" } &progrealnames("XU")) . "\n".
590 "\n",
591 "install:\n",
592 map("\t\$(INSTALL_PROGRAM) -m 755 $_ \$(DESTDIR)\$(bindir)/$_\n", &progrealnames("XU")),
593 map("\t\$(INSTALL_DATA) -m 644 $_ \$(DESTDIR)\$(man1dir)/$_\n", &manpages("XU", "1")),
594 "\n",
595 "install-strip:\n",
596 "\t\$(MAKE) install INSTALL_PROGRAM=\"\$(INSTALL_PROGRAM) -s\"\n",
597 "\n";
598 select STDOUT; close OUT;
599
600 ##-- MPW Makefile
601 open OUT, ">mac/Makefile.mpw"; select OUT;
602 print <<END;
603 # Makefile for PuTTY under MPW.
604 #
605 # This file was created by `mkfiles.pl' from the `Recipe' file.
606 # DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.
607 END
608 # MPW command line option is -d not /D
609 ($_ = $help) =~ s/=\/D/=-d /gs;
610 print $_;
611 print <<END;
612
613 ROptions = `Echo "{VER}" | StreamEdit -e "1,\$ replace /=(\xc5)\xa81\xb0/ 'STR=\xb6\xb6\xb6\xb6\xb6"' \xa81 '\xb6\xb6\xb6\xb6\xb6"'"`
614
615 C_68K = {C}
616 C_CFM68K = {C}
617 C_PPC = {PPCC}
618 C_Carbon = {PPCC}
619
620 # -w 35 disables "unused parameter" warnings
621 COptions = -i : -i :: -i ::charset -w 35 -w err -proto strict -ansi on \xb6
622 -notOnce
623 COptions_68K = {COptions} -model far -opt time
624 # Enabling "-opt space" for CFM-68K gives me undefined references to
625 # _\$LDIVT and _\$LMODT.
626 COptions_CFM68K = {COptions} -model cfmSeg -opt time
627 COptions_PPC = {COptions} -opt size -traceback
628 COptions_Carbon = {COptions} -opt size -traceback -d TARGET_API_MAC_CARBON
629
630 Link_68K = ILink
631 Link_CFM68K = ILink
632 Link_PPC = PPCLink
633 Link_Carbon = PPCLink
634
635 LinkOptions = -c 'pTTY'
636 LinkOptions_68K = {LinkOptions} -br 68k -model far -compact
637 LinkOptions_CFM68K = {LinkOptions} -br 020 -model cfmseg -compact
638 LinkOptions_PPC = {LinkOptions}
639 LinkOptions_Carbon = -m __appstart -w {LinkOptions}
640
641 Libs_68K = "{CLibraries}StdCLib.far.o" \xb6
642 "{Libraries}MacRuntime.o" \xb6
643 "{Libraries}MathLib.far.o" \xb6
644 "{Libraries}IntEnv.far.o" \xb6
645 "{Libraries}Interface.o" \xb6
646 "{Libraries}Navigation.far.o" \xb6
647 "{Libraries}OpenTransport.o" \xb6
648 "{Libraries}OpenTransportApp.o" \xb6
649 "{Libraries}OpenTptInet.o" \xb6
650 "{Libraries}UnicodeConverterLib.far.o"
651
652 Libs_CFM = "{SharedLibraries}InterfaceLib" \xb6
653 "{SharedLibraries}StdCLib" \xb6
654 "{SharedLibraries}AppearanceLib" \xb6
655 -weaklib AppearanceLib \xb6
656 "{SharedLibraries}NavigationLib" \xb6
657 -weaklib NavigationLib \xb6
658 "{SharedLibraries}TextCommon" \xb6
659 -weaklib TextCommon \xb6
660 "{SharedLibraries}UnicodeConverter" \xb6
661 -weaklib UnicodeConverter
662
663 Libs_CFM68K = {Libs_CFM} \xb6
664 "{CFM68KLibraries}NuMacRuntime.o"
665
666 Libs_PPC = {Libs_CFM} \xb6
667 "{SharedLibraries}ControlsLib" \xb6
668 -weaklib ControlsLib \xb6
669 "{SharedLibraries}WindowsLib" \xb6
670 -weaklib WindowsLib \xb6
671 "{SharedLibraries}OpenTransportLib" \xb6
672 -weaklib OTClientLib \xb6
673 -weaklib OTClientUtilLib \xb6
674 "{SharedLibraries}OpenTptInternetLib" \xb6
675 -weaklib OTInetClientLib \xb6
676 "{PPCLibraries}StdCRuntime.o" \xb6
677 "{PPCLibraries}PPCCRuntime.o" \xb6
678 "{PPCLibraries}CarbonAccessors.o" \xb6
679 "{PPCLibraries}OpenTransportAppPPC.o" \xb6
680 "{PPCLibraries}OpenTptInetPPC.o"
681
682 Libs_Carbon = "{PPCLibraries}CarbonStdCLib.o" \xb6
683 "{PPCLibraries}StdCRuntime.o" \xb6
684 "{PPCLibraries}PPCCRuntime.o" \xb6
685 "{SharedLibraries}CarbonLib" \xb6
686 "{SharedLibraries}StdCLib"
687
688 END
689 print &splitline("all \xc4 " . join(" ", &progrealnames("M")), undef, "\xb6");
690 print "\n\n";
691 foreach $p (&prognames("M")) {
692 ($prog, $type) = split ",", $p;
693
694 print &splitline("$prog \xc4 $prog.68k $prog.ppc $prog.carbon",
695 undef, "\xb6"), "\n\n";
696
697 $rsrc = &objects($p, "", "X.rsrc", undef);
698
699 foreach $arch (qw(68K CFM68K PPC Carbon)) {
700 $objstr = &objects($p, "X.\L$arch\E.o", "", undef);
701 print &splitline("$prog.\L$arch\E \xc4 $objstr $rsrc", undef, "\xb6");
702 print "\n";
703 print &splitline("\tDuplicate -y $rsrc {Targ}", 69, "\xb6"), "\n";
704 print &splitline("\t{Link_$arch} -o {Targ} -fragname $prog " .
705 "{LinkOptions_$arch} " .
706 $objstr . " {Libs_$arch}", 69, "\xb6"), "\n";
707 print &splitline("\tSetFile -a BMi {Targ}", 69, "\xb6"), "\n\n";
708 }
709
710 }
711 foreach $d (&deps("", "X.rsrc", "::", ":")) {
712 next unless $d->{obj};
713 print &splitline(sprintf("%s \xc4 %s", $d->{obj}, join " ", @{$d->{deps}}),
714 undef, "\xb6"), "\n";
715 print "\tRez ", $d->{deps}->[0], " -o {Targ} {ROptions}\n\n";
716 }
717 foreach $arch (qw(68K CFM68K)) {
718 foreach $d (&deps("X.\L$arch\E.o", "", "::", ":")) {
719 next unless $d->{obj};
720 print &splitline(sprintf("%s \xc4 %s", $d->{obj},
721 join " ", @{$d->{deps}}),
722 undef, "\xb6"), "\n";
723 print "\t{C_$arch} ", $d->{deps}->[0],
724 " -o {Targ} {COptions_$arch}\n\n";
725 }
726 }
727 foreach $arch (qw(PPC Carbon)) {
728 foreach $d (&deps("X.\L$arch\E.o", "", "::", ":")) {
729 next unless $d->{obj};
730 print &splitline(sprintf("%s \xc4 %s", $d->{obj},
731 join " ", @{$d->{deps}}),
732 undef, "\xb6"), "\n";
733 # The odd stuff here seems to stop afpd getting confused.
734 print "\techo -n > {Targ}\n";
735 print "\tsetfile -t XCOF {Targ}\n";
736 print "\t{C_$arch} ", $d->{deps}->[0],
737 " -o {Targ} {COptions_$arch}\n\n";
738 }
739 }
740 select STDOUT; close OUT;