Colin Watson reports a strange problem whereby krb5-config
[u/mdw/putty] / mkfiles.pl
CommitLineData
3d541627 1#!/usr/bin/env perl
2#
e35fb54b 3# Cross-platform Makefile generator.
7603011f 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
cdd310bb 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.
976374cd 15#
16# FIXME: no attempt made to handle !forceobj in the project files.
cdd310bb 17
f7f27309 18use FileHandle;
e35fb54b 19use Cwd;
f7f27309 20
e3109730 21open 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};
7603011f 28
2dc6356a 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.
32eval 'chdir "charset"; require "sbcsgen.pl"; chdir ".."';
33
cdd310bb 34@srcdirs = ("./");
f7f27309 35
e35fb54b 36$divert = undef; # ref to scalar in which text is currently being put
7603011f 37$help = ""; # list of newline-free lines of help text
e35fb54b 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
c282cde3 41%programs = (); # maps prog name + type letter to listref of objects/resources
7603011f 42%groups = (); # maps group name to listref of objects/resources
3d541627 43
3d541627 44while (<IN>) {
7603011f 45 # Skip comments (unless the comments belong, for example because
e35fb54b 46 # they're part of a diversion).
47 next if /^\s*#/ and !defined $divert;
7603011f 48
3d541627 49 chomp;
7603011f 50 split;
e35fb54b 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; }
cdd310bb 54 if ($_[0] eq "!srcdir") { push @srcdirs, $_[1]; next; }
e35fb54b 55 if ($_[0] eq "!makefile" and &mfval($_[1])) { $makefiles{$_[1]}=$_[2]; next;}
6da41155 56 if ($_[0] eq "!specialobj" and &mfval($_[1])) { $specialobj{$_[1]}->{$_[2]} = 1; next;}
976374cd 57 if ($_[0] eq "!forceobj") { $forceobj{$_[1]} = 1; next; }
e35fb54b 58 if ($_[0] eq "!begin") {
59 if (&mfval($_[1])) {
77603464 60 $sect = $_[2] ? $_[2] : "end";
61 $divert = \($makefile_extra{$_[1]}->{$sect});
e35fb54b 62 } else {
63 $divert = \$dummy;
64 }
65 next;
66 }
77603464 67 # If we're gathering help/verbatim text, keep doing so.
e35fb54b 68 if (defined $divert) { ${$divert} .= "$_\n"; next; }
7603011f 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 ":") {
c282cde3 86 $listref = [];
7603011f 87 $prog = $_[0];
88 shift @objs; # eat the program name
3d541627 89 } else {
7603011f 90 die "$.: unrecognised line type\n";
3d541627 91 }
7603011f 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; }
a86a2725 98 } elsif (($i eq "[G]" or $i eq "[C]" or $i eq "[M]" or
1ddda1ca 99 $i eq "[X]" or $i eq "[U]" or $i eq "[MX]") and defined $prog) {
100 $type = substr($i,1,(length $i)-2);
7603011f 101 } else {
102 push @$listref, $i;
103 }
104 }
c282cde3 105 if ($prog and $type) {
106 die "multiple program entries for $prog [$type]\n"
e35fb54b 107 if defined $programs{$prog . "," . $type};
c282cde3 108 $programs{$prog . "," . $type} = $listref;
109 }
7603011f 110 $lastlistref = $listref;
3d541627 111}
7603011f 112
3d541627 113close IN;
7603011f 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 = ();
121foreach $i (@prognames) {
c282cde3 122 ($prog, $type) = split ",", $i;
7603011f 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) {
1ddda1ca 129 # Dependencies for "x" start with "x.c" or "x.m" (depending on
130 # which one exists).
7603011f 131 # Dependencies for "x.res" start with "x.rc".
c88dc003 132 # Dependencies for "x.rsrc" start with "x.r".
7603011f 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;
c88dc003 139 } elsif ($j =~ /^(.*)\.rsrc$/) {
140 $file = "$1.r";
141 $depends{$j} = [$file];
142 push @scanlist, $file;
1ddda1ca 143 } elsif ($j !~ /\./) {
7603011f 144 $file = "$j.c";
1ddda1ca 145 $file = "$j.m" unless &findfile($file);
7603011f 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#
0f2ab471 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.
7603011f 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 = ();
169while (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} = [];
f7f27309 174 $dirfile = &findfile($file);
175 open IN, "$dirfile" or die "unable to open source file $file\n";
7603011f 176 while (<IN>) {
177 chomp;
178 /^\s*#include\s+\"([^\"]+)\"/ and do {
179 push @{$further{$file}}, $1;
180 push @scanlist, $1;
181 next;
182 };
0f2ab471 183 /(RT_MANIFEST|ICON)\s+\"([^\"]+)\"\s*$/ and do {
184 push @{$further{$file}}, $2;
7603011f 185 next;
186 }
187 }
188 close IN;
3d541627 189}
190
7603011f 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.
194foreach $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;
e35fb54b 203 push @{$depends{$i}}, $j;
204 push @scanlist, $j;
7603011f 205 }
206 }
207 }
208# printf "%s: %s\n", $i, join ' ',@{$depends{$i}};
3d541627 209}
210
e35fb54b 211# Validation of input.
212
213sub 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 $_ }
985b6440 218 ("vc","vcproj","cygwin","borland","lcc","devcppproj","gtk","ac","mpw",
219 "osx",)) {
e35fb54b 220 return 1;
221 }
222 warn "$.:unknown makefile type '$type'\n";
223 return 0;
224}
225
7603011f 226# Utility routines while writing out the Makefiles.
227
cdd310bb 228sub dirpfx {
229 my ($path) = shift @_;
230 my ($sep) = shift @_;
231 my $ret = "", $i;
6da41155 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 }
cdd310bb 240 $ret .= "..$sep";
241 }
242 return $ret;
243}
244
f7f27309 245sub findfile {
246 my ($name) = @_;
1ddda1ca 247 my $dir;
248 my $i;
249 my $outdir = undef;
b6b40d9b 250 unless (defined $findfilecache{$name}) {
251 $i = 0;
cdd310bb 252 foreach $dir (@srcdirs) {
b6b40d9b 253 $outdir = $dir, $i++ if -f "$dir$name";
c0124448 254 $outdir=~s/^\.\///;
b6b40d9b 255 }
256 die "multiple instances of source file $name\n" if $i > 1;
1ddda1ca 257 $findfilecache{$name} = (defined $outdir ? $outdir . $name : undef);
f7f27309 258 }
b6b40d9b 259 return $findfilecache{$name};
f7f27309 260}
261
7603011f 262sub objects {
f7f27309 263 my ($prog, $otmpl, $rtmpl, $ltmpl, $prefix, $dirsep) = @_;
7603011f 264 my @ret;
265 my ($i, $x, $y);
266 @ret = ();
267 foreach $i (@{$programs{$prog}}) {
f7f27309 268 $x = "";
c88dc003 269 if ($i =~ /^(.*)\.(res|rsrc)/) {
7603011f 270 $y = $1;
271 ($x = $rtmpl) =~ s/X/$y/;
7603011f 272 } elsif ($i =~ /^(.*)\.lib/) {
273 $y = $1;
274 ($x = $ltmpl) =~ s/X/$y/;
1ddda1ca 275 } elsif ($i !~ /\./) {
7603011f 276 ($x = $otmpl) =~ s/X/$i/;
7603011f 277 }
f7f27309 278 push @ret, $x if $x ne "";
7603011f 279 }
280 return join " ", @ret;
3d541627 281}
282
1ddda1ca 283sub 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
7603011f 296sub splitline {
a86a2725 297 my ($line, $width, $splitchar) = @_;
7603011f 298 my ($result, $len);
299 $len = (defined $width ? $width : 76);
a86a2725 300 $splitchar = (defined $splitchar ? $splitchar : '\\');
7603011f 301 while (length $line > $len) {
302 $line =~ /^(.{0,$len})\s(.*)$/ or $line =~ /^(.{$len,}?\s(.*)$/;
b76d219a 303 $result .= $1;
304 $result .= " ${splitchar}\n\t\t" if $2 ne '';
7603011f 305 $line = $2;
306 $len = 60;
307 }
308 return $result . $line;
309}
310
311sub deps {
6da41155 312 my ($otmpl, $rtmpl, $prefix, $dirsep, $mftyp, $depchar, $splitchar) = @_;
7603011f 313 my ($i, $x, $y);
a86a2725 314 my @deps, @ret;
315 @ret = ();
316 $depchar ||= ':';
7603011f 317 foreach $i (sort keys %depends) {
6da41155 318 next if $specialobj{$mftyp}->{$i};
c88dc003 319 if ($i =~ /^(.*)\.(res|rsrc)/) {
f7f27309 320 next if !defined $rtmpl;
7603011f 321 $y = $1;
322 ($x = $rtmpl) =~ s/X/$y/;
323 } else {
324 ($x = $otmpl) =~ s/X/$i/;
325 }
f7f27309 326 @deps = @{$depends{$i}};
327 @deps = map {
328 $_ = &findfile($_);
329 s/\//$dirsep/g;
330 $_ = $prefix . $_;
331 } @deps;
976374cd 332 push @ret, {obj => $x, obj_orig => $i, deps => [@deps]};
7603011f 333 }
a86a2725 334 return @ret;
3d541627 335}
336
f7f27309 337sub prognames {
338 my ($types) = @_;
c282cde3 339 my ($n, $prog, $type);
340 my @ret;
341 @ret = ();
342 foreach $n (@prognames) {
343 ($prog, $type) = split ",", $n;
1ddda1ca 344 push @ret, $n if index(":$types:", ":$type:") >= 0;
c282cde3 345 }
346 return @ret;
347}
348
349sub progrealnames {
350 my ($types) = @_;
351 my ($n, $prog, $type);
f7f27309 352 my @ret;
353 @ret = ();
354 foreach $n (@prognames) {
c282cde3 355 ($prog, $type) = split ",", $n;
1ddda1ca 356 push @ret, $prog if index(":$types:", ":$type:") >= 0;
f7f27309 357 }
358 return @ret;
359}
360
c76d309d 361sub manpages {
362 my ($types,$suffix) = @_;
363
364 # assume that all UNIX programs have a man page
1ddda1ca 365 if($suffix eq "1" && $types =~ /:X:/) {
c76d309d 366 return map("$_.1", &progrealnames($types));
367 }
368 return ();
369}
370
7603011f 371# Now we're ready to output the actual Makefiles.
372
e35fb54b 373if (defined $makefiles{'cygwin'}) {
cdd310bb 374 $dirpfx = &dirpfx($makefiles{'cygwin'}, "/");
3d541627 375
e35fb54b 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
976374cd 383 ($_ = $help) =~ s/([=" ])\/D/\1-D/gs;
e35fb54b 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".
db6452be 399 " -D_NO_OLDNAMES -DNO_MULTIMON -DNO_HTMLHELP " .
cdd310bb 400 (join " ", map {"-I$dirpfx$_"} @srcdirs)) .
401 "\n".
e35fb54b 402 "LDFLAGS = -mno-cygwin -s\n".
403 &splitline("RCFLAGS = \$(RCINC) --define WIN32=1 --define _WIN32=1".
33205978 404 " --define WINVER=0x0400")."\n".
e35fb54b 405 "\n".
77603464 406 $makefile_extra{'cygwin'}->{'vars'} .
407 "\n".
e35fb54b 408 ".SUFFIXES:\n".
e35fb54b 409 "\n";
1ddda1ca 410 print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C"));
e35fb54b 411 print "\n\n";
1ddda1ca 412 foreach $p (&prognames("G:C")) {
e35fb54b 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";
7603011f 421 }
6da41155 422 foreach $d (&deps("X.o", "X.res.o", $dirpfx, "/", "cygwin")) {
976374cd 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 }
6da41155 429 if ($d->{obj} =~ /\.res\.o$/) {
d8284c29 430 print "\t\$(RC) \$(RCFL) \$(RCFLAGS) ".$d->{deps}->[0]." ".$d->{obj}."\n\n";
6da41155 431 } else {
a77c6ed3 432 print "\t\$(CC) \$(COMPAT) \$(CFLAGS) \$(XFLAGS) -c ".$d->{deps}->[0]."\n\n";
6da41155 433 }
e35fb54b 434 }
435 print "\n";
77603464 436 print $makefile_extra{'cygwin'}->{'end'};
e35fb54b 437 print "\nclean:\n".
438 "\trm -f *.o *.exe *.res.o *.map\n".
976374cd 439 "\n".
440 "FORCE:\n";
e35fb54b 441 select STDOUT; close OUT;
7603011f 442
7603011f 443}
e35fb54b 444
445##-- Borland makefile
446if (defined $makefiles{'borland'}) {
cdd310bb 447 $dirpfx = &dirpfx($makefiles{'borland'}, "\\");
448
e35fb54b 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
976374cd 467 ($_ = $help) =~ s/([=" ])\/D/\1-D/gs;
e35fb54b 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".
06c3eadd 476 "CFLAGS = -D_WINDOWS -DWINVER=0x0500\n".
976374cd 477 "# Resource compilation flags\n".
478 "RCFLAGS = -DNO_WINRESRC_H -DWIN32 -D_WIN32 -DWINVER=0x0401\n".
e35fb54b 479 "\n".
480 "# Get include directory for resource compiler\n".
481 "!if !\$d(BCB)\n".
482 "BCB = \$(MAKEDIR)\\..\n".
483 "!endif\n".
484 "\n".
77603464 485 $makefile_extra{'borland'}->{'vars'} .
486 "\n".
e35fb54b 487 ".c.obj:\n".
d8284c29 488 &splitline("\tbcc32 -w-aus -w-ccc -w-par -w-pia \$(COMPAT)".
a77c6ed3 489 " \$(CFLAGS) \$(XFLAGS) ".
cdd310bb 490 (join " ", map {"-I$dirpfx$_"} @srcdirs) .
ba58fbaa 491 " /c \$*.c",69)."\n".
e35fb54b 492 ".rc.res:\n".
d8284c29 493 &splitline("\tbrcc32 \$(RCFL) -i \$(BCB)\\include -r".
976374cd 494 " \$(RCFLAGS) \$*.rc",69)."\n".
e35fb54b 495 "\n";
1ddda1ca 496 print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C"));
e35fb54b 497 print "\n\n";
1ddda1ca 498 foreach $p (&prognames("G:C")) {
e35fb54b 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";
7603011f 504 }
1ddda1ca 505 foreach $p (&prognames("G:C")) {
e35fb54b 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 }
6da41155 533 foreach $d (&deps("X.obj", "X.res", $dirpfx, "\\", "borland")) {
976374cd 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 }
e35fb54b 540 }
541 print "\n";
77603464 542 print $makefile_extra{'borland'}->{'end'};
e35fb54b 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".
976374cd 553 "\t-del *.\$\$\$\$\$\$\n".
554 "\n".
555 "FORCE:\n".
556 "\t-rem dummy command\n";
e35fb54b 557 select STDOUT; close OUT;
7603011f 558}
e35fb54b 559
560if (defined $makefiles{'vc'}) {
cdd310bb 561 $dirpfx = &dirpfx($makefiles{'vc'}, "\\");
562
e35fb54b 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".
6da41155 577 "CFLAGS = /nologo /W3 /O1 " .
578 (join " ", map {"-I$dirpfx$_"} @srcdirs) .
06c3eadd 579 " /D_WINDOWS /D_WIN32_WINDOWS=0x500 /DWINVER=0x500\n".
e35fb54b 580 "LFLAGS = /incremental:no /fixed\n".
976374cd 581 "RCFLAGS = -DWIN32 -D_WIN32 -DWINVER=0x0400\n".
e35fb54b 582 "\n".
77603464 583 $makefile_extra{'vc'}->{'vars'} .
584 "\n".
a86a2725 585 "\n";
1ddda1ca 586 print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C"));
e35fb54b 587 print "\n\n";
1ddda1ca 588 foreach $p (&prognames("G:C")) {
e35fb54b 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 }
1ddda1ca 594 foreach $p (&prognames("G:C")) {
e35fb54b 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 }
6da41155 613 foreach $d (&deps("X.obj", "X.res", $dirpfx, "\\", "vc")) {
976374cd 614 $extradeps = $forceobj{$d->{obj_orig}} ? ["*.c","*.h","*.rc"] : [];
615 print &splitline(sprintf("%s: %s", $d->{obj},
616 join " ", @$extradeps, @{$d->{deps}})), "\n";
6da41155 617 if ($d->{obj} =~ /.obj$/) {
a77c6ed3 618 print "\tcl \$(COMPAT) \$(CFLAGS) \$(XFLAGS) /c ".$d->{deps}->[0],"\n\n";
6da41155 619 } else {
976374cd 620 print "\trc \$(RCFL) -r \$(RCFLAGS) ".$d->{deps}->[0],"\n\n";
6da41155 621 }
e35fb54b 622 }
623 print "\n";
77603464 624 print $makefile_extra{'vc'}->{'end'};
e35fb54b 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;
a86a2725 644}
f7f27309 645
e35fb54b 646if (defined $makefiles{'vcproj'}) {
6da41155 647 $dirpfx = &dirpfx($makefiles{'vcproj'}, "\\");
58de2f3c 648
e35fb54b 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'};
6da41155 664 @deps = &deps("X.obj", "X.res", $dirpfx, "\\", "vcproj");
e35fb54b 665 %all_object_deps = map {$_->{obj} => $_->{deps}} @deps;
666 # Create the project files
667 # Get names of all Windows projects (GUI and console)
1ddda1ca 668 my @prognames = &prognames("G:C");
e35fb54b 669 foreach $progname (@prognames) {
985b6440 670 create_vc_project(\%all_object_deps, $progname);
e35fb54b 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
985b6440 712 sub create_vc_project {
e35fb54b 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;
58de2f3c 733 }
e35fb54b 734 if($object_dep =~ /\.h$/io) {
735 $header_files{$object_dep} = 1;
736 next;
58de2f3c 737 }
e35fb54b 738 if($object_dep =~ /\.(rc|ico)$/io) {
739 $resource_files{$object_dep} = 1;
740 next;
58de2f3c 741 }
e35fb54b 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".
6da41155 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".
e35fb54b 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".
6da41155 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".
e35fb54b 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
58de2f3c 864 print
e35fb54b 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";
58de2f3c 888 }
e35fb54b 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 }
a86a2725 908}
a86a2725 909
e35fb54b 910if (defined $makefiles{'gtk'}) {
cdd310bb 911 $dirpfx = &dirpfx($makefiles{'gtk'}, "/");
d37a507a 912
e35fb54b 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
976374cd 920 ($_ = $help) =~ s/([=" ])\/D/\1-D/gs;
e35fb54b 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".
42af6a67 927 "# If necessary set the path to krb5-config here\n".
928 "KRB5CONFIG=krb5-config\n".
f160b7b8 929 "# You can manually set this to `gtk-config' or `pkg-config gtk+-1.2'\n".
930 "# (depending on what works on your system) if you want to enforce\n".
931 "# building with GTK 1.2, or you can set it to `pkg-config gtk+-2.0'\n".
932 "# if you want to enforce 2.0. The default is to try 2.0 and fall back\n".
933 "# to 1.2 if it isn't found.\n".
934 "GTK_CONFIG = sh -c 'pkg-config gtk+-2.0 \$\$0 2>/dev/null || gtk-config \$\$0'\n".
e35fb54b 935 "\n".
3290cec9 936 "-include Makefile.local\n".
937 "\n".
9ac18d71 938 "unexport CFLAGS # work around a weird issue with krb5-config\n".
939 "\n".
cdd310bb 940 &splitline("CFLAGS = -O2 -Wall -Werror -g " .
941 (join " ", map {"-I$dirpfx$_"} @srcdirs) .
f160b7b8 942 " `\$(GTK_CONFIG) --cflags`").
0ac1920c 943 " -D _FILE_OFFSET_BITS=64\n".
f160b7b8 944 "XLDFLAGS = \$(LDFLAGS) `\$(GTK_CONFIG) --libs`\n".
0dbe2956 945 "ULDFLAGS = \$(LDFLAGS)\n".
42af6a67 946 "ifeq (,\$(findstring NO_GSSAPI,\$(COMPAT)))\n".
947 "CFLAGS+= `\$(KRB5CONFIG) --cflags gssapi`\n".
948 "XLDFLAGS+= `\$(KRB5CONFIG) --libs gssapi`\n".
949 "ULDFLAGS = `\$(KRB5CONFIG) --libs gssapi`\n".
666b0d2a 950 "endif\n".
951 "INSTALL=install\n".
952 "INSTALL_PROGRAM=\$(INSTALL)\n".
953 "INSTALL_DATA=\$(INSTALL)\n".
954 "prefix=/usr/local\n".
955 "exec_prefix=\$(prefix)\n".
956 "bindir=\$(exec_prefix)/bin\n".
957 "mandir=\$(prefix)/man\n".
958 "man1dir=\$(mandir)/man1\n".
e35fb54b 959 "\n".
77603464 960 $makefile_extra{'gtk'}->{'vars'} .
961 "\n".
e35fb54b 962 ".SUFFIXES:\n".
963 "\n".
e35fb54b 964 "\n";
1ddda1ca 965 print &splitline("all:" . join "", map { " $_" } &progrealnames("X:U"));
e35fb54b 966 print "\n\n";
1ddda1ca 967 foreach $p (&prognames("X:U")) {
e35fb54b 968 ($prog, $type) = split ",", $p;
969 $objstr = &objects($p, "X.o", undef, undef);
970 print &splitline($prog . ": " . $objstr), "\n";
971 $libstr = &objects($p, undef, undef, "-lX");
0dbe2956 972 print &splitline("\t\$(CC)" . $mw . " -o \$@ " .
973 $objstr . " \$(${type}LDFLAGS) $libstr", 69), "\n\n";
e35fb54b 974 }
6da41155 975 foreach $d (&deps("X.o", undef, $dirpfx, "/", "gtk")) {
976374cd 976 if ($forceobj{$d->{obj_orig}}) {
977 printf("%s: FORCE\n", $d->{obj});
978 } else {
979 print &splitline(sprintf("%s: %s", $d->{obj},
980 join " ", @{$d->{deps}})), "\n";
981 }
a77c6ed3 982 print &splitline("\t\$(CC) \$(COMPAT) \$(CFLAGS) \$(XFLAGS) -c $d->{deps}->[0]\n");
76d3a838 983 }
984 print "\n";
985 print $makefile_extra{'gtk'}->{'end'};
986 print "\nclean:\n".
987 "\trm -f *.o". (join "", map { " $_" } &progrealnames("X:U")) . "\n";
976374cd 988 print "\nFORCE:\n";
76d3a838 989 select STDOUT; close OUT;
990}
991
992if (defined $makefiles{'ac'}) {
993 $dirpfx = &dirpfx($makefiles{'ac'}, "/");
994
995 ##-- Unix/autoconf makefile
996 open OUT, ">$makefiles{'ac'}"; select OUT;
997 print
998 "# Makefile.in for $project_name under Unix with Autoconf.\n".
999 "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
1000 "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
1001 # gcc command line option is -D not /D
976374cd 1002 ($_ = $help) =~ s/([=" ])\/D/\1-D/gs;
76d3a838 1003 print $_;
1004 print
1005 "\n".
1006 "CC = \@CC\@\n".
1007 "\n".
1008 &splitline("CFLAGS = \@CFLAGS\@ \@CPPFLAGS\@ \@DEFS\@ \@GTK_CFLAGS\@ " .
1009 (join " ", map {"-I$dirpfx$_"} @srcdirs))."\n".
1010 "XLDFLAGS = \@LDFLAGS\@ \@LIBS\@ \@GTK_LIBS\@\n".
1011 "ULDFLAGS = \@LDFLAGS\@ \@LIBS\@\n".
666b0d2a 1012 "INSTALL=\@INSTALL\@\n".
1013 "INSTALL_PROGRAM=\$(INSTALL)\n".
1014 "INSTALL_DATA=\$(INSTALL)\n".
1015 "prefix=\@prefix\@\n".
1016 "exec_prefix=\@exec_prefix\@\n".
1017 "bindir=\@bindir\@\n".
1018 "mandir=\@mandir\@\n".
1019 "man1dir=\$(mandir)/man1\n".
76d3a838 1020 "\n".
1021 $makefile_extra{'gtk'}->{'vars'} .
1022 "\n".
1023 ".SUFFIXES:\n".
1024 "\n".
1025 "\n".
1026 "all: \@all_targets\@\n".
1027 &splitline("all-cli:" . join "", map { " $_" } &progrealnames("U"))."\n".
1028 &splitline("all-gtk:" . join "", map { " $_" } &progrealnames("X"))."\n";
1029 print "\n";
1030 foreach $p (&prognames("X:U")) {
1031 ($prog, $type) = split ",", $p;
1032 $objstr = &objects($p, "X.o", undef, undef);
1033 print &splitline($prog . ": " . $objstr), "\n";
1034 $libstr = &objects($p, undef, undef, "-lX");
0dbe2956 1035 print &splitline("\t\$(CC)" . $mw . " -o \$@ " .
1036 $objstr . " \$(${type}LDFLAGS) $libstr", 69), "\n\n";
76d3a838 1037 }
1038 foreach $d (&deps("X.o", undef, $dirpfx, "/", "gtk")) {
976374cd 1039 if ($forceobj{$d->{obj_orig}}) {
1040 printf("%s: FORCE\n", $d->{obj});
1041 } else {
1042 print &splitline(sprintf("%s: %s", $d->{obj},
1043 join " ", @{$d->{deps}})), "\n";
1044 }
a77c6ed3 1045 print &splitline("\t\$(CC) \$(COMPAT) \$(CFLAGS) \$(XFLAGS) -c $d->{deps}->[0]\n");
e35fb54b 1046 }
1047 print "\n";
77603464 1048 print $makefile_extra{'gtk'}->{'end'};
e35fb54b 1049 print "\nclean:\n".
1ddda1ca 1050 "\trm -f *.o". (join "", map { " $_" } &progrealnames("X:U")) . "\n";
976374cd 1051 print "\nFORCE:\n";
e35fb54b 1052 select STDOUT; close OUT;
1053}
f8422c0b 1054
e35fb54b 1055if (defined $makefiles{'mpw'}) {
1056 ##-- MPW Makefile
1057 open OUT, ">$makefiles{'mpw'}"; select OUT;
1058 print
1059 "# Makefile for $project_name under MPW.\n#\n".
1060 "# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
1061 "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
976374cd 1062 # MPW command line option is -d not /D (FIXME further massaging?)
1063 ($_ = $help) =~ s/([=" ])\/D/\1-d /gs;
e35fb54b 1064 print $_;
1065 print "\n\n".
1066 "ROptions = `Echo \"{VER}\" | StreamEdit -e \"1,\$ replace /=(\xc5)\xa81\xb0/ 'STR=\xb6\xb6\xb6\xb6\xb6\"' \xa81 '\xb6\xb6\xb6\xb6\xb6\"'\"`".
1067 "\n".
1068 "C_68K = {C}\n".
1069 "C_CFM68K = {C}\n".
1070 "C_PPC = {PPCC}\n".
1071 "C_Carbon = {PPCC}\n".
1072 "\n".
1073 "# -w 35 disables \"unused parameter\" warnings\n".
1074 "COptions = -i : -i :: -i ::charset -w 35 -w err -proto strict -ansi on \xb6\n".
1075 " -notOnce\n".
1076 "COptions_68K = {COptions} -model far -opt time\n".
1077 "# Enabling \"-opt space\" for CFM-68K gives me undefined references to\n".
1078 "# _\$LDIVT and _\$LMODT.\n".
1079 "COptions_CFM68K = {COptions} -model cfmSeg -opt time\n".
1080 "COptions_PPC = {COptions} -opt size -traceback\n".
1081 "COptions_Carbon = {COptions} -opt size -traceback -d TARGET_API_MAC_CARBON\n".
1082 "\n".
1083 "Link_68K = ILink\n".
1084 "Link_CFM68K = ILink\n".
1085 "Link_PPC = PPCLink\n".
1086 "Link_Carbon = PPCLink\n".
1087 "\n".
1088 "LinkOptions = -c 'pTTY'\n".
1089 "LinkOptions_68K = {LinkOptions} -br 68k -model far -compact\n".
1090 "LinkOptions_CFM68K = {LinkOptions} -br 020 -model cfmseg -compact\n".
1091 "LinkOptions_PPC = {LinkOptions}\n".
1092 "LinkOptions_Carbon = -m __appstart -w {LinkOptions}\n".
1093 "\n".
1094 "Libs_68K = \"{CLibraries}StdCLib.far.o\" \xb6\n".
1095 " \"{Libraries}MacRuntime.o\" \xb6\n".
1096 " \"{Libraries}MathLib.far.o\" \xb6\n".
1097 " \"{Libraries}IntEnv.far.o\" \xb6\n".
1098 " \"{Libraries}Interface.o\" \xb6\n".
1099 " \"{Libraries}Navigation.far.o\" \xb6\n".
1100 " \"{Libraries}OpenTransport.o\" \xb6\n".
1101 " \"{Libraries}OpenTransportApp.o\" \xb6\n".
1102 " \"{Libraries}OpenTptInet.o\" \xb6\n".
1103 " \"{Libraries}UnicodeConverterLib.far.o\"\n".
1104 "\n".
1105 "Libs_CFM = \"{SharedLibraries}InterfaceLib\" \xb6\n".
1106 " \"{SharedLibraries}StdCLib\" \xb6\n".
1107 " \"{SharedLibraries}AppearanceLib\" \xb6\n".
1108 " -weaklib AppearanceLib \xb6\n".
1109 " \"{SharedLibraries}NavigationLib\" \xb6\n".
1110 " -weaklib NavigationLib \xb6\n".
1111 " \"{SharedLibraries}TextCommon\" \xb6\n".
1112 " -weaklib TextCommon \xb6\n".
1113 " \"{SharedLibraries}UnicodeConverter\" \xb6\n".
1114 " -weaklib UnicodeConverter\n".
1115 "\n".
1116 "Libs_CFM68K = {Libs_CFM} \xb6\n".
1117 " \"{CFM68KLibraries}NuMacRuntime.o\"\n".
1118 "\n".
1119 "Libs_PPC = {Libs_CFM} \xb6\n".
1120 " \"{SharedLibraries}ControlsLib\" \xb6\n".
1121 " -weaklib ControlsLib \xb6\n".
1122 " \"{SharedLibraries}WindowsLib\" \xb6\n".
1123 " -weaklib WindowsLib \xb6\n".
1124 " \"{SharedLibraries}OpenTransportLib\" \xb6\n".
1125 " -weaklib OTClientLib \xb6\n".
1126 " -weaklib OTClientUtilLib \xb6\n".
1127 " \"{SharedLibraries}OpenTptInternetLib\" \xb6\n".
1128 " -weaklib OTInetClientLib \xb6\n".
1129 " \"{PPCLibraries}StdCRuntime.o\" \xb6\n".
1130 " \"{PPCLibraries}PPCCRuntime.o\" \xb6\n".
1131 " \"{PPCLibraries}CarbonAccessors.o\" \xb6\n".
1132 " \"{PPCLibraries}OpenTransportAppPPC.o\" \xb6\n".
1133 " \"{PPCLibraries}OpenTptInetPPC.o\"\n".
1134 "\n".
1135 "Libs_Carbon = \"{PPCLibraries}CarbonStdCLib.o\" \xb6\n".
1136 " \"{PPCLibraries}StdCRuntime.o\" \xb6\n".
1137 " \"{PPCLibraries}PPCCRuntime.o\" \xb6\n".
1138 " \"{SharedLibraries}CarbonLib\" \xb6\n".
1139 " \"{SharedLibraries}StdCLib\"\n".
1140 "\n";
1141 print &splitline("all \xc4 " . join(" ", &progrealnames("M")), undef, "\xb6");
1142 print "\n\n";
1143 foreach $p (&prognames("M")) {
1144 ($prog, $type) = split ",", $p;
f8422c0b 1145
e35fb54b 1146 print &splitline("$prog \xc4 $prog.68k $prog.ppc $prog.carbon",
1147 undef, "\xb6"), "\n\n";
c88dc003 1148
e35fb54b 1149 $rsrc = &objects($p, "", "X.rsrc", undef);
b941ca10 1150
e35fb54b 1151 foreach $arch (qw(68K CFM68K PPC Carbon)) {
1152 $objstr = &objects($p, "X.\L$arch\E.o", "", undef);
1153 print &splitline("$prog.\L$arch\E \xc4 $objstr $rsrc", undef, "\xb6");
1154 print "\n";
1155 print &splitline("\tDuplicate -y $rsrc {Targ}", 69, "\xb6"), "\n";
1156 print &splitline("\t{Link_$arch} -o {Targ} -fragname $prog " .
1157 "{LinkOptions_$arch} " .
1158 $objstr . " {Libs_$arch}", 69, "\xb6"), "\n";
1159 print &splitline("\tSetFile -a BMi {Targ}", 69, "\xb6"), "\n\n";
1160 }
4e95095a 1161
e35fb54b 1162 }
6da41155 1163 foreach $d (&deps("", "X.rsrc", "::", ":", "mpw")) {
e35fb54b 1164 next unless $d->{obj};
1165 print &splitline(sprintf("%s \xc4 %s", $d->{obj}, join " ", @{$d->{deps}}),
1166 undef, "\xb6"), "\n";
1167 print "\tRez ", $d->{deps}->[0], " -o {Targ} {ROptions}\n\n";
1168 }
1169 foreach $arch (qw(68K CFM68K)) {
6da41155 1170 foreach $d (&deps("X.\L$arch\E.o", "", "::", ":", "mpw")) {
e35fb54b 1171 next unless $d->{obj};
1172 print &splitline(sprintf("%s \xc4 %s", $d->{obj},
1173 join " ", @{$d->{deps}}),
1174 undef, "\xb6"), "\n";
1175 print "\t{C_$arch} ", $d->{deps}->[0],
1176 " -o {Targ} {COptions_$arch}\n\n";
1177 }
1178 }
1179 foreach $arch (qw(PPC Carbon)) {
6da41155 1180 foreach $d (&deps("X.\L$arch\E.o", "", "::", ":", "mpw")) {
e35fb54b 1181 next unless $d->{obj};
1182 print &splitline(sprintf("%s \xc4 %s", $d->{obj},
1183 join " ", @{$d->{deps}}),
1184 undef, "\xb6"), "\n";
1185 # The odd stuff here seems to stop afpd getting confused.
1186 print "\techo -n > {Targ}\n";
1187 print "\tsetfile -t XCOF {Targ}\n";
1188 print "\t{C_$arch} ", $d->{deps}->[0],
1189 " -o {Targ} {COptions_$arch}\n\n";
1190 }
1191 }
1192 select STDOUT; close OUT;
4e95095a 1193}
1194
e35fb54b 1195if (defined $makefiles{'lcc'}) {
cdd310bb 1196 $dirpfx = &dirpfx($makefiles{'lcc'}, "\\");
1197
e35fb54b 1198 ##-- lcc makefile
1199 open OUT, ">$makefiles{'lcc'}"; select OUT;
1200 print
1201 "# Makefile for $project_name under lcc.\n".
1202 "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
1203 "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
1204 # lcc command line option is -D not /D
976374cd 1205 ($_ = $help) =~ s/([=" ])\/D/\1-D/gs;
e35fb54b 1206 print $_;
1207 print
1208 "\n".
1209 "# If you rename this file to `Makefile', you should change this line,\n".
1210 "# so that the .rsp files still depend on the correct makefile.\n".
1211 "MAKEFILE = Makefile.lcc\n".
1212 "\n".
1213 "# C compilation flags\n".
cdd310bb 1214 "CFLAGS = -D_WINDOWS " .
1215 (join " ", map {"-I$dirpfx$_"} @srcdirs) .
1216 "\n".
976374cd 1217 "# Resource compilation flags\n".
1218 "RCFLAGS = \n".
e35fb54b 1219 "\n".
1220 "# Get include directory for resource compiler\n".
77603464 1221 "\n".
1222 $makefile_extra{'lcc'}->{'vars'} .
4e95095a 1223 "\n";
1ddda1ca 1224 print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C"));
e35fb54b 1225 print "\n\n";
1ddda1ca 1226 foreach $p (&prognames("G:C")) {
e35fb54b 1227 ($prog, $type) = split ",", $p;
1228 $objstr = &objects($p, "X.obj", "X.res", undef);
1229 print &splitline("$prog.exe: " . $objstr ), "\n";
1230 $subsystemtype = undef;
1231 if ($type eq "G") { $subsystemtype = "-subsystem windows"; }
1232 my $libss = "shell32.lib wsock32.lib ws2_32.lib winspool.lib winmm.lib imm32.lib";
1233 print &splitline("\tlcclnk $subsystemtype -o $prog.exe $objstr $libss");
1234 print "\n\n";
1235 }
4e95095a 1236
6da41155 1237 foreach $d (&deps("X.obj", "X.res", $dirpfx, "\\", "lcc")) {
976374cd 1238 if ($forceobj{$d->{obj_orig}}) {
1239 printf("%s: FORCE\n", $d->{obj});
1240 } else {
1241 print &splitline(sprintf("%s: %s", $d->{obj},
1242 join " ", @{$d->{deps}})), "\n";
1243 }
6da41155 1244 if ($d->{obj} =~ /\.obj$/) {
d8284c29 1245 print &splitline("\tlcc -O -p6 \$(COMPAT)".
a77c6ed3 1246 " \$(CFLAGS) \$(XFLAGS) ".$d->{deps}->[0],69)."\n";
6da41155 1247 } else {
976374cd 1248 print &splitline("\tlrc \$(RCFL) -r \$(RCFLAGS) ".
1249 $d->{deps}->[0],69)."\n";
6da41155 1250 }
e35fb54b 1251 }
1252 print "\n";
77603464 1253 print $makefile_extra{'lcc'}->{'end'};
e35fb54b 1254 print "\nclean:\n".
1255 "\t-del *.obj\n".
1256 "\t-del *.exe\n".
976374cd 1257 "\t-del *.res\n".
1258 "\n".
1259 "FORCE:\n";
4e95095a 1260
e35fb54b 1261 select STDOUT; close OUT;
1262}
1ddda1ca 1263
1264if (defined $makefiles{'osx'}) {
1265 $dirpfx = &dirpfx($makefiles{'osx'}, "/");
1266
1267 ##-- Mac OS X makefile
1268 open OUT, ">$makefiles{'osx'}"; select OUT;
1269 print
1270 "# Makefile for $project_name under Mac OS X.\n".
1271 "#\n# This file was created by `mkfiles.pl' from the `Recipe' file.\n".
1272 "# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\n";
1273 # gcc command line option is -D not /D
976374cd 1274 ($_ = $help) =~ s/([=" ])\/D/\1-D/gs;
1ddda1ca 1275 print $_;
1276 print
1277 "CC = \$(TOOLPATH)gcc\n".
1278 "\n".
1279 &splitline("CFLAGS = -O2 -Wall -Werror -g " .
1280 (join " ", map {"-I$dirpfx$_"} @srcdirs))."\n".
1281 "MLDFLAGS = -framework Cocoa\n".
1282 "ULDFLAGS =\n".
1ddda1ca 1283 "\n" .
77603464 1284 $makefile_extra{'osx'}->{'vars'} .
1285 "\n" .
1286 &splitline("all:" . join "", map { " $_" } &progrealnames("MX:U")) .
1ddda1ca 1287 "\n";
1288 foreach $p (&prognames("MX")) {
1289 ($prog, $type) = split ",", $p;
1290 $objstr = &objects($p, "X.o", undef, undef);
1291 $icon = &special($p, ".icns");
1292 $infoplist = &special($p, "info.plist");
1293 print "${prog}.app:\n\tmkdir -p \$\@\n";
1294 print "${prog}.app/Contents: ${prog}.app\n\tmkdir -p \$\@\n";
1295 print "${prog}.app/Contents/MacOS: ${prog}.app/Contents\n\tmkdir -p \$\@\n";
1296 $targets = "${prog}.app/Contents/MacOS/$prog";
1297 if (defined $icon) {
1298 print "${prog}.app/Contents/Resources: ${prog}.app/Contents\n\tmkdir -p \$\@\n";
1299 print "${prog}.app/Contents/Resources/${prog}.icns: ${prog}.app/Contents/Resources $icon\n\tcp $icon \$\@\n";
1300 $targets .= " ${prog}.app/Contents/Resources/${prog}.icns";
1301 }
1302 if (defined $infoplist) {
1303 print "${prog}.app/Contents/Info.plist: ${prog}.app/Contents/Resources $infoplist\n\tcp $infoplist \$\@\n";
1304 $targets .= " ${prog}.app/Contents/Info.plist";
1305 }
1306 $targets .= " \$(${prog}_extra)";
1307 print &splitline("${prog}: $targets", 69) . "\n\n";
1308 print &splitline("${prog}.app/Contents/MacOS/$prog: ".
1309 "${prog}.app/Contents/MacOS " . $objstr), "\n";
1310 $libstr = &objects($p, undef, undef, "-lX");
1311 print &splitline("\t\$(CC)" . $mw . " \$(MLDFLAGS) -o \$@ " .
1312 $objstr . " $libstr", 69), "\n\n";
1313 }
1314 foreach $p (&prognames("U")) {
1315 ($prog, $type) = split ",", $p;
1316 $objstr = &objects($p, "X.o", undef, undef);
1317 print &splitline($prog . ": " . $objstr), "\n";
1318 $libstr = &objects($p, undef, undef, "-lX");
1319 print &splitline("\t\$(CC)" . $mw . " \$(ULDFLAGS) -o \$@ " .
1320 $objstr . " $libstr", 69), "\n\n";
1321 }
1322 foreach $d (&deps("X.o", undef, $dirpfx, "/")) {
976374cd 1323 if ($forceobj{$d->{obj_orig}}) {
1324 printf("%s: FORCE\n", $d->{obj});
1325 } else {
1326 print &splitline(sprintf("%s: %s", $d->{obj},
1327 join " ", @{$d->{deps}})), "\n";
1328 }
1ddda1ca 1329 $firstdep = $d->{deps}->[0];
1330 if ($firstdep =~ /\.c$/) {
a77c6ed3 1331 print "\t\$(CC) \$(COMPAT) \$(FWHACK) \$(CFLAGS) \$(XFLAGS) -c \$<\n";
1ddda1ca 1332 } elsif ($firstdep =~ /\.m$/) {
a77c6ed3 1333 print "\t\$(CC) -x objective-c \$(COMPAT) \$(FWHACK) \$(CFLAGS) \$(XFLAGS) -c \$<\n";
1ddda1ca 1334 }
1335 }
77603464 1336 print "\n".$makefile_extra{'osx'}->{'end'};
1ddda1ca 1337 print "\nclean:\n".
976374cd 1338 "\trm -f *.o *.dmg". (join "", map { " $_" } &progrealnames("U")) . "\n".
1ddda1ca 1339 "\trm -rf *.app\n";
976374cd 1340 "\n".
1341 "FORCE:\n";
1ddda1ca 1342 select STDOUT; close OUT;
1343}
985b6440 1344
1345if (defined $makefiles{'devcppproj'}) {
1346 $dirpfx = &dirpfx($makefiles{'devcppproj'}, "\\");
1347 $orig_dir = cwd;
1348
1349 ##-- Dev-C++ 5 projects
1350 #
1351 # Note: All files created in this section are written in binary
1352 # mode to prevent any posibility of misinterpreted line endings.
1353 # I don't know if Dev-C++ is as touchy as MSVC with LF-only line
1354 # endings. But however, CRLF line endings are the common way on
1355 # Win32 machines where Dev-C++ is running.
1356 # Hence, in order for mkfiles.pl to generate CRLF project files
1357 # even when run from Unix, I make sure all files are binary and
1358 # explicitly write the CRLFs.
1359 #
1360 # Create directories if necessary
1361 mkdir $makefiles{'devcppproj'}
1362 if(! -d $makefiles{'devcppproj'});
1363 chdir $makefiles{'devcppproj'};
1364 @deps = &deps("X.obj", "X.res", $dirpfx, "\\", "devcppproj");
1365 %all_object_deps = map {$_->{obj} => $_->{deps}} @deps;
1366 # Make dir names FAT/NTFS compatible
1367 my @srcdirs = @srcdirs;
1368 for ($i=0; $i<@srcdirs; $i++) {
1369 $srcdirs[$i] =~ s/\//\\/g;
1370 $srcdirs[$i] =~ s/\\$//;
1371 }
1372 # Create the project files
1373 # Get names of all Windows projects (GUI and console)
1374 my @prognames = &prognames("G:C");
1375 foreach $progname (@prognames) {
1376 create_devcpp_project(\%all_object_deps, $progname);
1377 }
1378
1379 sub create_devcpp_project {
1380 my ($all_object_deps, $progname) = @_;
1381 # Construct program's dependency info (Taken from 'vcproj', seems to work right here, too.)
1382 %seen_objects = ();
1383 %lib_files = ();
1384 %source_files = ();
1385 %header_files = ();
1386 %resource_files = ();
1387 @object_files = split " ", &objects($progname, "X.obj", "X.res", "X.lib");
1388 foreach $object_file (@object_files) {
1389 next if defined $seen_objects{$object_file};
1390 $seen_objects{$object_file} = 1;
1391 if($object_file =~ /\.lib$/io) {
1392 $lib_files{$object_file} = 1;
1393 next;
1394 }
1395 $object_deps = $all_object_deps{$object_file};
1396 foreach $object_dep (@$object_deps) {
1397 if($object_dep =~ /\.c$/io) {
1398 $source_files{$object_dep} = 1;
1399 next;
1400 }
1401 if($object_dep =~ /\.h$/io) {
1402 $header_files{$object_dep} = 1;
1403 next;
1404 }
1405 if($object_dep =~ /\.(rc|ico)$/io) {
1406 $resource_files{$object_dep} = 1;
1407 next;
1408 }
1409 }
1410 }
1411 $libs = join " ", sort keys %lib_files;
1412 @source_files = sort keys %source_files;
1413 @header_files = sort keys %header_files;
1414 @resources = sort keys %resource_files;
1415 ($windows_project, $type) = split ",", $progname;
1416 mkdir $windows_project
1417 if(! -d $windows_project);
1418 chdir $windows_project;
1419
1420 $subsys = ($type eq "G") ? "0" : "1"; # 0 = Win32 GUI, 1 = Win32 Console
1421 open OUT, ">$windows_project.dev"; binmode OUT; select OUT;
1422 print
1423 "# DEV-C++ 5 Project File - $windows_project.dev\r\n".
1424 "# ** DO NOT EDIT **\r\n".
1425 "\r\n".
1426 # No difference between DEBUG and RELEASE here as in 'vcproj', because
1427 # Dev-C++ does not support mutiple compilation profiles in one single project.
1428 # (At least I can say this for Dev-C++ 5 Beta)
1429 "[Project]\r\n".
1430 "FileName=$windows_project.dev\r\n".
1431 "Name=$windows_project\r\n".
1432 "Ver=1\r\n".
1433 "IsCpp=1\r\n".
1434 "Type=$subsys\r\n".
1435 # Multimon is disabled here, as Dev-C++ (Version 5 Beta) does not have multimon.h
1436 "Compiler=-W -D__GNUWIN32__ -DWIN32 -DNDEBUG -D_WINDOWS -DNO_MULTIMON -D_MBCS_\@\@_\r\n".
1437 "CppCompiler=-W -D__GNUWIN32__ -DWIN32 -DNDEBUG -D_WINDOWS -DNO_MULTIMON -D_MBCS_\@\@_\r\n".
1438 "Includes=" . (join ";", map {"..\\..\\$dirpfx$_"} @srcdirs) . "\r\n".
1439 "Linker=-ladvapi32 -lcomctl32 -lcomdlg32 -lgdi32 -limm32 -lshell32 -luser32 -lwinmm -lwinspool_\@\@_\r\n".
1440 "Libs=\r\n".
1441 "UnitCount=" . (@source_files + @header_files + @resources) . "\r\n".
1442 "Folders=\"Header Files\",\"Resource Files\",\"Source Files\"\r\n".
1443 "ObjFiles=\r\n".
1444 "PrivateResource=${windows_project}_private.rc\r\n".
1445 "ResourceIncludes=..\\..\\..\\WINDOWS\r\n".
1446 "MakeIncludes=\r\n".
1447 "Icon=\r\n". # It's ok to leave this blank.
1448 "ExeOutput=\r\n".
1449 "ObjectOutput=\r\n".
1450 "OverrideOutput=0\r\n".
1451 "OverrideOutputName=$windows_project.exe\r\n".
1452 "HostApplication=\r\n".
1453 "CommandLine=\r\n".
1454 "UseCustomMakefile=0\r\n".
1455 "CustomMakefile=\r\n".
1456 "IncludeVersionInfo=0\r\n".
1457 "SupportXPThemes=0\r\n".
1458 "CompilerSet=0\r\n".
1459 "CompilerSettings=0000000000000000000000\r\n".
1460 "\r\n";
1461 $unit_count = 1;
1462 foreach $source_file (@source_files) {
1463 print
1464 "[Unit$unit_count]\r\n".
1465 "FileName=..\\..\\$source_file\r\n".
1466 "Folder=Source Files\r\n".
1467 "Compile=1\r\n".
1468 "CompileCpp=0\r\n".
1469 "Link=1\r\n".
1470 "Priority=1000\r\n".
1471 "OverrideBuildCmd=0\r\n".
1472 "BuildCmd=\r\n".
1473 "\r\n";
1474 $unit_count++;
1475 }
1476 foreach $header_file (@header_files) {
1477 print
1478 "[Unit$unit_count]\r\n".
1479 "FileName=..\\..\\$header_file\r\n".
1480 "Folder=Header Files\r\n".
1481 "Compile=1\r\n".
1482 "CompileCpp=1\r\n". # Dev-C++ want's to compile all header files with both compilers C and C++. It does not hurt.
1483 "Link=1\r\n".
1484 "Priority=1000\r\n".
1485 "OverrideBuildCmd=0\r\n".
1486 "BuildCmd=\r\n".
1487 "\r\n";
1488 $unit_count++;
1489 }
1490 foreach $resource_file (@resources) {
1491 if ($resource_file =~ /.*\.(ico|cur|bmp|dlg|rc2|rct|bin|rgs|gif|jpg|jpeg|jpe)/io) { # Default filter as in 'vcproj'
1492 $Compile = "0"; # Don't compile images and other binary resource files
1493 $CompileCpp = "0";
1494 } else {
1495 $Compile = "1";
1496 $CompileCpp = "1"; # Dev-C++ want's to compile all .rc files with both compilers C and C++. It does not hurt.
1497 }
1498 print
1499 "[Unit$unit_count]\r\n".
1500 "FileName=..\\..\\$resource_file\r\n".
1501 "Folder=Resource Files\r\n".
1502 "Compile=$Compile\r\n".
1503 "CompileCpp=$CompileCpp\r\n".
1504 "Link=0\r\n".
1505 "Priority=1000\r\n".
1506 "OverrideBuildCmd=0\r\n".
1507 "BuildCmd=\r\n".
1508 "\r\n";
1509 $unit_count++;
1510 }
1511 #Note: By default, [VersionInfo] is not used.
1512 print
1513 "[VersionInfo]\r\n".
1514 "Major=0\r\n".
1515 "Minor=0\r\n".
1516 "Release=1\r\n".
1517 "Build=1\r\n".
1518 "LanguageID=1033\r\n".
1519 "CharsetID=1252\r\n".
1520 "CompanyName=\r\n".
1521 "FileVersion=0.1\r\n".
1522 "FileDescription=\r\n".
1523 "InternalName=\r\n".
1524 "LegalCopyright=\r\n".
1525 "LegalTrademarks=\r\n".
1526 "OriginalFilename=$windows_project.exe\r\n".
1527 "ProductName=$windows_project\r\n".
1528 "ProductVersion=0.1\r\n".
1529 "AutoIncBuildNr=0\r\n";
1530 select STDOUT; close OUT;
1531 chdir "..";
1532 }
1533}