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