In SSH, we now send terminal speeds to the server when requesting a pty
[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
e3109730 12open 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};
7603011f 19
2dc6356a 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.
23eval 'chdir "charset"; require "sbcsgen.pl"; chdir ".."';
24
25@incdirs = ("", "charset/", "unix/", "mac/");
f7f27309 26
7603011f 27$help = ""; # list of newline-free lines of help text
c282cde3 28%programs = (); # maps prog name + type letter to listref of objects/resources
7603011f 29%groups = (); # maps group name to listref of objects/resources
3d541627 30
3d541627 31while (<IN>) {
7603011f 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
3d541627 36 chomp;
7603011f 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 ":") {
c282cde3 59 $listref = [];
7603011f 60 $prog = $_[0];
61 shift @objs; # eat the program name
3d541627 62 } else {
7603011f 63 die "$.: unrecognised line type\n";
3d541627 64 }
7603011f 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; }
a86a2725 71 } elsif (($i eq "[G]" or $i eq "[C]" or $i eq "[M]" or
32bb2723 72 $i eq "[X]" or $i eq "[U]") and defined $prog) {
c282cde3 73 $type = substr($i,1,1);
7603011f 74 } else {
75 push @$listref, $i;
76 }
77 }
c282cde3 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 }
7603011f 83 $lastlistref = $listref;
3d541627 84}
7603011f 85
3d541627 86close IN;
7603011f 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 = ();
94foreach $i (@prognames) {
c282cde3 95 ($prog, $type) = split ",", $i;
7603011f 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".
c88dc003 104 # Dependencies for "x.rsrc" start with "x.r".
7603011f 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;
c88dc003 111 } elsif ($j =~ /^(.*)\.rsrc$/) {
112 $file = "$1.r";
113 $depends{$j} = [$file];
114 push @scanlist, $file;
7603011f 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 = ();
140while (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} = [];
f7f27309 145 $dirfile = &findfile($file);
146 open IN, "$dirfile" or die "unable to open source file $file\n";
7603011f 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;
3d541627 160}
161
7603011f 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.
165foreach $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}};
3d541627 180}
181
7603011f 182# Utility routines while writing out the Makefiles.
183
f7f27309 184sub findfile {
185 my ($name) = @_;
186 my $dir, $i, $outdir = "";
b6b40d9b 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;
f7f27309 194 }
b6b40d9b 195 return $findfilecache{$name};
f7f27309 196}
197
7603011f 198sub objects {
f7f27309 199 my ($prog, $otmpl, $rtmpl, $ltmpl, $prefix, $dirsep) = @_;
7603011f 200 my @ret;
201 my ($i, $x, $y);
202 @ret = ();
203 foreach $i (@{$programs{$prog}}) {
f7f27309 204 $x = "";
c88dc003 205 if ($i =~ /^(.*)\.(res|rsrc)/) {
7603011f 206 $y = $1;
207 ($x = $rtmpl) =~ s/X/$y/;
7603011f 208 } elsif ($i =~ /^(.*)\.lib/) {
209 $y = $1;
210 ($x = $ltmpl) =~ s/X/$y/;
7603011f 211 } else {
212 ($x = $otmpl) =~ s/X/$i/;
7603011f 213 }
f7f27309 214 push @ret, $x if $x ne "";
7603011f 215 }
216 return join " ", @ret;
3d541627 217}
218
7603011f 219sub splitline {
a86a2725 220 my ($line, $width, $splitchar) = @_;
7603011f 221 my ($result, $len);
222 $len = (defined $width ? $width : 76);
a86a2725 223 $splitchar = (defined $splitchar ? $splitchar : '\\');
7603011f 224 while (length $line > $len) {
225 $line =~ /^(.{0,$len})\s(.*)$/ or $line =~ /^(.{$len,}?\s(.*)$/;
a86a2725 226 $result .= $1 . " ${splitchar}\n\t\t";
7603011f 227 $line = $2;
228 $len = 60;
229 }
230 return $result . $line;
231}
232
233sub deps {
a86a2725 234 my ($otmpl, $rtmpl, $prefix, $dirsep, $depchar, $splitchar) = @_;
7603011f 235 my ($i, $x, $y);
a86a2725 236 my @deps, @ret;
237 @ret = ();
238 $depchar ||= ':';
7603011f 239 foreach $i (sort keys %depends) {
c88dc003 240 if ($i =~ /^(.*)\.(res|rsrc)/) {
f7f27309 241 next if !defined $rtmpl;
7603011f 242 $y = $1;
243 ($x = $rtmpl) =~ s/X/$y/;
244 } else {
245 ($x = $otmpl) =~ s/X/$i/;
246 }
f7f27309 247 @deps = @{$depends{$i}};
248 @deps = map {
249 $_ = &findfile($_);
250 s/\//$dirsep/g;
251 $_ = $prefix . $_;
252 } @deps;
a86a2725 253 push @ret, {obj => $x, deps => [@deps]};
7603011f 254 }
a86a2725 255 return @ret;
3d541627 256}
257
f7f27309 258sub prognames {
259 my ($types) = @_;
c282cde3 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
270sub progrealnames {
271 my ($types) = @_;
272 my ($n, $prog, $type);
f7f27309 273 my @ret;
274 @ret = ();
275 foreach $n (@prognames) {
c282cde3 276 ($prog, $type) = split ",", $n;
277 push @ret, $prog if index($types, $type) >= 0;
f7f27309 278 }
279 return @ret;
280}
281
c76d309d 282sub 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
7603011f 292# Now we're ready to output the actual Makefiles.
293
3d541627 294##-- CygWin makefile
295open OUT, ">Makefile.cyg"; select OUT;
296print
7603011f 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";
3d541627 300# gcc command line option is -D not /D
7603011f 301($_ = $help) =~ s/=\/D/=-D/gs;
3d541627 302print $_;
303print
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".
3ea61c49 310"# Uncomment the following two lines to compile under Winelib\n".
311"# CC = winegcc\n".
312"# RC = wrc\n".
3d541627 313"# You may also need to tell windres where to find include files:\n".
314"# RCINC = --include-dir c:\\cygwin\\include\\\n".
315"\n".
7603011f 316&splitline("CFLAGS = -mno-cygwin -Wall -O2 -D_WINDOWS -DDEBUG -DWIN32S_COMPAT".
12ef307d 317 " -D_NO_OLDNAMES -DNO_MULTIMON -I.")."\n".
f730b86a 318"LDFLAGS = -mno-cygwin -s\n".
7603011f 319&splitline("RCFLAGS = \$(RCINC) --define WIN32=1 --define _WIN32=1".
320 " --define WINVER=0x0400 --define MINGW32_FIX=1")."\n".
3d541627 321"\n".
322".SUFFIXES:\n".
323"\n".
201e9294 324"%.o: %.c\n".
cf03419b 325"\t\$(CC) \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) -c \$<\n".
3d541627 326"\n".
f730b86a 327"%.res.o: %.rc\n".
6ed3635b 328"\t\$(RC) \$(FWHACK) \$(RCFL) \$(RCFLAGS) \$< \$\@\n".
3d541627 329"\n";
c282cde3 330print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("GC"));
14232990 331print "\n\n";
f7f27309 332foreach $p (&prognames("GC")) {
c282cde3 333 ($prog, $type) = split ",", $p;
7603011f 334 $objstr = &objects($p, "X.o", "X.res.o", undef);
c282cde3 335 print &splitline($prog . ".exe: " . $objstr), "\n";
336 my $mw = $type eq "G" ? " -mwindows" : "";
7603011f 337 $libstr = &objects($p, undef, undef, "-lX");
338 print &splitline("\t\$(CC)" . $mw . " \$(LDFLAGS) -o \$@ " .
caa8b7c8 339 "-Wl,-Map,$prog.map " .
7603011f 340 $objstr . " $libstr", 69), "\n\n";
3d541627 341}
a86a2725 342foreach $d (&deps("X.o", "X.res.o", "", "/")) {
343 print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
344 "\n";
345}
3d541627 346print
347"\n".
74091dff 348"version.o: FORCE;\n".
3d541627 349"# Hack to force version.o to be rebuilt always\n".
350"FORCE:\n".
7603011f 351"\t\$(CC) \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) \$(VER) -c version.c\n".
3d541627 352"clean:\n".
eb636ed6 353"\trm -f *.o *.exe *.res.o *.map\n".
3d541627 354"\n";
355select STDOUT; close OUT;
356
357##-- Borland makefile
7603011f 358%stdlibs = ( # Borland provides many Win32 API libraries intrinsically
359 "advapi32" => 1,
360 "comctl32" => 1,
361 "comdlg32" => 1,
362 "gdi32" => 1,
363 "imm32" => 1,
364 "shell32" => 1,
365 "user32" => 1,
366 "winmm" => 1,
367 "winspool" => 1,
368 "wsock32" => 1,
369);
3d541627 370open OUT, ">Makefile.bor"; select OUT;
371print
7603011f 372"# Makefile for PuTTY under Borland C.\n".
373"#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
374"# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
3d541627 375# bcc32 command line option is -D not /D
7603011f 376($_ = $help) =~ s/=\/D/=-D/gs;
3d541627 377print $_;
378print
379"\n".
380"# If you rename this file to `Makefile', you should change this line,\n".
381"# so that the .rsp files still depend on the correct makefile.\n".
382"MAKEFILE = Makefile.bor\n".
383"\n".
a401e5f3 384"# C compilation flags\n".
95912ebc 385"CFLAGS = -D_WINDOWS -DWINVER=0x0401\n".
a401e5f3 386"\n".
3d541627 387"# Get include directory for resource compiler\n".
388"!if !\$d(BCB)\n".
389"BCB = \$(MAKEDIR)\\..\n".
390"!endif\n".
391"\n".
392".c.obj:\n".
8aa5bfd9 393&splitline("\tbcc32 -w-aus -w-ccc -w-par -w-pia \$(COMPAT) \$(FWHACK)".
7603011f 394 " \$(XFLAGS) \$(CFLAGS) /c \$*.c",69)."\n".
3d541627 395".rc.res:\n".
7603011f 396&splitline("\tbrcc32 \$(FWHACK) \$(RCFL) -i \$(BCB)\\include -r".
397 " -DNO_WINRESRC_H -DWIN32 -D_WIN32 -DWINVER=0x0401 \$*.rc",69)."\n".
3d541627 398"\n";
c282cde3 399print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("GC"));
3d541627 400print "\n\n";
f7f27309 401foreach $p (&prognames("GC")) {
c282cde3 402 ($prog, $type) = split ",", $p;
7603011f 403 $objstr = &objects($p, "X.obj", "X.res", undef);
c282cde3 404 print &splitline("$prog.exe: " . $objstr . " $prog.rsp"), "\n";
405 my $ap = ($type eq "G") ? "-aa" : "-ap";
406 print "\tilink32 $ap -Gn -L\$(BCB)\\lib \@$prog.rsp\n\n";
3d541627 407}
f7f27309 408foreach $p (&prognames("GC")) {
c282cde3 409 ($prog, $type) = split ",", $p;
410 print $prog, ".rsp: \$(MAKEFILE)\n";
7603011f 411 $objstr = &objects($p, "X.obj", undef, undef);
412 @objlist = split " ", $objstr;
413 @objlines = ("");
414 foreach $i (@objlist) {
415 if (length($objlines[$#objlines] . " $i") > 50) {
416 push @objlines, "";
417 }
418 $objlines[$#objlines] .= " $i";
419 }
c282cde3 420 $c0w = ($type eq "G") ? "c0w32" : "c0x32";
421 print "\techo $c0w + > $prog.rsp\n";
a7088bde 422 for ($i=0; $i<=$#objlines; $i++) {
423 $plus = ($i < $#objlines ? " +" : "");
c282cde3 424 print "\techo$objlines[$i]$plus >> $prog.rsp\n";
3d541627 425 }
c282cde3 426 print "\techo $prog.exe >> $prog.rsp\n";
7603011f 427 $objstr = &objects($p, "X.obj", "X.res", undef);
428 @libs = split " ", &objects($p, undef, undef, "X");
429 @libs = grep { !$stdlibs{$_} } @libs;
6d2d5e8d 430 unshift @libs, "cw32", "import32";
431 $libstr = join ' ', @libs;
c282cde3 432 print "\techo nul,$libstr, >> $prog.rsp\n";
433 print "\techo " . &objects($p, undef, "X.res", undef) . " >> $prog.rsp\n";
3d541627 434 print "\n";
435}
a86a2725 436foreach $d (&deps("X.obj", "X.res", "", "\\")) {
437 print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
438 "\n";
439}
3d541627 440print
441"\n".
442"version.o: FORCE\n".
443"# Hack to force version.o to be rebuilt always\n".
444"FORCE:\n".
445"\tbcc32 \$(FWHACK) \$(VER) \$(CFLAGS) /c version.c\n\n".
446"clean:\n".
2e792012 447"\t-del *.obj\n".
448"\t-del *.exe\n".
449"\t-del *.res\n".
450"\t-del *.pch\n".
451"\t-del *.aps\n".
452"\t-del *.il*\n".
453"\t-del *.pdb\n".
454"\t-del *.rsp\n".
455"\t-del *.tds\n".
456"\t-del *.\$\$\$\$\$\$\n";
3d541627 457select STDOUT; close OUT;
7603011f 458
459##-- Visual C++ makefile
460open OUT, ">Makefile.vc"; select OUT;
461print
462"# Makefile for PuTTY under Visual C.\n".
463"#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
464"# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
465print $help;
466print
467"\n".
468"# If you rename this file to `Makefile', you should change this line,\n".
469"# so that the .rsp files still depend on the correct makefile.\n".
470"MAKEFILE = Makefile.vc\n".
471"\n".
472"# C compilation flags\n".
473"CFLAGS = /nologo /W3 /O1 /D_WINDOWS /D_WIN32_WINDOWS=0x401 /DWINVER=0x401\n".
474"LFLAGS = /incremental:no /fixed\n".
475"\n".
476".c.obj:\n".
477"\tcl \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) /c \$*.c\n".
478".rc.res:\n".
479"\trc \$(FWHACK) \$(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 \$*.rc\n".
480"\n";
c282cde3 481print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("GC"));
7603011f 482print "\n\n";
f7f27309 483foreach $p (&prognames("GC")) {
c282cde3 484 ($prog, $type) = split ",", $p;
7603011f 485 $objstr = &objects($p, "X.obj", "X.res", undef);
c282cde3 486 print &splitline("$prog.exe: " . $objstr . " $prog.rsp"), "\n";
487 print "\tlink \$(LFLAGS) -out:$prog.exe -map:$prog.map \@$prog.rsp\n\n";
7603011f 488}
f7f27309 489foreach $p (&prognames("GC")) {
c282cde3 490 ($prog, $type) = split ",", $p;
491 print $prog, ".rsp: \$(MAKEFILE)\n";
7603011f 492 $objstr = &objects($p, "X.obj", "X.res", "X.lib");
493 @objlist = split " ", $objstr;
494 @objlines = ("");
495 foreach $i (@objlist) {
496 if (length($objlines[$#objlines] . " $i") > 50) {
497 push @objlines, "";
498 }
499 $objlines[$#objlines] .= " $i";
500 }
c282cde3 501 $subsys = ($type eq "G") ? "windows" : "console";
502 print "\techo /nologo /subsystem:$subsys > $prog.rsp\n";
7603011f 503 for ($i=0; $i<=$#objlines; $i++) {
c282cde3 504 print "\techo$objlines[$i] >> $prog.rsp\n";
7603011f 505 }
506 print "\n";
507}
a86a2725 508foreach $d (&deps("X.obj", "X.res", "", "\\")) {
509 print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
510 "\n";
511}
7603011f 512print
513"\n".
514"# Hack to force version.o to be rebuilt always\n".
515"version.obj: *.c *.h *.rc\n".
516"\tcl \$(FWHACK) \$(VER) \$(CFLAGS) /c version.c\n\n".
517"clean: tidy\n".
518"\t-del *.exe\n\n".
519"tidy:\n".
520"\t-del *.obj\n".
521"\t-del *.res\n".
522"\t-del *.pch\n".
523"\t-del *.aps\n".
524"\t-del *.ilk\n".
525"\t-del *.pdb\n".
526"\t-del *.rsp\n".
527"\t-del *.dsp\n".
528"\t-del *.dsw\n".
529"\t-del *.ncb\n".
530"\t-del *.opt\n".
531"\t-del *.plg\n".
532"\t-del *.map\n".
533"\t-del *.idb\n".
534"\t-del debug.log\n";
535select STDOUT; close OUT;
f7f27309 536
58de2f3c 537##-- MSVC 6 Workspace and projects
538#
539# Note: All files created in this section are written in binary
540# mode, because although MSVC's command-line make can deal with
541# LF-only line endings, MSVC project files really _need_ to be
542# CRLF. Hence, in order for mkfiles.pl to generate usable project
543# files even when run from Unix, I make sure all files are binary
544# and explicitly write the CRLFs.
545#
546# Create directories if necessary
547mkdir 'MSVC'
548 if(! -d 'MSVC');
549chdir 'MSVC';
550@deps = &deps("X.obj", "X.res", "", "\\");
551%all_object_deps = map {$_->{obj} => $_->{deps}} @deps;
552# Create the project files
553# Get names of all Windows projects (GUI and console)
554my @prognames = &prognames("GC");
555foreach $progname (@prognames) {
556 create_project(\%all_object_deps, $progname);
557}
558# Create the workspace file
559open OUT, ">putty.dsw"; binmode OUT; select OUT;
560print
561"Microsoft Developer Studio Workspace File, Format Version 6.00\r\n".
562"# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\r\n".
563"\r\n".
564"###############################################################################\r\n".
565"\r\n";
566# List projects
567foreach $progname (@prognames) {
568 ($windows_project, $type) = split ",", $progname;
569 print "Project: \"$windows_project\"=\".\\$windows_project\\$windows_project.dsp\" - Package Owner=<4>\r\n";
570}
571print
572"\r\n".
573"Package=<5>\r\n".
574"{{{\r\n".
575"}}}\r\n".
576"\r\n".
577"Package=<4>\r\n".
578"{{{\r\n".
579"}}}\r\n".
580"\r\n".
581"###############################################################################\r\n".
582"\r\n".
583"Global:\r\n".
584"\r\n".
585"Package=<5>\r\n".
586"{{{\r\n".
587"}}}\r\n".
588"\r\n".
589"Package=<3>\r\n".
590"{{{\r\n".
591"}}}\r\n".
592"\r\n".
593"###############################################################################\r\n".
594"\r\n";
595select STDOUT; close OUT;
596chdir '..';
597
598sub create_project {
599 my ($all_object_deps, $progname) = @_;
600 # Construct program's dependency info
601 %seen_objects = ();
602 %lib_files = ();
603 %source_files = ();
604 %header_files = ();
605 %resource_files = ();
606 @object_files = split " ", &objects($progname, "X.obj", "X.res", "X.lib");
607 foreach $object_file (@object_files) {
608 next if defined $seen_objects{$object_file};
609 $seen_objects{$object_file} = 1;
610 if($object_file =~ /\.lib$/io) {
611 $lib_files{$object_file} = 1;
612 next;
613 }
614 $object_deps = $all_object_deps{$object_file};
615 foreach $object_dep (@$object_deps) {
616 if($object_dep =~ /\.c$/io) {
617 $source_files{$object_dep} = 1;
618 next;
619 }
620 if($object_dep =~ /\.h$/io) {
621 $header_files{$object_dep} = 1;
622 next;
623 }
624 if($object_dep =~ /\.(rc|ico)$/io) {
625 $resource_files{$object_dep} = 1;
626 next;
627 }
628 }
629 }
630 $libs = join " ", sort keys %lib_files;
631 @source_files = sort keys %source_files;
632 @header_files = sort keys %header_files;
633 @resources = sort keys %resource_files;
634 ($windows_project, $type) = split ",", $progname;
635 mkdir $windows_project
636 if(! -d $windows_project);
637 chdir $windows_project;
638 $subsys = ($type eq "G") ? "windows" : "console";
639 open OUT, ">$windows_project.dsp"; binmode OUT; select OUT;
640 print
641 "# Microsoft Developer Studio Project File - Name=\"$windows_project\" - Package Owner=<4>\r\n".
642 "# Microsoft Developer Studio Generated Build File, Format Version 6.00\r\n".
643 "# ** DO NOT EDIT **\r\n".
644 "\r\n".
645 "# TARGTYPE \"Win32 (x86) Application\" 0x0101\r\n".
646 "\r\n".
647 "CFG=$windows_project - Win32 Debug\r\n".
648 "!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r\n".
649 "!MESSAGE use the Export Makefile command and run\r\n".
650 "!MESSAGE \r\n".
651 "!MESSAGE NMAKE /f \"$windows_project.mak\".\r\n".
652 "!MESSAGE \r\n".
653 "!MESSAGE You can specify a configuration when running NMAKE\r\n".
654 "!MESSAGE by defining the macro CFG on the command line. For example:\r\n".
655 "!MESSAGE \r\n".
656 "!MESSAGE NMAKE /f \"$windows_project.mak\" CFG=\"$windows_project - Win32 Debug\"\r\n".
657 "!MESSAGE \r\n".
658 "!MESSAGE Possible choices for configuration are:\r\n".
659 "!MESSAGE \r\n".
660 "!MESSAGE \"$windows_project - Win32 Release\" (based on \"Win32 (x86) Application\")\r\n".
661 "!MESSAGE \"$windows_project - Win32 Debug\" (based on \"Win32 (x86) Application\")\r\n".
662 "!MESSAGE \r\n".
663 "\r\n".
664 "# Begin Project\r\n".
665 "# PROP AllowPerConfigDependencies 0\r\n".
666 "# PROP Scc_ProjName \"\"\r\n".
667 "# PROP Scc_LocalPath \"\"\r\n".
668 "CPP=cl.exe\r\n".
669 "MTL=midl.exe\r\n".
670 "RSC=rc.exe\r\n".
671 "\r\n".
672 "!IF \"\$(CFG)\" == \"$windows_project - Win32 Release\"\r\n".
673 "\r\n".
674 "# PROP BASE Use_MFC 0\r\n".
675 "# PROP BASE Use_Debug_Libraries 0\r\n".
676 "# PROP BASE Output_Dir \"Release\"\r\n".
677 "# PROP BASE Intermediate_Dir \"Release\"\r\n".
678 "# PROP BASE Target_Dir \"\"\r\n".
679 "# PROP Use_MFC 0\r\n".
680 "# PROP Use_Debug_Libraries 0\r\n".
681 "# PROP Output_Dir \"Release\"\r\n".
682 "# PROP Intermediate_Dir \"Release\"\r\n".
683 "# PROP Ignore_Export_Lib 0\r\n".
684 "# PROP Target_Dir \"\"\r\n".
685 "# ADD BASE CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_WINDOWS\" /D \"_MBCS\" /YX /FD /c\r\n".
686 "# ADD CPP /nologo /W3 /GX /O2 /D \"WIN32\" /D \"NDEBUG\" /D \"_WINDOWS\" /D \"_MBCS\" /YX /FD /c\r\n".
687 "# ADD BASE MTL /nologo /D \"NDEBUG\" /mktyplib203 /win32\r\n".
688 "# ADD MTL /nologo /D \"NDEBUG\" /mktyplib203 /win32\r\n".
689 "# ADD BASE RSC /l 0x809 /d \"NDEBUG\"\r\n".
690 "# ADD RSC /l 0x809 /d \"NDEBUG\"\r\n".
691 "BSC32=bscmake.exe\r\n".
692 "# ADD BASE BSC32 /nologo\r\n".
693 "# ADD BSC32 /nologo\r\n".
694 "LINK32=link.exe\r\n".
695 "# 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".
696 "# ADD LINK32 $libs /nologo /subsystem:$subsys /machine:I386\r\n".
697 "# SUBTRACT LINK32 /pdb:none\r\n".
698 "\r\n".
699 "!ELSEIF \"\$(CFG)\" == \"$windows_project - Win32 Debug\"\r\n".
700 "\r\n".
701 "# PROP BASE Use_MFC 0\r\n".
702 "# PROP BASE Use_Debug_Libraries 1\r\n".
703 "# PROP BASE Output_Dir \"Debug\"\r\n".
704 "# PROP BASE Intermediate_Dir \"Debug\"\r\n".
705 "# PROP BASE Target_Dir \"\"\r\n".
706 "# PROP Use_MFC 0\r\n".
707 "# PROP Use_Debug_Libraries 1\r\n".
708 "# PROP Output_Dir \"Debug\"\r\n".
709 "# PROP Intermediate_Dir \"Debug\"\r\n".
710 "# PROP Ignore_Export_Lib 0\r\n".
711 "# PROP Target_Dir \"\"\r\n".
712 "# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_WINDOWS\" /D \"_MBCS\" /YX /FD /GZ /c\r\n".
713 "# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D \"WIN32\" /D \"_DEBUG\" /D \"_WINDOWS\" /D \"_MBCS\" /YX /FD /GZ /c\r\n".
714 "# ADD BASE MTL /nologo /D \"_DEBUG\" /mktyplib203 /win32\r\n".
715 "# ADD MTL /nologo /D \"_DEBUG\" /mktyplib203 /win32\r\n".
716 "# ADD BASE RSC /l 0x809 /d \"_DEBUG\"\r\n".
717 "# ADD RSC /l 0x809 /d \"_DEBUG\"\r\n".
718 "BSC32=bscmake.exe\r\n".
719 "# ADD BASE BSC32 /nologo\r\n".
720 "# ADD BSC32 /nologo\r\n".
721 "LINK32=link.exe\r\n".
722 "# 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".
723 "# ADD LINK32 $libs /nologo /subsystem:$subsys /debug /machine:I386 /pdbtype:sept\r\n".
724 "# SUBTRACT LINK32 /pdb:none\r\n".
725 "\r\n".
726 "!ENDIF \r\n".
727 "\r\n".
728 "# Begin Target\r\n".
729 "\r\n".
730 "# Name \"$windows_project - Win32 Release\"\r\n".
731 "# Name \"$windows_project - Win32 Debug\"\r\n".
732 "# Begin Group \"Source Files\"\r\n".
733 "\r\n".
734 "# PROP Default_Filter \"cpp;c;cxx;rc;def;r;odl;idl;hpj;bat\"\r\n";
735 foreach $source_file (@source_files) {
736 print
737 "# Begin Source File\r\n".
738 "\r\n".
739 "SOURCE=..\\..\\$source_file\r\n";
740 if($source_file =~ /ssh\.c/io) {
741 # Disable 'Edit and continue' as Visual Studio can't handle the macros
742 print
743 "\r\n".
744 "!IF \"\$(CFG)\" == \"$windows_project - Win32 Release\"\r\n".
745 "\r\n".
746 "!ELSEIF \"\$(CFG)\" == \"$windows_project - Win32 Debug\"\r\n".
747 "\r\n".
748 "# ADD CPP /Zi\r\n".
749 "\r\n".
750 "!ENDIF \r\n".
751 "\r\n";
752 }
753 print "# End Source File\r\n";
754 }
755 print
756 "# End Group\r\n".
757 "# Begin Group \"Header Files\"\r\n".
758 "\r\n".
759 "# PROP Default_Filter \"h;hpp;hxx;hm;inl\"\r\n";
760 foreach $header_file (@header_files) {
761 print
762 "# Begin Source File\r\n".
763 "\r\n".
764 "SOURCE=..\\..\\$header_file\r\n".
765 "# End Source File\r\n";
766 }
767 print
768 "# End Group\r\n".
769 "# Begin Group \"Resource Files\"\r\n".
770 "\r\n".
771 "# PROP Default_Filter \"ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe\"\r\n";
772 foreach $resource_file (@resources) {
773 print
774 "# Begin Source File\r\n".
775 "\r\n".
776 "SOURCE=..\\..\\$resource_file\r\n".
777 "# End Source File\r\n";
778 }
779 print
780 "# End Group\r\n".
781 "# End Target\r\n".
782 "# End Project\r\n";
783 select STDOUT; close OUT;
784 chdir '..';
785 }
786
f7f27309 787##-- X/GTK/Unix makefile
788open OUT, ">unix/Makefile.gtk"; select OUT;
789print
790"# Makefile for PuTTY under X/GTK and Unix.\n".
791"#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
792"# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
793# gcc command line option is -D not /D
794($_ = $help) =~ s/=\/D/=-D/gs;
795print $_;
796print
797"\n".
798"# You can define this path to point at your tools if you need to\n".
799"# TOOLPATH = /opt/gcc/bin\n".
800"CC = \$(TOOLPATH)cc\n".
801"\n".
7ffdbc1a 802&splitline("CFLAGS = -O2 -Wall -Werror -g -I. -I.. -I../charset `gtk-config --cflags`")."\n".
32bb2723 803"XLDFLAGS = `gtk-config --libs`\n".
804"ULDFLAGS =#\n".
c76d309d 805"INSTALL=install\n",
806"INSTALL_PROGRAM=\$(INSTALL)\n",
807"INSTALL_DATA=\$(INSTALL)\n",
808"prefix=/usr/local\n",
809"exec_prefix=\$(prefix)\n",
810"bindir=\$(exec_prefix)/bin\n",
811"mandir=\$(prefix)/man\n",
812"man1dir=\$(mandir)/man1\n",
f7f27309 813"\n".
814".SUFFIXES:\n".
815"\n".
1709795f 816"%.o:\n".
f7f27309 817"\t\$(CC) \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) -c \$<\n".
818"\n";
32bb2723 819print &splitline("all:" . join "", map { " $_" } &progrealnames("XU"));
f7f27309 820print "\n\n";
32bb2723 821foreach $p (&prognames("XU")) {
c282cde3 822 ($prog, $type) = split ",", $p;
f7f27309 823 $objstr = &objects($p, "X.o", undef, undef);
c282cde3 824 print &splitline($prog . ": " . $objstr), "\n";
f7f27309 825 $libstr = &objects($p, undef, undef, "-lX");
32bb2723 826 print &splitline("\t\$(CC)" . $mw . " \$(${type}LDFLAGS) -o \$@ " .
f7f27309 827 $objstr . " $libstr", 69), "\n\n";
828}
a86a2725 829foreach $d (&deps("X.o", undef, "../", "/")) {
830 print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
831 "\n";
832}
f7f27309 833print
834"\n".
835"version.o: FORCE;\n".
836"# Hack to force version.o to be rebuilt always\n".
837"FORCE:\n".
3a0e1b79 838"\tif test -z \"\$(VER)\" && (cd ..; md5sum -c manifest); then \\\n".
839"\t\t\$(CC) \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) `cat ../version.def` -c ../version.c; \\\n".
840"\telse \\\n".
841"\t\t\$(CC) \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) \$(VER) -c ../version.c; \\\n".
842"\tfi\n".
f7f27309 843"clean:\n".
32bb2723 844"\trm -f *.o". (join "", map { " $_" } &progrealnames("XU")) . "\n".
c76d309d 845"\n",
846"install:\n",
7eea9cf8 847map("\t\$(INSTALL_PROGRAM) -m 755 $_ \$(DESTDIR)\$(bindir)/$_\n", &progrealnames("XU")),
ec7fc08d 848map("\t\$(INSTALL_DATA) -m 644 ../doc/$_ \$(DESTDIR)\$(man1dir)/$_\n", &manpages("XU", "1")),
c76d309d 849"\n",
850"install-strip:\n",
851"\t\$(MAKE) install INSTALL_PROGRAM=\"\$(INSTALL_PROGRAM) -s\"\n",
f7f27309 852"\n";
853select STDOUT; close OUT;
a86a2725 854
855##-- MPW Makefile
856open OUT, ">mac/Makefile.mpw"; select OUT;
857print <<END;
858# Makefile for PuTTY under MPW.
859#
860# This file was created by `mkfiles.pl' from the `Recipe' file.
861# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.
862END
863# MPW command line option is -d not /D
864($_ = $help) =~ s/=\/D/=-d /gs;
865print $_;
866print <<END;
867
2afa5f5d 868ROptions = `Echo "{VER}" | StreamEdit -e "1,\$ replace /=(\xc5)\xa81\xb0/ 'STR=\xb6\xb6\xb6\xb6\xb6"' \xa81 '\xb6\xb6\xb6\xb6\xb6"'"`
869
b941ca10 870C_68K = {C}
871C_CFM68K = {C}
872C_PPC = {PPCC}
873C_Carbon = {PPCC}
874
f8422c0b 875# -w 35 disables "unused parameter" warnings
1ad5fcb0 876COptions = -i : -i :: -i ::charset -w 35 -w err -proto strict -ansi on \xb6
877 -notOnce
084f31bc 878COptions_68K = {COptions} -model far -opt time
c1324500 879# Enabling "-opt space" for CFM-68K gives me undefined references to
b941ca10 880# _\$LDIVT and _\$LMODT.
c1324500 881COptions_CFM68K = {COptions} -model cfmSeg -opt time
7bc30e49 882COptions_PPC = {COptions} -opt size -traceback
883COptions_Carbon = {COptions} -opt size -traceback -d TARGET_API_MAC_CARBON
f8422c0b 884
b941ca10 885Link_68K = ILink
886Link_CFM68K = ILink
887Link_PPC = PPCLink
888Link_Carbon = PPCLink
889
904713b3 890LinkOptions = -c 'pTTY'
f8422c0b 891LinkOptions_68K = {LinkOptions} -br 68k -model far -compact
c1324500 892LinkOptions_CFM68K = {LinkOptions} -br 020 -model cfmseg -compact
f8422c0b 893LinkOptions_PPC = {LinkOptions}
9098d00a 894LinkOptions_Carbon = -m __appstart -w {LinkOptions}
a86a2725 895
728c2c88 896Libs_68K = "{CLibraries}StdCLib.far.o" \xb6
a86a2725 897 "{Libraries}MacRuntime.o" \xb6
898 "{Libraries}MathLib.far.o" \xb6
728c2c88 899 "{Libraries}IntEnv.far.o" \xb6
a86a2725 900 "{Libraries}Interface.o" \xb6
9ef3c1ca 901 "{Libraries}Navigation.far.o" \xb6
27a3458f 902 "{Libraries}OpenTransport.o" \xb6
903 "{Libraries}OpenTransportApp.o" \xb6
904 "{Libraries}OpenTptInet.o" \xb6
8768ce31 905 "{Libraries}UnicodeConverterLib.far.o"
a86a2725 906
f8422c0b 907Libs_CFM = "{SharedLibraries}InterfaceLib" \xb6
a86a2725 908 "{SharedLibraries}StdCLib" \xb6
a86a2725 909 "{SharedLibraries}AppearanceLib" \xb6
910 -weaklib AppearanceLib \xb6
9ef3c1ca 911 "{SharedLibraries}NavigationLib" \xb6
912 -weaklib NavigationLib \xb6
f8422c0b 913 "{SharedLibraries}TextCommon" \xb6
914 -weaklib TextCommon \xb6
915 "{SharedLibraries}UnicodeConverter" \xb6
916 -weaklib UnicodeConverter
917
c1324500 918Libs_CFM68K = {Libs_CFM} \xb6
eb6d356b 919 "{CFM68KLibraries}NuMacRuntime.o"
c1324500 920
f8422c0b 921Libs_PPC = {Libs_CFM} \xb6
1fc898ea 922 "{SharedLibraries}ControlsLib" \xb6
923 -weaklib ControlsLib \xb6
924 "{SharedLibraries}WindowsLib" \xb6
925 -weaklib WindowsLib \xb6
27a3458f 926 "{SharedLibraries}OpenTransportLib" \xb6
927 -weaklib OTClientLib \xb6
928 -weaklib OTClientUtilLib \xb6
27a3458f 929 "{SharedLibraries}OpenTptInternetLib" \xb6
930 -weaklib OTInetClientLib \xb6
a86a2725 931 "{PPCLibraries}StdCRuntime.o" \xb6
932 "{PPCLibraries}PPCCRuntime.o" \xb6
27a3458f 933 "{PPCLibraries}CarbonAccessors.o" \xb6
934 "{PPCLibraries}OpenTransportAppPPC.o" \xb6
935 "{PPCLibraries}OpenTptInetPPC.o"
a86a2725 936
9098d00a 937Libs_Carbon = "{PPCLibraries}CarbonStdCLib.o" \xb6
938 "{PPCLibraries}StdCRuntime.o" \xb6
939 "{PPCLibraries}PPCCRuntime.o" \xb6
940 "{SharedLibraries}CarbonLib" \xb6
941 "{SharedLibraries}StdCLib"
d37a507a 942
a86a2725 943END
944print &splitline("all \xc4 " . join(" ", &progrealnames("M")), undef, "\xb6");
945print "\n\n";
946foreach $p (&prognames("M")) {
947 ($prog, $type) = split ",", $p;
f8422c0b 948
b7bd2131 949 print &splitline("$prog \xc4 $prog.68k $prog.ppc $prog.carbon",
c1324500 950 undef, "\xb6"), "\n\n";
f8422c0b 951
c88dc003 952 $rsrc = &objects($p, "", "X.rsrc", undef);
953
fa8ebf26 954 foreach $arch (qw(68K CFM68K PPC Carbon)) {
b941ca10 955 $objstr = &objects($p, "X.\L$arch\E.o", "", undef);
956 print &splitline("$prog.\L$arch\E \xc4 $objstr $rsrc", undef, "\xb6");
957 print "\n";
958 print &splitline("\tDuplicate -y $rsrc {Targ}", 69, "\xb6"), "\n";
904713b3 959 print &splitline("\t{Link_$arch} -o {Targ} -fragname $prog " .
960 "{LinkOptions_$arch} " .
b941ca10 961 $objstr . " {Libs_$arch}", 69, "\xb6"), "\n";
962 print &splitline("\tSetFile -a BMi {Targ}", 69, "\xb6"), "\n\n";
963 }
964
a86a2725 965}
c88dc003 966foreach $d (&deps("", "X.rsrc", "::", ":")) {
967 next unless $d->{obj};
968 print &splitline(sprintf("%s \xc4 %s", $d->{obj}, join " ", @{$d->{deps}}),
969 undef, "\xb6"), "\n";
970 print "\tRez ", $d->{deps}->[0], " -o {Targ} {ROptions}\n\n";
a86a2725 971}
fa8ebf26 972foreach $arch (qw(68K CFM68K)) {
b941ca10 973 foreach $d (&deps("X.\L$arch\E.o", "", "::", ":")) {
974 next unless $d->{obj};
975 print &splitline(sprintf("%s \xc4 %s", $d->{obj},
976 join " ", @{$d->{deps}}),
977 undef, "\xb6"), "\n";
978 print "\t{C_$arch} ", $d->{deps}->[0],
979 " -o {Targ} {COptions_$arch}\n\n";
980 }
a86a2725 981}
fa8ebf26 982foreach $arch (qw(PPC Carbon)) {
b941ca10 983 foreach $d (&deps("X.\L$arch\E.o", "", "::", ":")) {
984 next unless $d->{obj};
985 print &splitline(sprintf("%s \xc4 %s", $d->{obj},
986 join " ", @{$d->{deps}}),
987 undef, "\xb6"), "\n";
988 # The odd stuff here seems to stop afpd getting confused.
989 print "\techo -n > {Targ}\n";
990 print "\tsetfile -t XCOF {Targ}\n";
991 print "\t{C_$arch} ", $d->{deps}->[0],
992 " -o {Targ} {COptions_$arch}\n\n";
993 }
d37a507a 994}
a86a2725 995select STDOUT; close OUT;
4e95095a 996
997##-- lcc makefile
998open OUT, ">Makefile.lcc"; select OUT;
999print
1000"# Makefile for PuTTY under lcc.\n".
1001"#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
1002"# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
1003# lcc command line option is -D not /D
1004($_ = $help) =~ s/=\/D/=-D/gs;
1005print $_;
1006print
1007"\n".
1008"# If you rename this file to `Makefile', you should change this line,\n".
1009"# so that the .rsp files still depend on the correct makefile.\n".
1010"MAKEFILE = Makefile.lcc\n".
1011"\n".
1012"# C compilation flags\n".
1013"CFLAGS = -D_WINDOWS\n".
1014"\n".
1015"# Get include directory for resource compiler\n".
1016"\n".
1017".c.obj:\n".
1018&splitline("\tlcc -O -p6 \$(COMPAT) \$(FWHACK)".
1019 " \$(XFLAGS) \$(CFLAGS) \$*.c",69)."\n".
1020".rc.res:\n".
1021&splitline("\tlrc \$(FWHACK) \$(RCFL) -r \$*.rc",69)."\n".
1022"\n";
1023print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("GC"));
1024print "\n\n";
1025foreach $p (&prognames("GC")) {
1026 ($prog, $type) = split ",", $p;
1027 $objstr = &objects($p, "X.obj", "X.res", undef);
1028 print &splitline("$prog.exe: " . $objstr ), "\n";
1029 $subsystemtype = undef;
1030 if ($prog eq "pageant" || $prog eq "putty" ||$prog eq "puttygen" || $prog eq "puttytel") {
1031 $subsystemtype = "-subsystem windows"; }
1032 my $libss = "shell32.lib wsock32.lib ws2_32.lib winspool.lib winmm.lib imm32.lib";
1033 print &splitline("\tlcclnk $subsystemtype -o $prog.exe $objstr $libss");
1034 print "\n\n";
1035}
1036
1037
1038foreach $d (&deps("X.obj", "X.res", "", "\\")) {
1039 print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
1040 "\n";
1041}
1042print
1043"\n".
1044"version.o: FORCE\n".
1045"# Hack to force version.o to be rebuilt always\n".
1046"FORCE:\n".
1047"\tlcc \$(FWHACK) \$(VER) \$(CFLAGS) /c version.c\n\n".
1048"clean:\n".
1049"\t-del *.obj\n".
1050"\t-del *.exe\n".
1051"\t-del *.res\n";
1052
1053select STDOUT; close OUT;
1054