blob: 48e7bdee781a4329198595e68e1514005009bc97 [file] [log] [blame]
Francois Gouget755bb922000-11-05 05:23:39 +00001#!/usr/bin/perl -w
Francois Gougete3d26a32002-09-06 18:36:19 +00002use strict;
Francois Gouget755bb922000-11-05 05:23:39 +00003
Francois Gougetc7201ce2004-03-03 02:19:20 +00004# Copyright 2000-2004 Francois Gouget for CodeWeavers
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00005# Copyright 2004 Dimitrie O. Paun
André Hentscheldc21b4f2009-04-02 18:53:14 +02006# Copyright 2009 André Hentschel
Francois Gouget755bb922000-11-05 05:23:39 +00007#
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00008# This library is free software; you can redistribute it and/or
9# modify it under the terms of the GNU Lesser General Public
10# License as published by the Free Software Foundation; either
11# version 2.1 of the License, or (at your option) any later version.
12#
13# This library is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# Lesser General Public License for more details.
17#
18# You should have received a copy of the GNU Lesser General Public
19# License along with this library; if not, write to the Free Software
Jonathan Ernst360a3f92006-05-18 14:49:52 +020020# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard0799c1a2002-03-09 23:29:33 +000021#
22
André Hentschelc0bd2912009-08-29 13:10:01 +020023my $version="0.7.4";
Francois Gouget755bb922000-11-05 05:23:39 +000024
25use Cwd;
26use File::Basename;
27use File::Copy;
28
29
30
31#####
32#
33# Options
34#
35#####
36
37# The following constants define what we do with the case of filenames
38
39##
40# Never rename a file to lowercase
41my $OPT_LOWER_NONE=0;
42
43##
44# Rename all files to lowercase
45my $OPT_LOWER_ALL=1;
46
47##
48# Rename only files that are all uppercase to lowercase
49my $OPT_LOWER_UPPERCASE=2;
50
51
52# The following constants define whether to ask questions or not
53
54##
55# No (synonym of never)
56my $OPT_ASK_NO=0;
57
58##
59# Yes (always)
60my $OPT_ASK_YES=1;
61
62##
63# Skip the questions till the end of this scope
64my $OPT_ASK_SKIP=-1;
65
66
André Hentschel2100cb62009-05-01 11:37:01 +020067# The following constants define the architecture
68
69##
André Hentschel65900b42010-04-21 20:22:13 +020070# Default Architecture will be choosen
71my $OPT_ARCH_DEFAULT=0;
72
73##
André Hentschel2100cb62009-05-01 11:37:01 +020074# 32-Bit Target
75my $OPT_ARCH_32=32;
76
77##
78# 64-Bit Target
79my $OPT_ARCH_64=64;
80
81
Francois Gouget755bb922000-11-05 05:23:39 +000082# General options
83
84##
François Gougetc1f016b2001-01-10 22:43:21 +000085# This is the directory in which winemaker will operate.
86my $opt_work_dir;
87
88##
André Hentscheldc21b4f2009-04-02 18:53:14 +020089# This is the file in which winemaker will operate if a project file is specified.
90my $opt_work_file;
91
92##
Francois Gouget755bb922000-11-05 05:23:39 +000093# Make a backup of the files
94my $opt_backup;
95
96##
97# Defines which files to rename
98my $opt_lower;
99
Francois Gougeta106edb2000-11-10 22:29:11 +0000100##
101# If we don't find the file referenced by an include, lower it
102my $opt_lower_include;
103
Bill Medlandce4e0a62001-09-24 01:11:50 +0000104##
105# If true then winemaker should not attempt to fix the source. This is
106# useful if the source is known to be already in a suitable form and is
107# readonly
108my $opt_no_source_fix;
Francois Gouget755bb922000-11-05 05:23:39 +0000109
110# Options for the 'Source' method
111
112##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000113# Specifies that we have only one target so that all sources relate
114# to this target. By default this variable is left undefined which
115# means winemaker should try to find out by itself what the targets
116# are. If not undefined then this contains the name of the default
Francois Gouget755bb922000-11-05 05:23:39 +0000117# target (without the extension).
118my $opt_single_target;
119
120##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000121# If '$opt_single_target' has been specified then this is the type of
122# that target. Otherwise it specifies whether the default target type
Francois Gouget755bb922000-11-05 05:23:39 +0000123# is guiexe or cuiexe.
124my $opt_target_type;
125
126##
127# Contains the default set of flags to be used when creating a new target.
128my $opt_flags;
129
130##
André Hentschel2100cb62009-05-01 11:37:01 +0200131# Contains 32 for 32-Bit-Targets and 64 for 64-Bit-Targets
132my $opt_arch;
133
134##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000135# If true then winemaker should ask questions to the user as it goes
Francois Gouget755bb922000-11-05 05:23:39 +0000136# along.
137my $opt_is_interactive;
138my $opt_ask_project_options;
139my $opt_ask_target_options;
140
141##
Francois Gougetc7201ce2004-03-03 02:19:20 +0000142# If false then winemaker should not generate the makefiles.
Francois Gougeta106edb2000-11-10 22:29:11 +0000143my $opt_no_generated_files;
Francois Gouget755bb922000-11-05 05:23:39 +0000144
145##
146# Specifies not to print the banner if set.
147my $opt_no_banner;
148
149
150
151#####
152#
153# Target modelization
154#
155#####
156
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000157# The description of a target is stored in an array. The constants
Francois Gouget755bb922000-11-05 05:23:39 +0000158# below identify what is stored at each index of the array.
159
160##
161# This is the name of the target.
162my $T_NAME=0;
163
164##
165# Defines the type of target we want to build. See the TT_xxx
166# constants below
167my $T_TYPE=1;
168
169##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000170# This is a bitfield containing flags refining the way the target
Francois Gouget755bb922000-11-05 05:23:39 +0000171# should be handled. See the TF_xxx constants below
Francois Gougetc7201ce2004-03-03 02:19:20 +0000172my $T_FLAGS=2;
Francois Gouget755bb922000-11-05 05:23:39 +0000173
174##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000175# This is a reference to an array containing the list of the
Francois Gouget755bb922000-11-05 05:23:39 +0000176# resp. C, C++, RC, other (.h, .hxx, etc.) source files.
Francois Gougetc7201ce2004-03-03 02:19:20 +0000177my $T_SOURCES_C=3;
178my $T_SOURCES_CXX=4;
179my $T_SOURCES_RC=5;
180my $T_SOURCES_MISC=6;
181
182##
183# This is a reference to an array containing the list of
184# C compiler options
185my $T_CEXTRA=7;
186
187##
188# This is a reference to an array containing the list of
189# C++ compiler options
190my $T_CXXEXTRA=8;
191
192##
193# This is a reference to an array containing the list of
194# RC compiler options
195my $T_RCEXTRA=9;
Francois Gouget755bb922000-11-05 05:23:39 +0000196
197##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000198# This is a reference to an array containing the list of macro
Francois Gouget755bb922000-11-05 05:23:39 +0000199# definitions
Francois Gougetc7201ce2004-03-03 02:19:20 +0000200my $T_DEFINES=10;
Francois Gouget755bb922000-11-05 05:23:39 +0000201
202##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000203# This is a reference to an array containing the list of directory
Francois Gouget755bb922000-11-05 05:23:39 +0000204# names that constitute the include path
Francois Gougetc7201ce2004-03-03 02:19:20 +0000205my $T_INCLUDE_PATH=11;
206
207##
208# Flags for the linker
209my $T_LDFLAGS=12;
Francois Gouget755bb922000-11-05 05:23:39 +0000210
211##
Francois Gouget89a0c022001-07-30 18:44:48 +0000212# Same as T_INCLUDE_PATH but for the dll search path
Francois Gougetc7201ce2004-03-03 02:19:20 +0000213my $T_DLL_PATH=13;
Francois Gouget755bb922000-11-05 05:23:39 +0000214
215##
Francois Gouget89a0c022001-07-30 18:44:48 +0000216# The list of Windows dlls to import
Francois Gougetc7201ce2004-03-03 02:19:20 +0000217my $T_DLLS=14;
Francois Gouget89a0c022001-07-30 18:44:48 +0000218
219##
220# Same as T_INCLUDE_PATH but for the library search path
Francois Gougetc7201ce2004-03-03 02:19:20 +0000221my $T_LIBRARY_PATH=15;
Francois Gougetbe859592000-11-15 22:12:20 +0000222
223##
224# The list of Unix libraries to link with
Francois Gougetc7201ce2004-03-03 02:19:20 +0000225my $T_LIBRARIES=16;
Francois Gouget755bb922000-11-05 05:23:39 +0000226
227##
228# The list of dependencies between targets
Francois Gougetc7201ce2004-03-03 02:19:20 +0000229my $T_DEPENDS=17;
Francois Gouget755bb922000-11-05 05:23:39 +0000230
231
232# The following constants define the recognized types of target
233
234##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000235# This is not a real target. This type of target is used to collect
Francois Gouget755bb922000-11-05 05:23:39 +0000236# the sources that don't seem to belong to any other target. Thus no
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000237# real target is generated for them, we just put the sources of the
Francois Gouget755bb922000-11-05 05:23:39 +0000238# fake target in the global source list.
239my $TT_SETTINGS=0;
240
241##
242# For executables in the windows subsystem
243my $TT_GUIEXE=1;
244
245##
246# For executables in the console subsystem
247my $TT_CUIEXE=2;
248
249##
250# For dynamically linked libraries
251my $TT_DLL=3;
252
253
254# The following constants further refine how the target should be handled
255
256##
Francois Gouget755bb922000-11-05 05:23:39 +0000257# This target is an MFC-based target
258my $TF_MFC=4;
259
260##
Martin Wilck3aa9e8c2002-09-10 00:20:27 +0000261# User has specified --nomfc option for this target or globally
262my $TF_NOMFC=8;
263
264##
265# --nodlls option: Do not use standard DLL set
266my $TF_NODLLS=16;
267
268##
Francois Gouget15487bc2004-02-02 23:02:32 +0000269# --nomsvcrt option: Do not link with msvcrt
270my $TF_NOMSVCRT=32;
271
272##
Francois Gouget755bb922000-11-05 05:23:39 +0000273# Initialize a target:
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000274# - set the target type to TT_SETTINGS, i.e. no real target will
275# be generated.
Francois Gougete3d26a32002-09-06 18:36:19 +0000276sub target_init($)
Francois Gouget755bb922000-11-05 05:23:39 +0000277{
278 my $target=$_[0];
279
280 @$target[$T_TYPE]=$TT_SETTINGS;
281 # leaving $T_INIT undefined
282 @$target[$T_FLAGS]=$opt_flags;
283 @$target[$T_SOURCES_C]=[];
284 @$target[$T_SOURCES_CXX]=[];
285 @$target[$T_SOURCES_RC]=[];
286 @$target[$T_SOURCES_MISC]=[];
Francois Gougetc7201ce2004-03-03 02:19:20 +0000287 @$target[$T_CEXTRA]=[];
288 @$target[$T_CXXEXTRA]=[];
289 @$target[$T_RCEXTRA]=[];
Francois Gouget755bb922000-11-05 05:23:39 +0000290 @$target[$T_DEFINES]=[];
291 @$target[$T_INCLUDE_PATH]=[];
Francois Gougetc7201ce2004-03-03 02:19:20 +0000292 @$target[$T_LDFLAGS]=[];
Francois Gouget89a0c022001-07-30 18:44:48 +0000293 @$target[$T_DLL_PATH]=[];
294 @$target[$T_DLLS]=[];
Francois Gouget755bb922000-11-05 05:23:39 +0000295 @$target[$T_LIBRARY_PATH]=[];
Francois Gougetbe859592000-11-15 22:12:20 +0000296 @$target[$T_LIBRARIES]=[];
Francois Gouget755bb922000-11-05 05:23:39 +0000297}
298
Francois Gouget755bb922000-11-05 05:23:39 +0000299
300
301#####
302#
303# Project modelization
304#
305#####
306
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000307# First we have the notion of project. A project is described by an
308# array (since we don't have structs in perl). The constants below
Francois Gouget755bb922000-11-05 05:23:39 +0000309# identify what is stored at each index of the array.
310
311##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000312# This is the path in which this project is located. In other
Francois Gouget755bb922000-11-05 05:23:39 +0000313# words, this is the path to the Makefile.
314my $P_PATH=0;
315
316##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000317# This index contains a reference to an array containing the project-wide
318# settings. The structure of that arrray is actually identical to that of
Francois Gouget755bb922000-11-05 05:23:39 +0000319# a regular target since it can also contain extra sources.
320my $P_SETTINGS=1;
321
322##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000323# This index contains a reference to an array of targets for this
324# project. Each target describes how an executable or library is to
325# be built. For each target this description takes the same form as
Francois Gouget755bb922000-11-05 05:23:39 +0000326# that of the project: an array. So this entry is an array of arrays.
327my $P_TARGETS=2;
328
329##
330# Initialize a project:
331# - set the project's path
332# - initialize the target list
333# - create a default target (will be removed later if unnecessary)
Francois Gouget786a2cd2009-02-25 10:33:48 +0100334sub project_init($$$)
Francois Gouget755bb922000-11-05 05:23:39 +0000335{
Francois Gouget786a2cd2009-02-25 10:33:48 +0100336 my ($project, $path, $global_settings)=@_;
Francois Gouget755bb922000-11-05 05:23:39 +0000337
338 my $project_settings=[];
339 target_init($project_settings);
Francois Gouget786a2cd2009-02-25 10:33:48 +0100340 @$project_settings[$T_DEFINES]=[@{@$global_settings[$T_DEFINES]}];
341 @$project_settings[$T_INCLUDE_PATH]=[@{@$global_settings[$T_INCLUDE_PATH]}];
342 @$project_settings[$T_DLL_PATH]=[@{@$global_settings[$T_DLL_PATH]}];
343 @$project_settings[$T_DLLS]=[@{@$global_settings[$T_DLLS]}];
344 @$project_settings[$T_LIBRARY_PATH]=[@{@$global_settings[$T_LIBRARY_PATH]}];
345 @$project_settings[$T_LIBRARIES]=[@{@$global_settings[$T_LIBRARIES]}];
Francois Gouget755bb922000-11-05 05:23:39 +0000346
347 @$project[$P_PATH]=$path;
348 @$project[$P_SETTINGS]=$project_settings;
349 @$project[$P_TARGETS]=[];
350}
351
352
353
354#####
355#
356# Global variables
357#
358#####
359
Francois Gouget755bb922000-11-05 05:23:39 +0000360my %warnings;
361
362my %templates;
363
364##
Michael Jungdc754062004-12-13 12:00:59 +0000365# This maps a directory name to a reference to an array listing
366# its contents (files and directories)
367my %directories;
368
369##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000370# Contains the list of all projects. This list tells us what are
371# the subprojects of the main Makefile and where we have to generate
Francois Gouget755bb922000-11-05 05:23:39 +0000372# Makefiles.
373my @projects=();
374
375##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000376# This is the main project, i.e. the one in the "." directory.
377# It may well be empty in which case the main Makefile will only
Francois Gouget755bb922000-11-05 05:23:39 +0000378# call out subprojects.
379my @main_project;
380
381##
382# Contains the defaults for the include path, etc.
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000383# We store the defaults as if this were a target except that we only
Francois Gouget755bb922000-11-05 05:23:39 +0000384# exploit the defines, include path, library path, library list and misc
385# sources fields.
386my @global_settings;
387
Francois Gouget755bb922000-11-05 05:23:39 +0000388
389
390#####
391#
392# Utility functions
393#
394#####
395
396##
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000397# Cleans up a name to make it an acceptable Makefile
Francois Gouget755bb922000-11-05 05:23:39 +0000398# variable name.
Francois Gougete3d26a32002-09-06 18:36:19 +0000399sub canonize($)
Francois Gouget755bb922000-11-05 05:23:39 +0000400{
401 my $name=$_[0];
402
403 $name =~ tr/a-zA-Z0-9_/_/c;
404 return $name;
405}
406
407##
408# Returns true is the specified pathname is absolute.
Alexandre Julliard7cae5582002-06-01 02:55:48 +0000409# Note: pathnames that start with a variable '$' or
Francois Gouget755bb922000-11-05 05:23:39 +0000410# '~' are considered absolute.
Francois Gougete3d26a32002-09-06 18:36:19 +0000411sub is_absolute($)
Francois Gouget755bb922000-11-05 05:23:39 +0000412{
413 my $path=$_[0];
414
415 return ($path =~ /^[\/~\$]/);
416}
417
418##
Francois Gougetbebac0a2004-10-30 02:11:19 +0000419# Retrieves the contents of the specified directory.
420# We either get it from the directories hashtable which acts as a
421# cache, or use opendir, readdir, closedir and store the result
422# in the hashtable.
423sub get_directory_contents($)
424{
425 my $dirname=$_[0];
426 my $directory;
427
428 #print "getting the contents of $dirname\n";
429
430 # check for a cached version
431 $dirname =~ s+/$++;
432 if ($dirname eq "") {
433 $dirname=cwd;
434 }
435 $directory=$directories{$dirname};
436 if (defined $directory) {
437 #print "->@$directory\n";
438 return $directory;
439 }
440
441 # Read this directory
442 if (opendir(DIRECTORY, "$dirname")) {
443 my @files=readdir DIRECTORY;
444 closedir(DIRECTORY);
445 $directory=\@files;
446 } else {
447 # Return an empty list
448 #print "error: cannot open $dirname\n";
449 my @files;
450 $directory=\@files;
451 }
452 #print "->@$directory\n";
453 $directories{$dirname}=$directory;
454 return $directory;
455}
456
Francois Gougetd4fddfb2009-02-25 10:32:36 +0100457##
458# Removes a directory from the cache.
459# This is needed if one of its files or subdirectory has been renamed.
460sub clear_directory_cache($)
461{
462 my ($dirname)=@_;
463 delete $directories{$dirname};
464}
Francois Gouget755bb922000-11-05 05:23:39 +0000465
466
467#####
468#
469# 'Source'-based Project analysis
470#
471#####
472
473##
474# Allows the user to specify makefile and target specific options
475# - target: the structure in which to store the results
476# - options: the string containing the options
Francois Gougete3d26a32002-09-06 18:36:19 +0000477sub source_set_options($$)
Francois Gouget755bb922000-11-05 05:23:39 +0000478{
479 my $target=$_[0];
480 my $options=$_[1];
481
482 #FIXME: we must deal with escaping of stuff and all
Francois Gougete3d26a32002-09-06 18:36:19 +0000483 foreach my $option (split / /,$options) {
Francois Gouget755bb922000-11-05 05:23:39 +0000484 if (@$target[$T_TYPE] == $TT_SETTINGS and $option =~ /^-D/) {
485 push @{@$target[$T_DEFINES]},$option;
486 } elsif (@$target[$T_TYPE] == $TT_SETTINGS and $option =~ /^-I/) {
487 push @{@$target[$T_INCLUDE_PATH]},$option;
Francois Gouget89a0c022001-07-30 18:44:48 +0000488 } elsif ($option =~ /^-P/) {
489 push @{@$target[$T_DLL_PATH]},"-L$'";
490 } elsif ($option =~ /^-i/) {
Dimitrie O. Paun905658c2004-02-27 21:24:20 +0000491 push @{@$target[$T_DLLS]},"$'";
Francois Gouget755bb922000-11-05 05:23:39 +0000492 } elsif ($option =~ /^-L/) {
493 push @{@$target[$T_LIBRARY_PATH]},$option;
Francois Gougetbe859592000-11-15 22:12:20 +0000494 } elsif ($option =~ /^-l/) {
Francois Gouget89a0c022001-07-30 18:44:48 +0000495 push @{@$target[$T_LIBRARIES]},"$'";
Martin Wilck3aa9e8c2002-09-10 00:20:27 +0000496 } elsif ($option =~ /^--mfc/) {
497 @$target[$T_FLAGS]|=$TF_MFC;
498 @$target[$T_FLAGS]&=~$TF_NOMFC;
Francois Gouget82747b72000-11-25 01:38:39 +0000499 } elsif ($option =~ /^--nomfc/) {
500 @$target[$T_FLAGS]&=~$TF_MFC;
Martin Wilck3aa9e8c2002-09-10 00:20:27 +0000501 @$target[$T_FLAGS]|=$TF_NOMFC;
502 } elsif ($option =~ /^--nodlls/) {
503 @$target[$T_FLAGS]|=$TF_NODLLS;
Francois Gouget15487bc2004-02-02 23:02:32 +0000504 } elsif ($option =~ /^--nomsvcrt/) {
505 @$target[$T_FLAGS]|=$TF_NOMSVCRT;
Francois Gouget755bb922000-11-05 05:23:39 +0000506 } else {
Francois Gouget3af251e2000-11-30 20:36:04 +0000507 print STDERR "error: unknown option \"$option\"\n";
508 return 0;
Francois Gouget755bb922000-11-05 05:23:39 +0000509 }
510 }
Francois Gouget3af251e2000-11-30 20:36:04 +0000511 return 1;
Francois Gouget755bb922000-11-05 05:23:39 +0000512}
513
514##
André Hentscheldc21b4f2009-04-02 18:53:14 +0200515# Scans the specified project file to:
516# - get a list of targets for this project
517# - get some settings
518# - get the list of source files
519sub source_scan_project_file($$$);
520sub source_scan_project_file($$$)
521{
522 # a reference to the parent's project
523 my $parent_project=$_[0];
524 # 0 if it is a single project, 1 if it is part of a workspace
525 my $is_sub_project=$_[1];
526 # the name of the project file, with complete path, or without if in
527 # the same directory
528 my $filename=$_[2];
529
530 # reference to the project for this file. May not be used
531 my $project;
André Hentscheldc21b4f2009-04-02 18:53:14 +0200532 # list of sources found in the current file
533 my @sources_c=();
534 my @sources_cxx=();
535 my @sources_rc=();
536 my @sources_misc=();
537 # some more settings
538 my $path=dirname($filename);
539 my $prj_target_cflags;
André Hentschele1e9dc32009-08-13 16:43:37 +0200540 my $prj_target_defines;
André Hentscheldc21b4f2009-04-02 18:53:14 +0200541 my $prj_target_ldflags;
542 my $prj_target_libs;
543 my $prj_name;
544 my $found_cfg=0;
545 my $prj_cfg;
André Hentschelebde8052010-05-10 19:59:01 +0200546 my $prj_target_type=$TT_GUIEXE;
André Hentscheldc21b4f2009-04-02 18:53:14 +0200547 my @prj_target_options;
548
549 if (!($path=~/\/$/)) {
550 $path.="/";
551 }
552
553 if (defined $opt_single_target or $is_sub_project == 0) {
554 # Either there is a single target and thus a single project,
555 # or we are a single project-file for which a project
556 # already exists
557 $project=$parent_project;
558 } else {
559 $project=[];
560 project_init($project, $path, \@global_settings);
561 }
562 my $project_settings=@$project[$P_SETTINGS];
563
564 if ($filename =~ /.dsp$/i) {
565 # First find out what this project file contains:
566 # collect all sources, find targets and settings
567 if (!open(FILEI,$filename)) {
568 print STDERR "error: unable to open $filename for reading:\n";
569 print STDERR " $!\n";
570 return;
571 }
572 my $sfilet;
573 while (<FILEI>) {
574 # Remove any trailing CtrlZ, which isn't strictly in the file
575 if (/\x1A/) {
576 s/\x1A//;
577 last if (/^$/)
578 }
579
580 # Remove any trailing CrLf
581 s/\r\n$/\n/;
582 if (!/\n$/) {
583 # Make sure all lines are '\n' terminated
584 $_ .= "\n";
585 }
586
587 if (/^\# Microsoft Developer Studio Project File - Name=\"([^\"]+)/) {
André Hentschelc0bd2912009-08-29 13:10:01 +0200588 $prj_name="$1";
André Hentschel5f059ed2009-11-21 18:13:44 +0100589 $prj_name=~s/\s+/_/g;
André Hentscheldc21b4f2009-04-02 18:53:14 +0200590 #print $prj_name;
591 next;
592 } elsif (/^# TARGTYPE/) {
593 if (/[[:space:]]0x0101$/) {
André Hentschelebde8052010-05-10 19:59:01 +0200594 # Application
595 $prj_target_type=$TT_GUIEXE;
André Hentscheldc21b4f2009-04-02 18:53:14 +0200596 }elsif (/[[:space:]]0x0102$/) {
André Hentschelebde8052010-05-10 19:59:01 +0200597 # Dynamic-Link Library
598 $prj_target_type=$TT_DLL;
André Hentscheldc21b4f2009-04-02 18:53:14 +0200599 }elsif (/[[:space:]]0x0103$/) {
André Hentschelebde8052010-05-10 19:59:01 +0200600 # Console Application
601 $prj_target_type=$TT_CUIEXE;
André Hentscheldc21b4f2009-04-02 18:53:14 +0200602 }elsif (/[[:space:]]0x0104$/) {
André Hentschelebde8052010-05-10 19:59:01 +0200603 # Static Library
André Hentscheldc21b4f2009-04-02 18:53:14 +0200604 }
605 next;
606 } elsif (/^# ADD CPP(.*)/ && $found_cfg==1) {
607 $prj_target_cflags=$1;
608 @prj_target_options=split(" /", $prj_target_cflags);
609 $prj_target_cflags="";
610 foreach ( @prj_target_options ) {
611 if ($_ eq "") {
612 # empty
613 } elsif (/nologo/) {
614 # Suppress Startup Banner and Information Messages
615 } elsif (/^W0$/) {
616 # Turns off all warning messages
617 $prj_target_cflags.="-w ";
618 } elsif (/^W[123]$/) {
619 # Warning Level
620 $prj_target_cflags.="-W ";
621 } elsif (/^W4$/) {
622 # Warning Level
623 $prj_target_cflags.="-Wall ";
624 } elsif (/^WX$/) {
625 # Warnings As Errors
626 $prj_target_cflags.="-Werror ";
627 } elsif (/^Gm$/) {
628 # Enable Minimal Rebuild
629 } elsif (/^GX$/) {
630 # Enable Exception Handling
631 $prj_target_cflags.="-fexceptions ";
632 } elsif (/^Z[d7iI]$/) {
633 # Debug Info
634 $prj_target_cflags.="-g ";
635 } elsif (/^Od$/) {
636 # Disable Optimizations
637 $prj_target_cflags.="-O0 ";
638 } elsif (/^O1$/) {
639 # Minimize Size
640 $prj_target_cflags.="-Os ";
641 } elsif (/^O2$/) {
642 # Maximize Speed
643 $prj_target_cflags.="-O2 ";
644 } elsif (/^Ob0$/) {
645 # Disables inline Expansion
646 $prj_target_cflags.="-fno-inline ";
647 } elsif (/^Ob1$/) {
André Hentschele1cdd972009-04-25 16:27:42 +0200648 #In-line Function Expansion
649 $prj_target_cflags.="-finline-functions ";
André Hentscheldc21b4f2009-04-02 18:53:14 +0200650 } elsif (/^Ob2$/) {
651 # auto In-line Function Expansion
652 $prj_target_cflags.="-finline-functions ";
André Hentschele1cdd972009-04-25 16:27:42 +0200653 } elsif (/^Ox$/) {
654 # Use maximum optimization
655 $prj_target_cflags.="-O3 ";
André Hentscheldc21b4f2009-04-02 18:53:14 +0200656 } elsif (/^Oy$/) {
657 # Frame-Pointer Omission
658 $prj_target_cflags.="-fomit-frame-pointer ";
André Hentscheldc31d872009-04-25 16:41:48 +0200659 } elsif (/^Oy-$/) {
660 # Frame-Pointer Omission
661 $prj_target_cflags.="-fno-omit-frame-pointer ";
André Hentscheldc21b4f2009-04-02 18:53:14 +0200662 } elsif (/^GZ$/) {
663 # Catch Release-Build Errors in Debug Build
664 } elsif (/^M[DLT]d?$/) {
665 # Use Multithreaded Run-Time Library
666 } elsif (/^D\s*\"(.*)\"/) {
667 # Preprocessor Definitions
André Hentschele1e9dc32009-08-13 16:43:37 +0200668 $prj_target_defines.="-D".$1." ";
André Hentschelabc68c12009-05-19 21:01:55 +0200669 } elsif (/^I\s*\"(.*)\"/) {
André Hentscheldc21b4f2009-04-02 18:53:14 +0200670 # Additional Include Directories
André Hentschelabc68c12009-05-19 21:01:55 +0200671 $sfilet=$1;
672 $sfilet=~s/\\/\//g;
673 push @{@$project_settings[$T_INCLUDE_PATH]},"-I".$sfilet." ";
André Hentscheldc21b4f2009-04-02 18:53:14 +0200674 } elsif (/^U\s*\"(.*)\"/) {
675 # Undefines a previously defined symbol
676 $prj_target_cflags.="-U".$1." ";
677 } elsif (/^Fp/) {
678 # Name .PCH File
679 } elsif (/^F[Rr]/) {
680 # Create .SBR File
681 } elsif (/^YX$/) {
682 # Automatic Use of Precompiled Headers
683 } elsif (/^FD$/) {
684 # Generate File Dependencies
685 } elsif (/^c$/) {
686 # Compile Without Linking
687 # this option is always present and is already specified in the suffix rules
688 } elsif (/^GB$/) {
689 # Blend Optimization
690 $prj_target_cflags.="-mcpu=pentiumpro -D_M_IX86=500 ";
691 } elsif (/^G6$/) {
692 # Pentium Pro Optimization
693 $prj_target_cflags.="-march=pentiumpro -D_M_IX86=600 ";
694 } elsif (/^G5$/) {
695 # Pentium Optimization
696 $prj_target_cflags.="-mcpu=pentium -D_M_IX86=500 ";
697 } elsif (/^G3$/) {
698 # 80386 Optimization
699 $prj_target_cflags.="-mcpu=i386 -D_M_IX86=300 ";
700 } elsif (/^G4$/) {
701 # 80486 Optimization
702 $prj_target_cflags.="-mcpu=i486 -D_M_IX86=400 ";
703 } elsif (/^Yc/) {
704 # Create Precompiled Header
705 } elsif (/^Yu/) {
706 # Use Precompiled Header
707 } elsif (/^Za$/) {
708 # Disable Language Extensions
709 $prj_target_cflags.="-ansi ";
710 } elsif (/^Ze$/) {
711 # Enable Microsoft Extensions
712 } elsif (/^Zm[[:digit:]]+$/) {
713 # Specify Memory Allocation Limit
714 } elsif (/^Zp1?$/) {
715 # Packs structures on 1-byte boundaries
716 $prj_target_cflags.="-fpack-struct ";
717 } elsif (/^Zp(2|4|8|16)$/) {
718 # Struct Member Alignment
719 $prj_target_cflags.="-fpack-struct=".$1;
720 } else {
721 print "C compiler option $_ not implemented\n";
722 }
723 }
724
725 #print "\nOptions: $prj_target_cflags\n";
726 next;
727 } elsif (/^# ADD LINK32(.*)/ && $found_cfg==1) {
728 $prj_target_ldflags=$1;
729 @prj_target_options=split(" /", $prj_target_ldflags);
730 $prj_target_ldflags="";
731 $prj_target_libs=$prj_target_options[0];
André Hentscheldc21b4f2009-04-02 18:53:14 +0200732 $prj_target_libs=~s/\\/\//g;
733 $prj_target_libs=~s/\.lib//g;
André Hentschelb09d6d02009-04-21 20:32:34 +0200734 $prj_target_libs=~s/\s+/ -l/g;
André Hentscheldc21b4f2009-04-02 18:53:14 +0200735 shift (@prj_target_options);
736 foreach ( @prj_target_options ) {
737 if ($_ eq "") {
738 # empty
739 } elsif (/^base:(.*)/) {
740 # Base Address
741 $prj_target_ldflags.="--image-base ".$1." ";
742 } elsif (/^debug$/) {
743 # Generate Debug Info
744 } elsif (/^dll$/) {
745 # Build a DLL
André Hentschelebde8052010-05-10 19:59:01 +0200746 $prj_target_type=$TT_DLL;
André Hentscheldc21b4f2009-04-02 18:53:14 +0200747 } elsif (/^incremental:[[:alpha:]]+$/) {
748 # Link Incrmentally
749 } elsif (/^implib:/) {
750 # Name import library
751 } elsif (/^libpath:\"(.*)\"/) {
752 # Additional Libpath
753 push @{@$project_settings[$T_DLL_PATH]},"-L$1";
754 } elsif (/^machine:[[:alnum:]]+$/) {
755 # Specify Target Platform
756 } elsif (/^map/) {
757 # Generate Mapfile
758 if (/^map:(.*)/) {
759 $prj_target_ldflags.="-Map ".$1." ";
760 } else {
761 $prj_target_ldflags.="-Map ".$prj_name.".map ";
762 }
763 } elsif (/^nologo$/) {
764 # Suppress Startup Banner and Information Messages
765 } elsif (/^out:/) {
766 # Output File Name
767 # may use it as Target?
768 } elsif (/^pdbtype:/) {
769 # Program Database Storage
770 } elsif (/^subsystem:/) {
771 # Specify Subsystem
772 } elsif (/^version:[[:digit:].]+$/) {
773 # Version Information
774 } else {
775 print "Linker option $_ not implemented\n";
776 }
777 }
778 next;
779 } elsif (/^LIB32=/ && $found_cfg==1) {
780 #$libflag = 1;
781 next;
782 } elsif (/^SOURCE=(.*)$/) {
783 my @components=split /[\/\\]+/, $1;
784 $sfilet=search_from($path, \@components);
André Hentschelc0bd2912009-08-29 13:10:01 +0200785 if ($sfilet =~ /\.c$/i and $sfilet !~ /\.(dbg|spec)\.c$/) {
André Hentscheldc21b4f2009-04-02 18:53:14 +0200786 push @sources_c,$sfilet;
787 } elsif ($sfilet =~ /\.(cpp|cxx)$/i) {
788 if ($sfilet =~ /^stdafx.cpp$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) {
789 push @sources_misc,$sfilet;
790 @$project_settings[$T_FLAGS]|=$TF_MFC;
791 } else {
792 push @sources_cxx,$sfilet;
793 }
794 } elsif ($sfilet =~ /\.rc$/i) {
795 push @sources_rc,$sfilet;
796 } elsif ($sfilet =~ /\.(h|hxx|hpp|inl|rc2|dlg)$/i) {
797 push @sources_misc,$sfilet;
798 if ($sfilet =~ /^stdafx.h$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) {
799 @$project_settings[$T_FLAGS]|=$TF_MFC;
800 }
801 }
802 next;
803
804 } elsif (/^# (Begin|End) Source File/) {
805 # Source-Files already handled
806 next;
807 } elsif (/^# (Begin|End) Group/) {
808 # Groups are ignored
809 next;
810 } elsif (/^# (Begin|End) Custom Build/) {
811 # Custom Builds are ignored
812 next;
813 } elsif (/^# ADD LIB32 /) {
814 #"ARFLAGS=rus"
815 next;
816 } elsif (/^# Begin Target$/) {
817 # Targets are ignored
818 next;
819 } elsif (/^# End Target$/) {
820 # Targets are ignored
821 next;
822 } elsif (/^!/) {
823 if ($found_cfg == 1) {
824 $found_cfg=0;
825 }
826 if (/if (.*)\(CFG\)" == "(.*)"/i) {
827 if ($2 eq $prj_cfg) {
828 $found_cfg=1;
829 }
830 }
831 next;
832 } elsif (/^CFG=(.*)/i) {
833 $prj_cfg=$1;
834 next;
835 }
836 else { # Line recognized
837 # print "|\n";
838 }
839 }
840 close(FILEI);
841
842 push @{@$project_settings[$T_LIBRARIES]},$prj_target_libs;
843 push @{@$project_settings[$T_CEXTRA]},$prj_target_cflags;
844 push @{@$project_settings[$T_CXXEXTRA]},$prj_target_cflags;
André Hentschele1e9dc32009-08-13 16:43:37 +0200845 push @{@$project_settings[$T_DEFINES]},$prj_target_defines;
André Hentscheldc21b4f2009-04-02 18:53:14 +0200846 push @{@$project_settings[$T_LDFLAGS]},$prj_target_ldflags;
847 } elsif ($filename =~ /.vcproj$/i) {
André Hentschel89ec1f12009-05-30 16:58:30 +0200848 # Import XML::LibXML, you need the libxml package (deb: libxml-libxml-perl, rpm: perl-libxml-perl)
849 require XML::LibXML;
André Hentscheldc21b4f2009-04-02 18:53:14 +0200850
André Hentschel89ec1f12009-05-30 16:58:30 +0200851 my $xmlparser = XML::LibXML->new();
852 my $project_xml = $xmlparser->parse_file($filename);
André Hentscheldc21b4f2009-04-02 18:53:14 +0200853 my $sfilet;
André Hentschel89ec1f12009-05-30 16:58:30 +0200854 my $configt;
855
856 foreach my $vc_project ($project_xml->findnodes('/VisualStudioProject')) {
857 foreach my $vc_project_attr ($vc_project->attributes) {
858 if ($vc_project_attr->getName eq "Name") {
André Hentschelc0bd2912009-08-29 13:10:01 +0200859 $prj_name=$vc_project_attr->getValue;
André Hentschel5f059ed2009-11-21 18:13:44 +0100860 $prj_name=~s/\s+/_/g;
André Hentschel89ec1f12009-05-30 16:58:30 +0200861 last;
862 }
863 }
864 }
865
866 for (my $flevel = 0; $flevel <= 5; $flevel++) {
867 foreach my $vc_file ($project_xml->findnodes('/VisualStudioProject/Files/'.('Filter/' x $flevel).'File')) {
868 foreach my $vc_file_attr ($vc_file->attributes) {
869 if ($vc_file_attr->getName eq "RelativePath") {
870 $sfilet = $vc_file_attr->getValue;
871 $sfilet=~s/\\\\/\\/g; #remove double backslash
872 $sfilet=~s/^\.\\//; #remove starting 'this directory'
873 $sfilet=~s/\\/\//g; #make slashes out of backslashes
André Hentschelc0bd2912009-08-29 13:10:01 +0200874 if ($sfilet =~ /\.c$/i and $sfilet !~ /\.(dbg|spec)\.c$/) {
André Hentschel89ec1f12009-05-30 16:58:30 +0200875 push @sources_c,$sfilet;
876 } elsif ($sfilet =~ /\.(cpp|cxx)$/i) {
877 if ($sfilet =~ /^stdafx.cpp$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) {
878 push @sources_misc,$sfilet;
879 @$project_settings[$T_FLAGS]|=$TF_MFC;
880 } else {
881 push @sources_cxx,$sfilet;
882 }
883 } elsif ($sfilet =~ /\.rc$/i) {
884 push @sources_rc,$sfilet;
885 } elsif ($sfilet =~ /\.(h|hxx|hpp|inl|rc2|dlg)$/i) {
André Hentscheldc21b4f2009-04-02 18:53:14 +0200886 push @sources_misc,$sfilet;
André Hentschel89ec1f12009-05-30 16:58:30 +0200887 if ($sfilet =~ /^stdafx.h$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) {
888 @$project_settings[$T_FLAGS]|=$TF_MFC;
889 }
André Hentscheldc21b4f2009-04-02 18:53:14 +0200890 }
891 }
892 }
893 }
894 }
André Hentschel89ec1f12009-05-30 16:58:30 +0200895
896 my @vc_configurations = $project_xml->findnodes('/VisualStudioProject/Configurations/Configuration');
897 my $vc_configuration = $vc_configurations[0];
898 foreach my $vc_configuration_attr ($vc_configuration->attributes) {
899 if ($vc_configuration_attr->getName eq "ConfigurationType") {
900 if ($vc_configuration_attr->getValue==1) {
André Hentschelebde8052010-05-10 19:59:01 +0200901 $prj_target_type=$TT_GUIEXE; # Application
André Hentschel89ec1f12009-05-30 16:58:30 +0200902 } elsif ($vc_configuration_attr->getValue==2) {
André Hentschelebde8052010-05-10 19:59:01 +0200903 $prj_target_type=$TT_DLL; # Dynamic-Link Library
André Hentscheldc21b4f2009-04-02 18:53:14 +0200904 }
André Hentscheldc21b4f2009-04-02 18:53:14 +0200905 }
906 }
André Hentschel89ec1f12009-05-30 16:58:30 +0200907
908 foreach my $vc_configuration_tools ($vc_configuration->findnodes('Tool')) {
909 my @find_tool = $vc_configuration_tools->attributes;
André Hentschelc9cea6f2009-08-10 17:44:09 +0200910 if ($find_tool[0]->getValue eq "VCCLCompilerTool") {
911 foreach my $vc_compiler_tool ($vc_configuration_tools->attributes) {
912 if ($vc_compiler_tool->getName eq "Optimization") {$prj_target_cflags.="-O".$vc_compiler_tool->getValue." ";}
913 if ($vc_compiler_tool->getName eq "WarningLevel") {
914 if ($vc_compiler_tool->getValue==0) {
915 $prj_target_cflags.="-w ";
916 } elsif ($vc_compiler_tool->getValue<4) {
917 $prj_target_cflags.="-W ";
918 } elsif ($vc_compiler_tool->getValue==4) {
919 $prj_target_cflags.="-Wall ";
920 } elsif ($vc_compiler_tool->getValue eq "X") {
921 $prj_target_cflags.="-Werror ";
922 }
923 }
924 if ($vc_compiler_tool->getName eq "PreprocessorDefinitions") {
925 $configt=$vc_compiler_tool->getValue;
926 $configt=~s/;/ -D/g;
André Hentschele1e9dc32009-08-13 16:43:37 +0200927 $prj_target_defines.="-D".$configt." ";
André Hentschelc9cea6f2009-08-10 17:44:09 +0200928 }
929 if ($vc_compiler_tool->getName eq "AdditionalIncludeDirectories") {
930 $configt=$vc_compiler_tool->getValue;
931 $configt=~s/\\/\//g;
932 $configt=~s/;/ -I/g;
933 push @{@$project_settings[$T_INCLUDE_PATH]},"-I".$configt;
André Hentschel89ec1f12009-05-30 16:58:30 +0200934 }
935 }
André Hentschelc9cea6f2009-08-10 17:44:09 +0200936 }
937 if ($find_tool[0]->getValue eq "VCLinkerTool") {
938 foreach my $vc_linker_tool ($vc_configuration_tools->attributes) {
939 if ($vc_linker_tool->getName eq "AdditionalDependencies") {
940 $prj_target_libs=" ".$vc_linker_tool->getValue;
941 $prj_target_libs=~s/\\/\//g;
942 $prj_target_libs=~s/\.lib//g;
943 $prj_target_libs=~s/\s+/ -l/g;
944 }
André Hentschel89ec1f12009-05-30 16:58:30 +0200945 }
946 }
947 }
948
André Hentschelc9cea6f2009-08-10 17:44:09 +0200949 push @{@$project_settings[$T_LIBRARIES]},$prj_target_libs;
André Hentscheldc21b4f2009-04-02 18:53:14 +0200950 push @{@$project_settings[$T_CEXTRA]},$prj_target_cflags;
951 push @{@$project_settings[$T_CXXEXTRA]},$prj_target_cflags;
André Hentschele1e9dc32009-08-13 16:43:37 +0200952 push @{@$project_settings[$T_DEFINES]},$prj_target_defines;
André Hentscheldc21b4f2009-04-02 18:53:14 +0200953 }
954
André Hentscheldc21b4f2009-04-02 18:53:14 +0200955 # Add this project to the project list, except for
956 # the main project which is already in the list.
957 if ($is_sub_project == 1) {
958 push @projects,$project;
959 }
960
961 # Ask for project-wide options
962 if ($opt_ask_project_options == $OPT_ASK_YES) {
963 my $flag_desc="";
964 if ((@$project_settings[$T_FLAGS] & $TF_MFC)!=0) {
965 $flag_desc="mfc";
966 }
967 print "* Type any project-wide options (-D/-I/-P/-i/-L/-l/--mfc),\n";
968 if (defined $flag_desc) {
969 print "* (currently $flag_desc)\n";
970 }
971 print "* or 'skip' to skip the target specific options,\n";
972 print "* or 'never' to not be asked this question again:\n";
973 while (1) {
974 my $options=<STDIN>;
975 chomp $options;
976 if ($options eq "skip") {
977 $opt_ask_target_options=$OPT_ASK_SKIP;
978 last;
979 } elsif ($options eq "never") {
980 $opt_ask_project_options=$OPT_ASK_NO;
981 last;
982 } elsif (source_set_options($project_settings,$options)) {
983 last;
984 }
985 print "Please re-enter the options:\n";
986 }
987 }
988
André Hentscheldc21b4f2009-04-02 18:53:14 +0200989 my @local_dlls=();
990 my @local_depends=();
991 my @exe_list=();
André Hentscheldc21b4f2009-04-02 18:53:14 +0200992
André Hentschelc0bd2912009-08-29 13:10:01 +0200993 # Create the target...
994 my $target=[];
995 target_init($target);
André Hentscheldc21b4f2009-04-02 18:53:14 +0200996
André Hentschelebde8052010-05-10 19:59:01 +0200997 if ($prj_target_type!=$TT_DLL) {
André Hentschelc0bd2912009-08-29 13:10:01 +0200998 $prj_name=lc($prj_name.".exe");
999 @$target[$T_TYPE]=$opt_target_type;
1000 push @exe_list,$target;
1001 push @{@$target[$T_LDFLAGS]},(@$target[$T_TYPE] == $TT_CUIEXE ? "-mconsole" : "-mwindows");
1002 } else {
1003 $prj_name=lc($prj_name.".dll");
1004 @$target[$T_TYPE]=$TT_DLL;
1005 push @local_depends,"$prj_name.so";
1006 push @local_dlls,$prj_name;
1007 my $canon=canonize($prj_name);
1008 push @{@$target[$T_LDFLAGS]},("-shared","\$(${canon}_MODULE:%=%.spec)");
André Hentscheldc21b4f2009-04-02 18:53:14 +02001009 }
André Hentschelc0bd2912009-08-29 13:10:01 +02001010
1011 @$target[$T_NAME]=$prj_name;
1012 @$target[$T_FLAGS]|=@$project_settings[$T_FLAGS];
1013
1014 # This is the default link list of Visual Studio
1015 my @std_imports=qw(odbc32 ole32 oleaut32 winspool odbccp32);
1016 my @std_libraries=qw(uuid);
1017 if ((@$target[$T_FLAGS] & $TF_NODLLS) == 0) {
1018 @$target[$T_DLLS]=\@std_imports;
1019 @$target[$T_LIBRARIES]=\@std_libraries;
1020 } else {
1021 @$target[$T_DLLS]=[];
1022 @$target[$T_LIBRARIES]=[];
1023 }
1024 if ((@$target[$T_FLAGS] & $TF_NOMSVCRT) == 0) {
1025 push @{@$target[$T_LDFLAGS]},"-mno-cygwin";
André Hentschel65900b42010-04-21 20:22:13 +02001026 if ($opt_arch != $OPT_ARCH_DEFAULT) {
1027 push @{@$target[$T_LDFLAGS]},"-m$opt_arch";
1028 }
André Hentschelc0bd2912009-08-29 13:10:01 +02001029 }
1030 push @{@$project[$P_TARGETS]},$target;
1031
1032 # Ask for target-specific options
1033 if ($opt_ask_target_options == $OPT_ASK_YES) {
1034 my $flag_desc="";
1035 if ((@$target[$T_FLAGS] & $TF_MFC)!=0) {
1036 $flag_desc=" (mfc";
1037 }
1038 if ($flag_desc ne "") {
1039 $flag_desc.=")";
1040 }
1041 print "* Specify any link option (-P/-i/-L/-l/--mfc) specific to the target\n";
1042 print "* \"$prj_name\"$flag_desc or 'never' to not be asked this question again:\n";
1043 while (1) {
1044 my $options=<STDIN>;
1045 chomp $options;
1046 if ($options eq "never") {
1047 $opt_ask_target_options=$OPT_ASK_NO;
1048 last;
1049 } elsif (source_set_options($target,$options)) {
1050 last;
1051 }
1052 print "Please re-enter the options:\n";
1053 }
1054 }
1055 if (@$target[$T_FLAGS] & $TF_MFC) {
1056 @$project_settings[$T_FLAGS]|=$TF_MFC;
1057 push @{@$target[$T_DLL_PATH]},"\$(MFC_LIBRARY_PATH)";
1058 push @{@$target[$T_DLLS]},"mfc.dll";
1059 # FIXME: Link with the MFC in the Unix sense, until we
1060 # start exporting the functions properly.
1061 push @{@$target[$T_LIBRARY_PATH]},"\$(MFC_LIBRARY_PATH)";
1062 push @{@$target[$T_LIBRARIES]},"mfc";
1063 }
1064
1065 # Match sources...
1066 push @{@$target[$T_SOURCES_C]},@{@$project_settings[$T_SOURCES_C]},@sources_c;
1067 @$project_settings[$T_SOURCES_C]=[];
1068 @sources_c=();
1069 push @{@$target[$T_SOURCES_CXX]},@{@$project_settings[$T_SOURCES_CXX]},@sources_cxx;
1070 @$project_settings[$T_SOURCES_CXX]=[];
1071 @sources_cxx=();
1072 push @{@$target[$T_SOURCES_RC]},@{@$project_settings[$T_SOURCES_RC]},@sources_rc;
1073 @$project_settings[$T_SOURCES_RC]=[];
1074 @sources_rc=();
1075 push @{@$target[$T_SOURCES_MISC]},@{@$project_settings[$T_SOURCES_MISC]},@sources_misc;
1076 @$project_settings[$T_SOURCES_MISC]=[];
1077 @sources_misc=();
1078
1079 @$target[$T_SOURCES_C]=[sort @{@$target[$T_SOURCES_C]}];
1080 @$target[$T_SOURCES_CXX]=[sort @{@$target[$T_SOURCES_CXX]}];
1081 @$target[$T_SOURCES_RC]=[sort @{@$target[$T_SOURCES_RC]}];
1082 @$target[$T_SOURCES_MISC]=[sort @{@$target[$T_SOURCES_MISC]}];
1083
André Hentscheldc21b4f2009-04-02 18:53:14 +02001084 if ($opt_ask_target_options == $OPT_ASK_SKIP) {
1085 $opt_ask_target_options=$OPT_ASK_YES;
1086 }
1087
1088 if ((@$project_settings[$T_FLAGS] & $TF_NOMSVCRT) == 0) {
1089 push @{@$project_settings[$T_CEXTRA]},"-mno-cygwin";
1090 push @{@$project_settings[$T_CXXEXTRA]},"-mno-cygwin";
André Hentschel65900b42010-04-21 20:22:13 +02001091 if ($opt_arch != $OPT_ARCH_DEFAULT) {
1092 push @{@$project_settings[$T_CEXTRA]},"-m$opt_arch";
1093 push @{@$project_settings[$T_CXXEXTRA]},"-m$opt_arch";
1094 }
André Hentscheldc21b4f2009-04-02 18:53:14 +02001095 }
1096
1097 if (@$project_settings[$T_FLAGS] & $TF_MFC) {
1098 push @{@$project_settings[$T_INCLUDE_PATH]},"\$(MFC_INCLUDE_PATH)";
1099 }
1100 # The sources that did not match, if any, go to the extra
1101 # source list of the project settings
1102 foreach my $source (@sources_c) {
1103 if ($source ne "") {
1104 push @{@$project_settings[$T_SOURCES_C]},$source;
1105 }
1106 }
1107 @$project_settings[$T_SOURCES_C]=[sort @{@$project_settings[$T_SOURCES_C]}];
1108 foreach my $source (@sources_cxx) {
1109 if ($source ne "") {
1110 push @{@$project_settings[$T_SOURCES_CXX]},$source;
1111 }
1112 }
1113 @$project_settings[$T_SOURCES_CXX]=[sort @{@$project_settings[$T_SOURCES_CXX]}];
1114 foreach my $source (@sources_rc) {
1115 if ($source ne "") {
1116 push @{@$project_settings[$T_SOURCES_RC]},$source;
1117 }
1118 }
1119 @$project_settings[$T_SOURCES_RC]=[sort @{@$project_settings[$T_SOURCES_RC]}];
1120 foreach my $source (@sources_misc) {
1121 if ($source ne "") {
1122 push @{@$project_settings[$T_SOURCES_MISC]},$source;
1123 }
1124 }
1125 @$project_settings[$T_SOURCES_MISC]=[sort @{@$project_settings[$T_SOURCES_MISC]}];
1126}
1127
1128##
André Hentscheldf5c4172009-04-02 18:53:24 +02001129# Scans the specified workspace file to find the project files
1130sub source_scan_workspace_file($);
1131sub source_scan_workspace_file($)
1132{
1133 my $filename=$_[0];
1134 my $path=dirname($filename);
1135 my @components;
1136
1137 if (! -e $filename) {
1138 return;
1139 }
1140
1141 if (!open(FILEIWS,$filename)) {
1142 print STDERR "error: unable to open $filename for reading:\n";
1143 print STDERR " $!\n";
1144 return;
1145 }
1146
1147 my $prj_name;
1148 my $prj_path;
1149
1150 if ($filename =~ /.dsw$/i) {
1151 while (<FILEIWS>) {
1152 # Remove any trailing CrLf
1153 s/\r\n$/\n/;
1154
1155 # catch a project definition
André Hentschel925b1442009-05-01 11:37:13 +02001156 if (/^Project:\s\"(.*)\"=(.*)\s-/) {
André Hentscheldf5c4172009-04-02 18:53:24 +02001157 $prj_name=$1;
1158 $prj_path=$2;
André Hentschel1199d052009-04-25 15:47:59 +02001159 @components=split /[\/\\]+/, $prj_path;
André Hentscheldf5c4172009-04-02 18:53:24 +02001160 $prj_path=search_from($path, \@components);
1161 print "Name: $prj_name\nPath: $prj_path\n";
1162 source_scan_project_file(\@main_project,1,$prj_path);
1163 next;
1164 } elsif (/^#/) {
1165 # ignore Comments
1166 } elsif (/\w:/) {
1167 print STDERR "unknown section $_\n";
1168 } elsif (/^Microsoft(.*)Studio(.*)File,\sFormat Version\s(.*)/) {
1169 print "\nFileversion: $3\n";
1170 }
1171 }
1172 close(FILEIWS);
1173 } elsif ($filename =~ /.sln$/i) {
1174 while (<FILEIWS>) {
1175 # Remove any trailing CrLf
1176 s/\r\n$/\n/;
1177
1178 # catch a project definition
1179 if (/^Project(.*)=\s*"(.*)",\s*"(.*)",\s*"(.*)"/) {
1180 $prj_name=$2;
1181 $prj_path=$3;
1182 @components=split /[\/\\]+/, $3;
1183 $prj_path=search_from($path, \@components);
1184 print "Name: $prj_name\nPath: $prj_path\n";
1185 source_scan_project_file(\@main_project,1,$prj_path);
1186 next;
1187 } elsif (/^Microsoft(.*)Studio(.*)File,\sFormat Version\s(.*)/) {
1188 print "\nFileversion: $3\n";
1189 }
1190 }
1191 close(FILEIWS);
1192 }
1193
1194 @projects=sort { @$a[$P_PATH] cmp @$b[$P_PATH] } @projects;
1195}
1196
1197##
Francois Gouget755bb922000-11-05 05:23:39 +00001198# Scans the specified directory to:
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001199# - see if we should create a Makefile in this directory. We normally do
Francois Gouget755bb922000-11-05 05:23:39 +00001200# so if we find a project file and sources
1201# - get a list of targets for this directory
1202# - get the list of source files
Francois Gougete3d26a32002-09-06 18:36:19 +00001203sub source_scan_directory($$$$);
1204sub source_scan_directory($$$$)
Francois Gouget755bb922000-11-05 05:23:39 +00001205{
1206 # a reference to the parent's project
1207 my $parent_project=$_[0];
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001208 # the full relative path to the current directory, including a
Francois Gouget755bb922000-11-05 05:23:39 +00001209 # trailing '/', or an empty string if this is the top level directory
1210 my $path=$_[1];
1211 # the name of this directory, including a trailing '/', or an empty
1212 # string if this is the top level directory
1213 my $dirname=$_[2];
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001214 # if set then no targets will be looked for and the sources will all
Francois Gouget3266b882001-03-03 00:17:11 +00001215 # end up in the parent_project's 'misc' bucket
1216 my $no_target=$_[3];
Francois Gouget755bb922000-11-05 05:23:39 +00001217
1218 # reference to the project for this directory. May not be used
1219 my $project;
1220 # list of targets found in the 'current' directory
1221 my %targets;
1222 # list of sources found in the current directory
1223 my @sources_c=();
1224 my @sources_cxx=();
1225 my @sources_rc=();
1226 my @sources_misc=();
1227 # true if this directory contains a Windows project
1228 my $has_win_project=0;
Francois Gougetc7201ce2004-03-03 02:19:20 +00001229 # true if this directory contains headers
1230 my $has_headers=0;
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001231 # If we don't find any executable/library then we might make up targets
1232 # from the list of .dsp/.mak files we find since they usually have the
Francois Gouget755bb922000-11-05 05:23:39 +00001233 # same name as their target.
André Hentschelbb8f2c42010-05-10 19:58:12 +02001234 my @prj_files=();
Francois Gouget755bb922000-11-05 05:23:39 +00001235 my @mak_files=();
1236
1237 if (defined $opt_single_target or $dirname eq "") {
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001238 # Either there is a single target and thus a single project,
1239 # or we are in the top level directory for which a project
Francois Gouget755bb922000-11-05 05:23:39 +00001240 # already exists
1241 $project=$parent_project;
1242 } else {
1243 $project=[];
Francois Gouget786a2cd2009-02-25 10:33:48 +01001244 project_init($project, $path, \@global_settings);
Francois Gouget755bb922000-11-05 05:23:39 +00001245 }
Francois Gougeta106edb2000-11-10 22:29:11 +00001246 my $project_settings=@$project[$P_SETTINGS];
Francois Gouget755bb922000-11-05 05:23:39 +00001247
1248 # First find out what this directory contains:
1249 # collect all sources, targets and subdirectories
1250 my $directory=get_directory_contents($path);
Francois Gougete3d26a32002-09-06 18:36:19 +00001251 foreach my $dentry (@$directory) {
Francois Gouget755bb922000-11-05 05:23:39 +00001252 if ($dentry =~ /^\./) {
1253 next;
1254 }
1255 my $fullentry="$path$dentry";
1256 if (-d "$fullentry") {
1257 if ($dentry =~ /^(Release|Debug)/i) {
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001258 # These directories are often used to store the object files and the
Francois Gouget755bb922000-11-05 05:23:39 +00001259 # resulting executable/library. They should not contain anything else.
1260 my @candidates=grep /\.(exe|dll)$/i, @{get_directory_contents("$fullentry")};
Francois Gougete3d26a32002-09-06 18:36:19 +00001261 foreach my $candidate (@candidates) {
Francois Gouget635eb3c2002-09-26 03:20:59 +00001262 $targets{$candidate}=1;
Francois Gouget755bb922000-11-05 05:23:39 +00001263 }
Francois Gouget4ec10592000-12-02 20:12:45 +00001264 } elsif ($dentry =~ /^include/i) {
1265 # This directory must contain headers we're going to need
1266 push @{@$project_settings[$T_INCLUDE_PATH]},"-I$dentry";
Francois Gouget3266b882001-03-03 00:17:11 +00001267 source_scan_directory($project,"$fullentry/","$dentry/",1);
Francois Gouget755bb922000-11-05 05:23:39 +00001268 } else {
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001269 # Recursively scan this directory. Any source file that cannot be
1270 # attributed to a project in one of the subdirectories will be
Francois Gouget3266b882001-03-03 00:17:11 +00001271 # attributed to this project.
1272 source_scan_directory($project,"$fullentry/","$dentry/",$no_target);
Francois Gouget755bb922000-11-05 05:23:39 +00001273 }
1274 } elsif (-f "$fullentry") {
Francois Gouget635eb3c2002-09-26 03:20:59 +00001275 if ($dentry =~ /\.(exe|dll)$/i) {
Francois Gouget755bb922000-11-05 05:23:39 +00001276 $targets{$dentry}=1;
Francois Gouget1dd53252003-10-28 21:13:54 +00001277 } elsif ($dentry =~ /\.c$/i and $dentry !~ /\.(dbg|spec)\.c$/) {
Francois Gouget755bb922000-11-05 05:23:39 +00001278 push @sources_c,"$dentry";
1279 } elsif ($dentry =~ /\.(cpp|cxx)$/i) {
Martin Wilck3aa9e8c2002-09-10 00:20:27 +00001280 if ($dentry =~ /^stdafx.cpp$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) {
Francois Gougeta106edb2000-11-10 22:29:11 +00001281 push @sources_misc,"$dentry";
Francois Gouget82747b72000-11-25 01:38:39 +00001282 @$project_settings[$T_FLAGS]|=$TF_MFC;
Francois Gougeta106edb2000-11-10 22:29:11 +00001283 } else {
1284 push @sources_cxx,"$dentry";
1285 }
Francois Gouget755bb922000-11-05 05:23:39 +00001286 } elsif ($dentry =~ /\.rc$/i) {
1287 push @sources_rc,"$dentry";
Francois Gouget3c6c20f2001-03-23 19:07:59 +00001288 } elsif ($dentry =~ /\.(h|hxx|hpp|inl|rc2|dlg)$/i) {
Francois Gougetc7201ce2004-03-03 02:19:20 +00001289 $has_headers=1;
Francois Gouget755bb922000-11-05 05:23:39 +00001290 push @sources_misc,"$dentry";
Martin Wilck3aa9e8c2002-09-10 00:20:27 +00001291 if ($dentry =~ /^stdafx.h$/i && !(@$project_settings[$T_FLAGS] & $TF_NOMFC)) {
Francois Gouget82747b72000-11-25 01:38:39 +00001292 @$project_settings[$T_FLAGS]|=$TF_MFC;
Francois Gougeta106edb2000-11-10 22:29:11 +00001293 }
André Hentschelbb8f2c42010-05-10 19:58:12 +02001294 } elsif ($dentry =~ /\.(dsp|vcproj)$/i) {
1295 push @prj_files,"$dentry";
Francois Gouget755bb922000-11-05 05:23:39 +00001296 $has_win_project=1;
1297 } elsif ($dentry =~ /\.mak$/i) {
1298 push @mak_files,"$dentry";
1299 $has_win_project=1;
1300 } elsif ($dentry =~ /^makefile/i) {
1301 $has_win_project=1;
1302 }
1303 }
1304 }
Francois Gouget755bb922000-11-05 05:23:39 +00001305
Francois Gougetc7201ce2004-03-03 02:19:20 +00001306 if ($has_headers) {
1307 push @{@$project_settings[$T_INCLUDE_PATH]},"-I.";
1308 }
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001309 # If we have a single target then all we have to do is assign
Francois Gouget755bb922000-11-05 05:23:39 +00001310 # all the sources to it and we're done
1311 # FIXME: does this play well with the --interactive mode?
1312 if ($opt_single_target) {
1313 my $target=@{@$project[$P_TARGETS]}[0];
1314 push @{@$target[$T_SOURCES_C]},map "$path$_",@sources_c;
1315 push @{@$target[$T_SOURCES_CXX]},map "$path$_",@sources_cxx;
1316 push @{@$target[$T_SOURCES_RC]},map "$path$_",@sources_rc;
1317 push @{@$target[$T_SOURCES_MISC]},map "$path$_",@sources_misc;
1318 return;
1319 }
Francois Gouget3266b882001-03-03 00:17:11 +00001320 if ($no_target) {
1321 my $parent_settings=@$parent_project[$P_SETTINGS];
1322 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_c;
1323 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_cxx;
1324 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_rc;
1325 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
Francois Gouget647bb8f2001-04-20 18:26:35 +00001326 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@{@$project_settings[$T_SOURCES_MISC]};
Francois Gouget3266b882001-03-03 00:17:11 +00001327 return;
1328 }
Francois Gouget755bb922000-11-05 05:23:39 +00001329
Francois Gouget755bb922000-11-05 05:23:39 +00001330 my $source_count=@sources_c+@sources_cxx+@sources_rc+
1331 @{@$project_settings[$T_SOURCES_C]}+
1332 @{@$project_settings[$T_SOURCES_CXX]}+
1333 @{@$project_settings[$T_SOURCES_RC]};
1334 if ($source_count == 0) {
1335 # A project without real sources is not a project, get out!
1336 if ($project!=$parent_project) {
Francois Gouget3266b882001-03-03 00:17:11 +00001337 my $parent_settings=@$parent_project[$P_SETTINGS];
Francois Gouget755bb922000-11-05 05:23:39 +00001338 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
1339 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@{@$project_settings[$T_SOURCES_MISC]};
1340 }
1341 return;
1342 }
1343 #print "targets=",%targets,"\n";
1344 #print "target_count=$target_count\n";
1345 #print "has_win_project=$has_win_project\n";
1346 #print "dirname=$dirname\n";
1347
1348 my $target_count;
1349 if (($has_win_project != 0) or ($dirname eq "")) {
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001350 # Deal with cases where we could not find any executable/library, and
Francois Gouget755bb922000-11-05 05:23:39 +00001351 # thus have no target, although we did find some sort of windows project.
1352 $target_count=keys %targets;
1353 if ($target_count == 0) {
1354 # Try to come up with a target list based on .dsp/.mak files
1355 my $prj_list;
André Hentschelbb8f2c42010-05-10 19:58:12 +02001356 if (@prj_files > 0) {
André Hentschel1a8fdf02010-05-11 20:03:04 +02001357 print "Projectfile found! You might want to try using it directly.\n";
André Hentschelbb8f2c42010-05-10 19:58:12 +02001358 $prj_list=\@prj_files;
Francois Gouget755bb922000-11-05 05:23:39 +00001359 } else {
André Hentschelbb8f2c42010-05-10 19:58:12 +02001360 $prj_list=\@mak_files;
Francois Gouget755bb922000-11-05 05:23:39 +00001361 }
Francois Gougete3d26a32002-09-06 18:36:19 +00001362 foreach my $filename (@$prj_list) {
André Hentschelbb8f2c42010-05-10 19:58:12 +02001363 $filename =~ s/\.(dsp|vcproj|mak)$//i;
Francois Gouget755bb922000-11-05 05:23:39 +00001364 if ($opt_target_type == $TT_DLL) {
Francois Gouget635eb3c2002-09-26 03:20:59 +00001365 $filename = "$filename.dll";
Francois Gouget755bb922000-11-05 05:23:39 +00001366 }
1367 $targets{$filename}=1;
1368 }
1369 $target_count=keys %targets;
1370 if ($target_count == 0) {
1371 # Still nothing, try the name of the directory
1372 my $name;
1373 if ($dirname eq "") {
1374 # Bad luck, this is the top level directory!
1375 $name=(split /\//, cwd)[-1];
1376 } else {
1377 $name=$dirname;
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001378 # Remove the trailing '/'. Also eliminate whatever is after the last
Francois Gouget755bb922000-11-05 05:23:39 +00001379 # '.' as it is likely to be meaningless (.orig, .new, ...)
1380 $name =~ s+(/|\.[^.]*)$++;
1381 if ($name eq "src") {
1382 # 'src' is probably a subdirectory of the real project directory.
1383 # Try again with the parent (if any).
1384 my $parent=$path;
1385 if ($parent =~ s+([^/]*)/[^/]*/$+$1+) {
1386 $name=$parent;
1387 } else {
1388 $name=(split /\//, cwd)[-1];
1389 }
1390 }
1391 }
1392 $name =~ s+(/|\.[^.]*)$++;
1393 if ($opt_target_type == $TT_DLL) {
André Hentschel6a5be432009-04-23 20:41:32 +02001394 $name = canonize($name).".dll";
Jeff Smithcaa74b62003-01-02 19:27:23 +00001395 } else {
André Hentschel6a5be432009-04-23 20:41:32 +02001396 $name = canonize($name).".exe";
Francois Gouget755bb922000-11-05 05:23:39 +00001397 }
1398 $targets{$name}=1;
1399 }
1400 }
1401
1402 # Ask confirmation to the user if he wishes so
1403 if ($opt_is_interactive == $OPT_ASK_YES) {
1404 my $target_list=join " ",keys %targets;
Francois Gougetfb5b5902000-11-30 20:34:39 +00001405 print "\n*** In ",($path?$path:"./"),"\n";
Francois Gougeta106edb2000-11-10 22:29:11 +00001406 print "* winemaker found the following list of (potential) targets\n";
1407 print "* $target_list\n";
1408 print "* Type enter to use it as is, your own comma-separated list of\n";
1409 print "* targets, 'none' to assign the source files to a parent directory,\n";
1410 print "* or 'ignore' to ignore everything in this directory tree.\n";
1411 print "* Target list:\n";
Francois Gouget755bb922000-11-05 05:23:39 +00001412 $target_list=<STDIN>;
1413 chomp $target_list;
1414 if ($target_list eq "") {
1415 # Keep the target list as is, i.e. do nothing
1416 } elsif ($target_list eq "none") {
1417 # Empty the target list
1418 undef %targets;
1419 } elsif ($target_list eq "ignore") {
1420 # Ignore this subtree altogether
1421 return;
1422 } else {
1423 undef %targets;
Francois Gougete3d26a32002-09-06 18:36:19 +00001424 foreach my $target (split /,/,$target_list) {
Francois Gouget755bb922000-11-05 05:23:39 +00001425 $target =~ s+^\s*++;
1426 $target =~ s+\s*$++;
Francois Gouget755bb922000-11-05 05:23:39 +00001427 $targets{$target}=1;
1428 }
1429 }
1430 }
1431 }
1432
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001433 # If we have no project at this level, then transfer all
Francois Gouget755bb922000-11-05 05:23:39 +00001434 # the sources to the parent project
1435 $target_count=keys %targets;
1436 if ($target_count == 0) {
1437 if ($project!=$parent_project) {
1438 my $parent_settings=@$parent_project[$P_SETTINGS];
1439 push @{@$parent_settings[$T_SOURCES_C]},map "$dirname$_",@sources_c;
1440 push @{@$parent_settings[$T_SOURCES_CXX]},map "$dirname$_",@sources_cxx;
1441 push @{@$parent_settings[$T_SOURCES_RC]},map "$dirname$_",@sources_rc;
1442 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@sources_misc;
1443 push @{@$parent_settings[$T_SOURCES_MISC]},map "$dirname$_",@{@$project_settings[$T_SOURCES_MISC]};
1444 }
1445 return;
1446 }
1447
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001448 # Otherwise add this project to the project list, except for
Francois Gouget755bb922000-11-05 05:23:39 +00001449 # the main project which is already in the list.
1450 if ($dirname ne "") {
1451 push @projects,$project;
1452 }
1453
1454 # Ask for project-wide options
1455 if ($opt_ask_project_options == $OPT_ASK_YES) {
Francois Gougeta106edb2000-11-10 22:29:11 +00001456 my $flag_desc="";
1457 if ((@$project_settings[$T_FLAGS] & $TF_MFC)!=0) {
1458 $flag_desc="mfc";
1459 }
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00001460 print "* Type any project-wide options (-D/-I/-P/-i/-L/-l/--mfc),\n";
Francois Gougeta106edb2000-11-10 22:29:11 +00001461 if (defined $flag_desc) {
1462 print "* (currently $flag_desc)\n";
1463 }
1464 print "* or 'skip' to skip the target specific options,\n";
1465 print "* or 'never' to not be asked this question again:\n";
Francois Gouget3af251e2000-11-30 20:36:04 +00001466 while (1) {
1467 my $options=<STDIN>;
1468 chomp $options;
1469 if ($options eq "skip") {
1470 $opt_ask_target_options=$OPT_ASK_SKIP;
1471 last;
1472 } elsif ($options eq "never") {
1473 $opt_ask_project_options=$OPT_ASK_NO;
1474 last;
1475 } elsif (source_set_options($project_settings,$options)) {
1476 last;
1477 }
1478 print "Please re-enter the options:\n";
Francois Gouget755bb922000-11-05 05:23:39 +00001479 }
1480 }
1481
1482 # - Create the targets
1483 # - Check if we have both libraries and programs
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001484 # - Match each target with source files (sort in reverse
Francois Gouget755bb922000-11-05 05:23:39 +00001485 # alphabetical order to get the longest matches first)
Francois Gouget89a0c022001-07-30 18:44:48 +00001486 my @local_dlls=();
Francois Gouget755bb922000-11-05 05:23:39 +00001487 my @local_depends=();
Francois Gougetbe859592000-11-15 22:12:20 +00001488 my @exe_list=();
Martin Wilck4ae4d662002-09-18 18:30:29 +00001489 foreach my $target_name (map (lc, (sort { $b cmp $a } keys %targets))) {
Francois Gouget755bb922000-11-05 05:23:39 +00001490 # Create the target...
Francois Gouget755bb922000-11-05 05:23:39 +00001491 my $target=[];
1492 target_init($target);
1493 @$target[$T_NAME]=$target_name;
Francois Gougeta106edb2000-11-10 22:29:11 +00001494 @$target[$T_FLAGS]|=@$project_settings[$T_FLAGS];
Francois Gouget635eb3c2002-09-26 03:20:59 +00001495 if ($target_name =~ /\.dll$/) {
Francois Gouget755bb922000-11-05 05:23:39 +00001496 @$target[$T_TYPE]=$TT_DLL;
Francois Gouget635eb3c2002-09-26 03:20:59 +00001497 push @local_depends,"$target_name.so";
1498 push @local_dlls,$target_name;
Francois Gougeta286c202005-01-11 10:39:10 +00001499 my $canon=canonize($target_name);
1500 push @{@$target[$T_LDFLAGS]},("-shared","\$(${canon}_MODULE:%=%.spec)");
Francois Gouget755bb922000-11-05 05:23:39 +00001501 } else {
1502 @$target[$T_TYPE]=$opt_target_type;
Francois Gougetbe859592000-11-15 22:12:20 +00001503 push @exe_list,$target;
Francois Gougetc7201ce2004-03-03 02:19:20 +00001504 push @{@$target[$T_LDFLAGS]},(@$target[$T_TYPE] == $TT_CUIEXE ? "-mconsole" : "-mwindows");
Francois Gouget755bb922000-11-05 05:23:39 +00001505 }
Francois Gouget635eb3c2002-09-26 03:20:59 +00001506 my $basename=$target_name;
1507 $basename=~ s/\.(dll|exe)$//i;
André Hentschel8052c1a2009-02-05 17:36:39 +01001508 # This is the default link list of Visual Studio
1509 my @std_imports=qw(odbc32 ole32 oleaut32 winspool odbccp32);
Francois Gougetb1ff8752004-01-30 22:55:00 +00001510 my @std_libraries=qw(uuid);
Martin Wilck90d65282002-09-13 17:43:25 +00001511 if ((@$target[$T_FLAGS] & $TF_NODLLS) == 0) {
Jeff Smithc3272462002-12-15 03:00:40 +00001512 @$target[$T_DLLS]=\@std_imports;
Francois Gougetb1ff8752004-01-30 22:55:00 +00001513 @$target[$T_LIBRARIES]=\@std_libraries;
Martin Wilck3aa9e8c2002-09-10 00:20:27 +00001514 } else {
1515 @$target[$T_DLLS]=[];
Francois Gougetb1ff8752004-01-30 22:55:00 +00001516 @$target[$T_LIBRARIES]=[];
Martin Wilck3aa9e8c2002-09-10 00:20:27 +00001517 }
Francois Gougetc7201ce2004-03-03 02:19:20 +00001518 if ((@$target[$T_FLAGS] & $TF_NOMSVCRT) == 0) {
1519 push @{@$target[$T_LDFLAGS]},"-mno-cygwin";
André Hentschel65900b42010-04-21 20:22:13 +02001520 if ($opt_arch != $OPT_ARCH_DEFAULT) {
1521 push @{@$target[$T_LDFLAGS]},"-m$opt_arch";
1522 }
Francois Gougetc7201ce2004-03-03 02:19:20 +00001523 }
Francois Gouget755bb922000-11-05 05:23:39 +00001524 push @{@$project[$P_TARGETS]},$target;
1525
1526 # Ask for target-specific options
1527 if ($opt_ask_target_options == $OPT_ASK_YES) {
Francois Gougeta106edb2000-11-10 22:29:11 +00001528 my $flag_desc="";
1529 if ((@$target[$T_FLAGS] & $TF_MFC)!=0) {
1530 $flag_desc=" (mfc";
1531 }
Francois Gougeta106edb2000-11-10 22:29:11 +00001532 if ($flag_desc ne "") {
1533 $flag_desc.=")";
1534 }
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00001535 print "* Specify any link option (-P/-i/-L/-l/--mfc) specific to the target\n";
Francois Gougeta106edb2000-11-10 22:29:11 +00001536 print "* \"$target_name\"$flag_desc or 'never' to not be asked this question again:\n";
Francois Gouget3af251e2000-11-30 20:36:04 +00001537 while (1) {
1538 my $options=<STDIN>;
1539 chomp $options;
1540 if ($options eq "never") {
1541 $opt_ask_target_options=$OPT_ASK_NO;
1542 last;
1543 } elsif (source_set_options($target,$options)) {
1544 last;
1545 }
1546 print "Please re-enter the options:\n";
Francois Gouget755bb922000-11-05 05:23:39 +00001547 }
1548 }
1549 if (@$target[$T_FLAGS] & $TF_MFC) {
1550 @$project_settings[$T_FLAGS]|=$TF_MFC;
Francois Gouget89a0c022001-07-30 18:44:48 +00001551 push @{@$target[$T_DLL_PATH]},"\$(MFC_LIBRARY_PATH)";
1552 push @{@$target[$T_DLLS]},"mfc.dll";
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001553 # FIXME: Link with the MFC in the Unix sense, until we
Francois Gougetbe859592000-11-15 22:12:20 +00001554 # start exporting the functions properly.
Francois Gouget89a0c022001-07-30 18:44:48 +00001555 push @{@$target[$T_LIBRARY_PATH]},"\$(MFC_LIBRARY_PATH)";
Francois Gougetbe859592000-11-15 22:12:20 +00001556 push @{@$target[$T_LIBRARIES]},"mfc";
Francois Gouget755bb922000-11-05 05:23:39 +00001557 }
1558
1559 # Match sources...
1560 if ($target_count == 1) {
Francois Gouget4ec10592000-12-02 20:12:45 +00001561 push @{@$target[$T_SOURCES_C]},@{@$project_settings[$T_SOURCES_C]},@sources_c;
1562 @$project_settings[$T_SOURCES_C]=[];
Francois Gouget755bb922000-11-05 05:23:39 +00001563 @sources_c=();
Francois Gouget4ec10592000-12-02 20:12:45 +00001564
1565 push @{@$target[$T_SOURCES_CXX]},@{@$project_settings[$T_SOURCES_CXX]},@sources_cxx;
1566 @$project_settings[$T_SOURCES_CXX]=[];
Francois Gouget755bb922000-11-05 05:23:39 +00001567 @sources_cxx=();
Francois Gouget4ec10592000-12-02 20:12:45 +00001568
1569 push @{@$target[$T_SOURCES_RC]},@{@$project_settings[$T_SOURCES_RC]},@sources_rc;
1570 @$project_settings[$T_SOURCES_RC]=[];
Francois Gouget755bb922000-11-05 05:23:39 +00001571 @sources_rc=();
Francois Gouget4ec10592000-12-02 20:12:45 +00001572
1573 push @{@$target[$T_SOURCES_MISC]},@{@$project_settings[$T_SOURCES_MISC]},@sources_misc;
1574 # No need for sorting these sources
1575 @$project_settings[$T_SOURCES_MISC]=[];
Francois Gouget755bb922000-11-05 05:23:39 +00001576 @sources_misc=();
1577 } else {
Francois Gougete3d26a32002-09-06 18:36:19 +00001578 foreach my $source (@sources_c) {
Francois Gouget755bb922000-11-05 05:23:39 +00001579 if ($source =~ /^$basename/i) {
1580 push @{@$target[$T_SOURCES_C]},$source;
1581 $source="";
1582 }
1583 }
Francois Gougete3d26a32002-09-06 18:36:19 +00001584 foreach my $source (@sources_cxx) {
Francois Gouget755bb922000-11-05 05:23:39 +00001585 if ($source =~ /^$basename/i) {
1586 push @{@$target[$T_SOURCES_CXX]},$source;
1587 $source="";
1588 }
1589 }
Francois Gougete3d26a32002-09-06 18:36:19 +00001590 foreach my $source (@sources_rc) {
Francois Gouget755bb922000-11-05 05:23:39 +00001591 if ($source =~ /^$basename/i) {
1592 push @{@$target[$T_SOURCES_RC]},$source;
1593 $source="";
1594 }
1595 }
Francois Gougete3d26a32002-09-06 18:36:19 +00001596 foreach my $source (@sources_misc) {
Francois Gouget755bb922000-11-05 05:23:39 +00001597 if ($source =~ /^$basename/i) {
1598 push @{@$target[$T_SOURCES_MISC]},$source;
1599 $source="";
1600 }
1601 }
1602 }
1603 @$target[$T_SOURCES_C]=[sort @{@$target[$T_SOURCES_C]}];
1604 @$target[$T_SOURCES_CXX]=[sort @{@$target[$T_SOURCES_CXX]}];
1605 @$target[$T_SOURCES_RC]=[sort @{@$target[$T_SOURCES_RC]}];
1606 @$target[$T_SOURCES_MISC]=[sort @{@$target[$T_SOURCES_MISC]}];
1607 }
1608 if ($opt_ask_target_options == $OPT_ASK_SKIP) {
1609 $opt_ask_target_options=$OPT_ASK_YES;
1610 }
1611
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00001612 if ((@$project_settings[$T_FLAGS] & $TF_NOMSVCRT) == 0) {
Francois Gougetc7201ce2004-03-03 02:19:20 +00001613 push @{@$project_settings[$T_CEXTRA]},"-mno-cygwin";
1614 push @{@$project_settings[$T_CXXEXTRA]},"-mno-cygwin";
André Hentschel65900b42010-04-21 20:22:13 +02001615 if ($opt_arch != $OPT_ARCH_DEFAULT) {
1616 push @{@$project_settings[$T_CEXTRA]},"-m$opt_arch";
1617 push @{@$project_settings[$T_CXXEXTRA]},"-m$opt_arch";
1618 }
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00001619 }
1620
Francois Gouget755bb922000-11-05 05:23:39 +00001621 if (@$project_settings[$T_FLAGS] & $TF_MFC) {
1622 push @{@$project_settings[$T_INCLUDE_PATH]},"\$(MFC_INCLUDE_PATH)";
1623 }
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001624 # The sources that did not match, if any, go to the extra
Francois Gouget755bb922000-11-05 05:23:39 +00001625 # source list of the project settings
Francois Gougete3d26a32002-09-06 18:36:19 +00001626 foreach my $source (@sources_c) {
Francois Gouget755bb922000-11-05 05:23:39 +00001627 if ($source ne "") {
1628 push @{@$project_settings[$T_SOURCES_C]},$source;
1629 }
1630 }
1631 @$project_settings[$T_SOURCES_C]=[sort @{@$project_settings[$T_SOURCES_C]}];
Francois Gougete3d26a32002-09-06 18:36:19 +00001632 foreach my $source (@sources_cxx) {
Francois Gouget755bb922000-11-05 05:23:39 +00001633 if ($source ne "") {
1634 push @{@$project_settings[$T_SOURCES_CXX]},$source;
1635 }
1636 }
1637 @$project_settings[$T_SOURCES_CXX]=[sort @{@$project_settings[$T_SOURCES_CXX]}];
Francois Gougete3d26a32002-09-06 18:36:19 +00001638 foreach my $source (@sources_rc) {
Francois Gouget755bb922000-11-05 05:23:39 +00001639 if ($source ne "") {
1640 push @{@$project_settings[$T_SOURCES_RC]},$source;
1641 }
1642 }
1643 @$project_settings[$T_SOURCES_RC]=[sort @{@$project_settings[$T_SOURCES_RC]}];
Francois Gougete3d26a32002-09-06 18:36:19 +00001644 foreach my $source (@sources_misc) {
Francois Gouget755bb922000-11-05 05:23:39 +00001645 if ($source ne "") {
1646 push @{@$project_settings[$T_SOURCES_MISC]},$source;
1647 }
1648 }
1649 @$project_settings[$T_SOURCES_MISC]=[sort @{@$project_settings[$T_SOURCES_MISC]}];
1650
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001651 # Finally if we are building both libraries and programs in
1652 # this directory, then the programs should be linked with all
Francois Gouget755bb922000-11-05 05:23:39 +00001653 # the libraries
Francois Gouget89a0c022001-07-30 18:44:48 +00001654 if (@local_dlls > 0 and @exe_list > 0) {
Francois Gougete3d26a32002-09-06 18:36:19 +00001655 foreach my $target (@exe_list) {
Francois Gouget89a0c022001-07-30 18:44:48 +00001656 push @{@$target[$T_DLL_PATH]},"-L.";
Francois Gouget635eb3c2002-09-26 03:20:59 +00001657 push @{@$target[$T_DLLS]},@local_dlls;
Francois Gouget755bb922000-11-05 05:23:39 +00001658 }
1659 }
1660}
1661
1662##
1663# Scan the source directories in search of things to build
Francois Gougete3d26a32002-09-06 18:36:19 +00001664sub source_scan()
Francois Gouget755bb922000-11-05 05:23:39 +00001665{
Francois Gouget755bb922000-11-05 05:23:39 +00001666 # If there's a single target then this is going to be the default target
1667 if (defined $opt_single_target) {
François Gouget38b3ac52001-01-11 20:17:42 +00001668 # Create the main target
1669 my $main_target=[];
1670 target_init($main_target);
Francois Gouget635eb3c2002-09-26 03:20:59 +00001671 @$main_target[$T_NAME]=$opt_single_target;
Francois Gouget755bb922000-11-05 05:23:39 +00001672 @$main_target[$T_TYPE]=$opt_target_type;
François Gouget38b3ac52001-01-11 20:17:42 +00001673
1674 # Add it to the list
1675 push @{$main_project[$P_TARGETS]},$main_target;
Francois Gouget755bb922000-11-05 05:23:39 +00001676 }
1677
1678 # The main directory is always going to be there
1679 push @projects,\@main_project;
1680
André Hentscheldc21b4f2009-04-02 18:53:14 +02001681 if (defined $opt_work_dir) {
1682 # Now scan the directory tree looking for source files and, maybe, targets
1683 print "Scanning the source directories...\n";
1684 source_scan_directory(\@main_project,"","",0);
1685 @projects=sort { @$a[$P_PATH] cmp @$b[$P_PATH] } @projects;
1686 } elsif (defined $opt_work_file) {
1687 if ($opt_work_file =~ /.dsp$/i or $opt_work_file =~ /.vcproj$/i) {
1688 source_scan_project_file(\@main_project,0,$opt_work_file);
André Hentscheldf5c4172009-04-02 18:53:24 +02001689 } elsif ($opt_work_file =~ /.dsw$/i or $opt_work_file =~ /.sln$/i) {
1690 source_scan_workspace_file($opt_work_file);
André Hentscheldc21b4f2009-04-02 18:53:14 +02001691 }
1692 }
Francois Gouget755bb922000-11-05 05:23:39 +00001693}
1694
Francois Gouget755bb922000-11-05 05:23:39 +00001695#####
1696#
1697# Source search
1698#
1699#####
1700
1701##
1702# Performs a directory traversal and renames the files so that:
1703# - they have the case desired by the user
1704# - their extension is of the appropriate case
1705# - they don't contain annoying characters like ' ', '$', '#', ...
Francois Gougeta6eecca2005-02-21 18:29:44 +00001706# But only perform these changes for source files and directories.
Francois Gougete3d26a32002-09-06 18:36:19 +00001707sub fix_file_and_directory_names($);
1708sub fix_file_and_directory_names($)
Francois Gouget755bb922000-11-05 05:23:39 +00001709{
1710 my $dirname=$_[0];
1711
Francois Gougetd4fddfb2009-02-25 10:32:36 +01001712 my $directory=get_directory_contents($dirname);
1713 foreach my $dentry (@$directory)
1714 {
Francois Gouget755bb922000-11-05 05:23:39 +00001715 if ($dentry =~ /^\./ or $dentry eq "CVS") {
Francois Gougetd4fddfb2009-02-25 10:32:36 +01001716 next;
Francois Gouget755bb922000-11-05 05:23:39 +00001717 }
1718 # Set $warn to 1 if the user should be warned of the renaming
Francois Gougeta6eecca2005-02-21 18:29:44 +00001719 my $warn;
Francois Gouget755bb922000-11-05 05:23:39 +00001720 my $new_name=$dentry;
Francois Gouget755bb922000-11-05 05:23:39 +00001721
Francois Gougeta6eecca2005-02-21 18:29:44 +00001722 if (-f "$dirname/$dentry")
1723 {
Francois Gougetd4fddfb2009-02-25 10:32:36 +01001724 # Don't rename Winemaker's makefiles
1725 next if ($dentry eq "Makefile" and
1726 `head -n 1 "$dirname/$dentry"` =~ /Generated by Winemaker/);
Francois Gougeta6eecca2005-02-21 18:29:44 +00001727
Francois Gougetd4fddfb2009-02-25 10:32:36 +01001728 # Leave non-source files alone
1729 next if ($new_name !~ /(^makefile|\.(c|cpp|h|rc))$/i);
Francois Gougeta6eecca2005-02-21 18:29:44 +00001730
Francois Gougetd4fddfb2009-02-25 10:32:36 +01001731 # Only all lowercase extensions are supported (because of
1732 # rules like '.c.o:'.
1733 $new_name =~ s/\.C$/.c/;
1734 $new_name =~ s/\.cpp$/.cpp/i;
1735 $warn=1 if ($new_name =~ s/\.cxx$/.cpp/i);
1736 $new_name =~ s/\.rc$/.rc/i;
1737 # And this last one is to avoid confusion then running make
1738 $warn=1 if ($new_name =~ s/^makefile$/makefile.win/i);
Francois Gouget755bb922000-11-05 05:23:39 +00001739 }
1740
1741 # Adjust the case to the user's preferences
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001742 if (($opt_lower == $OPT_LOWER_ALL and $dentry =~ /[A-Z]/) or
Francois Gouget755bb922000-11-05 05:23:39 +00001743 ($opt_lower == $OPT_LOWER_UPPERCASE and $dentry !~ /[a-z]/)
1744 ) {
Francois Gougetd4fddfb2009-02-25 10:32:36 +01001745 $new_name=lc $new_name;
Francois Gouget755bb922000-11-05 05:23:39 +00001746 }
1747
Francois Gougeta6eecca2005-02-21 18:29:44 +00001748 # autoconf and make don't support these characters well
1749 $new_name =~ s/[ \$]/_/g;
1750
Francois Gouget755bb922000-11-05 05:23:39 +00001751 # And finally, perform the renaming
Francois Gougetd4fddfb2009-02-25 10:32:36 +01001752 if ($new_name ne $dentry)
1753 {
1754 if ($warn) {
1755 print STDERR "warning: in \"$dirname\", renaming \"$dentry\" to \"$new_name\"\n";
1756 }
1757 if (!rename("$dirname/$dentry","$dirname/$new_name")) {
1758 print STDERR "error: in \"$dirname\", unable to rename \"$dentry\" to \"$new_name\"\n";
1759 print STDERR " $!\n";
1760 $new_name=$dentry;
1761 }
1762 else
1763 {
1764 clear_directory_cache($dirname);
1765 }
Francois Gouget755bb922000-11-05 05:23:39 +00001766 }
1767 if (-d "$dirname/$new_name") {
Francois Gougetd4fddfb2009-02-25 10:32:36 +01001768 fix_file_and_directory_names("$dirname/$new_name");
Francois Gouget755bb922000-11-05 05:23:39 +00001769 }
Francois Gouget755bb922000-11-05 05:23:39 +00001770 }
1771}
1772
1773
1774
1775#####
1776#
1777# Source fixup
1778#
1779#####
1780
1781##
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001782# Try to find a file for the specified filename. The attempt is
1783# case-insensitive which is why it's not trivial. If a match is
Francois Gouget755bb922000-11-05 05:23:39 +00001784# found then we return the pathname with the correct case.
Francois Gougete3d26a32002-09-06 18:36:19 +00001785sub search_from($$)
Francois Gouget755bb922000-11-05 05:23:39 +00001786{
1787 my $dirname=$_[0];
1788 my $path=$_[1];
1789 my $real_path="";
1790
André Hentschel70fbe972009-04-24 17:40:32 +02001791 if ($dirname eq "" or $dirname eq "." or $dirname eq "./") {
Francois Gouget755bb922000-11-05 05:23:39 +00001792 $dirname=cwd;
Francois Gougeta286c202005-01-11 10:39:10 +00001793 } elsif ($dirname !~ m+^/+) {
Francois Gouget755bb922000-11-05 05:23:39 +00001794 $dirname=cwd . "/" . $dirname;
1795 }
1796 if ($dirname !~ m+/$+) {
1797 $dirname.="/";
1798 }
1799
Francois Gougete3d26a32002-09-06 18:36:19 +00001800 foreach my $component (@$path) {
André Hentschela021e832009-04-29 19:42:24 +02001801 $component=~s/^\"//;
1802 $component=~s/\"$//;
Francois Gougetb4302952000-11-07 20:27:16 +00001803 #print " looking for $component in \"$dirname\"\n";
Francois Gouget755bb922000-11-05 05:23:39 +00001804 if ($component eq ".") {
1805 # Pass it as is
1806 $real_path.="./";
1807 } elsif ($component eq "..") {
1808 # Go up one level
1809 $dirname=dirname($dirname) . "/";
1810 $real_path.="../";
1811 } else {
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001812 # The file/directory may have been renamed before. Also try to
Francois Gouget3fafafa2001-04-23 18:16:13 +00001813 # match the renamed file.
1814 my $renamed=$component;
1815 $renamed =~ s/[ \$]/_/g;
1816 if ($renamed eq $component) {
1817 undef $renamed;
1818 }
1819
Francois Gouget755bb922000-11-05 05:23:39 +00001820 my $directory=get_directory_contents $dirname;
1821 my $found;
Francois Gougete3d26a32002-09-06 18:36:19 +00001822 foreach my $dentry (@$directory) {
Simon C. Ion7b5cbdb2008-12-19 18:23:45 -06001823 if ($dentry =~ /^\Q$component\E$/i or
Francois Gouget3fafafa2001-04-23 18:16:13 +00001824 (defined $renamed and $dentry =~ /^$renamed$/i)
1825 ) {
Francois Gouget755bb922000-11-05 05:23:39 +00001826 $dirname.="$dentry/";
1827 $real_path.="$dentry/";
1828 $found=1;
1829 last;
1830 }
1831 }
1832 if (!defined $found) {
1833 # Give up
Francois Gougetb4302952000-11-07 20:27:16 +00001834 #print " could not find $component in $dirname\n";
Francois Gouget755bb922000-11-05 05:23:39 +00001835 return;
1836 }
1837 }
1838 }
1839 $real_path=~ s+/$++;
Francois Gougetb4302952000-11-07 20:27:16 +00001840 #print " -> found $real_path\n";
Francois Gouget755bb922000-11-05 05:23:39 +00001841 return $real_path;
1842}
1843
1844##
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001845# Performs a case-insensitive search for the specified file in the
Francois Gouget755bb922000-11-05 05:23:39 +00001846# include path.
1847# $line is the line number that should be referenced when an error occurs
1848# $filename is the file we are looking for
1849# $dirname is the directory of the file containing the '#include' directive
1850# if '"' was used, it is an empty string otherwise
1851# $project and $target specify part of the include path
Francois Gougete3d26a32002-09-06 18:36:19 +00001852sub get_real_include_name($$$$$)
Francois Gouget755bb922000-11-05 05:23:39 +00001853{
1854 my $line=$_[0];
1855 my $filename=$_[1];
1856 my $dirname=$_[2];
1857 my $project=$_[3];
1858 my $target=$_[4];
1859
1860 if ($filename =~ /^([a-zA-Z]:)?[\/]/ or $filename =~ /^[a-zA-Z]:[\/]?/) {
1861 # This is not a relative path, we cannot make any check
1862 my $warning="path:$filename";
1863 if (!defined $warnings{$warning}) {
1864 $warnings{$warning}="1";
1865 print STDERR "warning: cannot check the case of absolute pathnames:\n";
1866 print STDERR "$line: $filename\n";
1867 }
1868 } else {
1869 # Here's how we proceed:
1870 # - split the filename we look for into its components
1871 # - then for each directory in the include path
1872 # - trace the directory components starting from that directory
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001873 # - if we fail to find a match at any point then continue with
Francois Gouget755bb922000-11-05 05:23:39 +00001874 # the next directory in the include path
1875 # - otherwise, rejoice, our quest is over.
1876 my @file_components=split /[\/\\]+/, $filename;
Francois Gougetb4302952000-11-07 20:27:16 +00001877 #print " Searching for $filename from @$project[$P_PATH]\n";
Francois Gouget755bb922000-11-05 05:23:39 +00001878
1879 my $real_filename;
1880 if ($dirname ne "") {
Francois Gougetb4302952000-11-07 20:27:16 +00001881 # This is an 'include ""' -> look in dirname first.
1882 #print " in $dirname (include \"\")\n";
Francois Gouget755bb922000-11-05 05:23:39 +00001883 $real_filename=search_from($dirname,\@file_components);
1884 if (defined $real_filename) {
1885 return $real_filename;
1886 }
1887 }
1888 my $project_settings=@$project[$P_SETTINGS];
Francois Gougete3d26a32002-09-06 18:36:19 +00001889 foreach my $include (@{@$target[$T_INCLUDE_PATH]}, @{@$project_settings[$T_INCLUDE_PATH]}) {
Francois Gougetb4302952000-11-07 20:27:16 +00001890 my $dirname=$include;
1891 $dirname=~ s+^-I++;
André Hentschelabc68c12009-05-19 21:01:55 +02001892 $dirname=~ s+\s$++;
Francois Gougetb4302952000-11-07 20:27:16 +00001893 if (!is_absolute($dirname)) {
1894 $dirname="@$project[$P_PATH]$dirname";
1895 } else {
Francois Gouget647bb8f2001-04-20 18:26:35 +00001896 $dirname=~ s+^\$\(TOPSRCDIR\)/++;
1897 $dirname=~ s+^\$\(SRCDIR\)/+@$project[$P_PATH]+;
Francois Gougetb4302952000-11-07 20:27:16 +00001898 }
1899 #print " in $dirname\n";
Francois Gouget755bb922000-11-05 05:23:39 +00001900 $real_filename=search_from("$dirname",\@file_components);
1901 if (defined $real_filename) {
1902 return $real_filename;
1903 }
1904 }
1905 my $dotdotpath=@$project[$P_PATH];
1906 $dotdotpath =~ s/[^\/]+/../g;
Francois Gougete3d26a32002-09-06 18:36:19 +00001907 foreach my $include (@{$global_settings[$T_INCLUDE_PATH]}) {
Francois Gougetb4302952000-11-07 20:27:16 +00001908 my $dirname=$include;
1909 $dirname=~ s+^-I++;
1910 $dirname=~ s+^\$\(TOPSRCDIR\)\/++;
Francois Gouget647bb8f2001-04-20 18:26:35 +00001911 $dirname=~ s+^\$\(SRCDIR\)\/+@$project[$P_PATH]+;
Francois Gougetb4302952000-11-07 20:27:16 +00001912 #print " in $dirname (global setting)\n";
Francois Gouget755bb922000-11-05 05:23:39 +00001913 $real_filename=search_from("$dirname",\@file_components);
1914 if (defined $real_filename) {
1915 return $real_filename;
1916 }
1917 }
1918 }
1919 $filename =~ s+\\\\+/+g; # in include ""
1920 $filename =~ s+\\+/+g; # in include <> !
Francois Gougeta106edb2000-11-10 22:29:11 +00001921 if ($opt_lower_include) {
Francois Gouget755bb922000-11-05 05:23:39 +00001922 return lc "$filename";
1923 }
1924 return $filename;
1925}
1926
Francois Gougete3d26a32002-09-06 18:36:19 +00001927sub print_pack($$$)
Francois Gougetc1159be2001-04-18 17:39:42 +00001928{
1929 my $indent=$_[0];
1930 my $size=$_[1];
1931 my $trailer=$_[2];
1932
1933 if ($size =~ /^(1|2|4|8)$/) {
1934 print FILEO "$indent#include <pshpack$size.h>$trailer";
1935 } else {
1936 print FILEO "$indent/* winemaker:warning: Unknown size \"$size\". Defaulting to 4 */\n";
1937 print FILEO "$indent#include <pshpack4.h>$trailer";
1938 }
1939}
1940
Francois Gouget755bb922000-11-05 05:23:39 +00001941##
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001942# 'Parses' a source file and fixes constructs that would not work with
1943# Winelib. The parsing is rather simple and not all non-portable features
1944# are corrected. The most important feature that is corrected is the case
1945# and path separator of '#include' directives. This requires that each
1946# source file be associated to a project & target so that the proper
Francois Gouget755bb922000-11-05 05:23:39 +00001947# include path is used.
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001948# Also note that the include path is relative to the directory in which the
Francois Gougetb4302952000-11-07 20:27:16 +00001949# compiler is run, i.e. that of the project, not to that of the file.
Francois Gougete3d26a32002-09-06 18:36:19 +00001950sub fix_file($$$)
Francois Gouget755bb922000-11-05 05:23:39 +00001951{
1952 my $filename=$_[0];
1953 my $project=$_[1];
1954 my $target=$_[2];
1955 $filename="@$project[$P_PATH]$filename";
1956 if (! -e $filename) {
1957 return;
1958 }
1959
1960 my $is_rc=($filename =~ /\.(rc2?|dlg)$/i);
1961 my $dirname=dirname($filename);
1962 my $is_mfc=0;
1963 if (defined $target and (@$target[$T_FLAGS] & $TF_MFC)) {
1964 $is_mfc=1;
1965 }
1966
1967 print " $filename\n";
Alexandre Julliard7cae5582002-06-01 02:55:48 +00001968 #FIXME:assuming that because there is a .bak file, this is what we want is
Francois Gouget755bb922000-11-05 05:23:39 +00001969 #probably flawed. Or is it???
1970 if (! -e "$filename.bak") {
1971 if (!copy("$filename","$filename.bak")) {
1972 print STDERR "error: unable to make a backup of $filename:\n";
1973 print STDERR " $!\n";
1974 return;
1975 }
1976 }
1977 if (!open(FILEI,"$filename.bak")) {
1978 print STDERR "error: unable to open $filename.bak for reading:\n";
1979 print STDERR " $!\n";
1980 return;
1981 }
1982 if (!open(FILEO,">$filename")) {
1983 print STDERR "error: unable to open $filename for writing:\n";
1984 print STDERR " $!\n";
1985 return;
1986 }
1987 my $line=0;
1988 my $modified=0;
1989 my $rc_block_depth=0;
1990 my $rc_textinclude_state=0;
Francois Gougetc1159be2001-04-18 17:39:42 +00001991 my @pack_stack;
Francois Gouget755bb922000-11-05 05:23:39 +00001992 while (<FILEI>) {
Bill Medland987ea462001-07-12 22:21:44 +00001993 # Remove any trailing CtrlZ, which isn't strictly in the file
1994 if (/\x1A/) {
1995 s/\x1A//;
1996 last if (/^$/)
1997 }
Francois Gouget755bb922000-11-05 05:23:39 +00001998 $line++;
François Gougeta62703e2001-02-12 01:22:58 +00001999 s/\r\n$/\n/;
2000 if (!/\n$/) {
2001 # Make sure all files are '\n' terminated
2002 $_ .= "\n";
2003 }
Francois Gougetc1159be2001-04-18 17:39:42 +00002004 if ($is_rc and !$is_mfc and /^(\s*)(\#\s*include\s*)\"afxres\.h\"/) {
Alexandre Julliard7cae5582002-06-01 02:55:48 +00002005 # VC6 automatically includes 'afxres.h', an MFC specific header, in
2006 # the RC files it generates (even in non-MFC projects). So we replace
André Hentschel47b1bff2009-04-02 18:53:12 +02002007 # it with 'winresrc.h' its very close standard cousin so that non MFC
François Gougeta62703e2001-02-12 01:22:58 +00002008 # projects can compile in Wine without the MFC sources.
Francois Gouget755bb922000-11-05 05:23:39 +00002009 my $warning="mfc:afxres.h";
2010 if (!defined $warnings{$warning}) {
2011 $warnings{$warning}="1";
André Hentschel47b1bff2009-04-02 18:53:12 +02002012 print STDERR "warning: In non-MFC projects, winemaker replaces the MFC specific header 'afxres.h' with 'winresrc.h'\n";
Francois Gouget755bb922000-11-05 05:23:39 +00002013 print STDERR "warning: the above warning is issued only once\n";
2014 }
Francois Gougetc1159be2001-04-18 17:39:42 +00002015 print FILEO "$1/* winemaker: $2\"afxres.h\" */\n";
André Hentschel47b1bff2009-04-02 18:53:12 +02002016 print FILEO "$1/* winemaker:warning: 'afxres.h' is an MFC specific header. Replacing it with 'winresrc.h' */\n";
2017 print FILEO "$1$2\"winresrc.h\"$'";
Francois Gouget755bb922000-11-05 05:23:39 +00002018 $modified=1;
Francois Gougetc1159be2001-04-18 17:39:42 +00002019
Francois Gouget755bb922000-11-05 05:23:39 +00002020 } elsif (/^(\s*\#\s*include\s*)([\"<])([^\"]+)([\">])/) {
2021 my $from_file=($2 eq "<"?"":$dirname);
2022 my $real_include_name=get_real_include_name($line,$3,$from_file,$project,$target);
2023 print FILEO "$1$2$real_include_name$4$'";
2024 $modified|=($real_include_name ne $3);
Francois Gougetc1159be2001-04-18 17:39:42 +00002025
2026 } elsif (s/^(\s*)(\#\s*pragma\s+pack\s*\(\s*)//) {
2027 # Pragma pack handling
2028 #
Alexandre Julliard7cae5582002-06-01 02:55:48 +00002029 # pack_stack is an array of references describing the stack of
2030 # pack directives currently in effect. Each directive if described
Francois Gougetc1159be2001-04-18 17:39:42 +00002031 # by a reference to an array containing:
2032 # - "push" for pack(push,...) directives, "" otherwise
2033 # - the directive's identifier at index 1
Francois Gouget42a61d72008-05-06 15:54:52 +02002034 # - the directive's alignment value at index 2
Francois Gougetc1159be2001-04-18 17:39:42 +00002035 #
2036 # Don't believe a word of what the documentation says: it's all wrong.
2037 # The code below is based on the actual behavior of Visual C/C++ 6.
2038 my $pack_indent=$1;
2039 my $pack_header=$2;
2040 if (/^(\))/) {
2041 # pragma pack()
2042 # Pushes the default stack alignment
2043 print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
2044 print FILEO "$pack_indent/* winemaker:warning: Using 4 as the default alignment */\n";
2045 print_pack($pack_indent,4,$');
2046 push @pack_stack, [ "", "", 4 ];
2047
2048 } elsif (/^(pop\s*(,\s*\d+\s*)?\))/) {
2049 # pragma pack(pop)
2050 # pragma pack(pop,n)
2051 # Goes up the stack until it finds a pack(push,...), and pops it
2052 # Ignores any pack(n) entry
2053 # Issues a warning if the pack is of the form pack(push,label)
2054 print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
2055 my $pack_comment=$';
Francois Gouget647bb8f2001-04-20 18:26:35 +00002056 $pack_comment =~ s/^\s*//;
Francois Gougetc1159be2001-04-18 17:39:42 +00002057 if ($pack_comment ne "") {
2058 print FILEO "$pack_indent$pack_comment";
2059 }
2060 while (1) {
2061 my $alignment=pop @pack_stack;
2062 if (!defined $alignment) {
2063 print FILEO "$pack_indent/* winemaker:warning: No pack(push,...) found. All the stack has been popped */\n";
2064 last;
2065 }
2066 if (@$alignment[1]) {
2067 print FILEO "$pack_indent/* winemaker:warning: Anonymous pop of pack(push,@$alignment[1]) (@$alignment[2]) */\n";
2068 }
2069 print FILEO "$pack_indent#include <poppack.h>\n";
2070 if (@$alignment[0]) {
2071 last;
2072 }
2073 }
2074
2075 } elsif (/^(pop\s*,\s*(\w+)\s*(,\s*\d+\s*)?\))/) {
2076 # pragma pack(pop,label[,n])
2077 # Goes up the stack until finding a pack(push,...) and pops it.
2078 # 'n', if specified, is ignored.
2079 # Ignores any pack(n) entry
2080 # Issues a warning if the label of the pack does not match,
2081 # or if it is in fact a pack(push,n)
2082 my $label=$2;
2083 print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
2084 my $pack_comment=$';
Francois Gouget647bb8f2001-04-20 18:26:35 +00002085 $pack_comment =~ s/^\s*//;
Francois Gougetc1159be2001-04-18 17:39:42 +00002086 if ($pack_comment ne "") {
2087 print FILEO "$pack_indent$pack_comment";
2088 }
2089 while (1) {
2090 my $alignment=pop @pack_stack;
2091 if (!defined $alignment) {
2092 print FILEO "$pack_indent/* winemaker:warning: No pack(push,$label) found. All the stack has been popped */\n";
2093 last;
2094 }
2095 if (@$alignment[1] and @$alignment[1] ne $label) {
2096 print FILEO "$pack_indent/* winemaker:warning: Push/pop mismatch: \"@$alignment[1]\" (@$alignment[2]) != \"$label\" */\n";
2097 }
2098 print FILEO "$pack_indent#include <poppack.h>\n";
2099 if (@$alignment[0]) {
2100 last;
2101 }
2102 }
2103
2104 } elsif (/^(push\s*\))/) {
2105 # pragma pack(push)
2106 # Push the current alignment
2107 print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
2108 if (@pack_stack > 0) {
2109 my $alignment=$pack_stack[$#pack_stack];
2110 print_pack($pack_indent,@$alignment[2],$');
2111 push @pack_stack, [ "push", "", @$alignment[2] ];
2112 } else {
2113 print FILEO "$pack_indent/* winemaker:warning: Using 4 as the default alignment */\n";
2114 print_pack($pack_indent,4,$');
2115 push @pack_stack, [ "push", "", 4 ];
2116 }
2117
2118 } elsif (/^((push\s*,\s*)?(\d+)\s*\))/) {
2119 # pragma pack([push,]n)
2120 # Push new alignment n
2121 print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
2122 print_pack($pack_indent,$3,"$'");
2123 push @pack_stack, [ ($2 ? "push" : ""), "", $3 ];
2124
2125 } elsif (/^((\w+)\s*\))/) {
2126 # pragma pack(label)
2127 # label must in fact be a macro that resolves to an integer
2128 # Then behaves like 'pragma pack(n)'
2129 print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
2130 print FILEO "$pack_indent/* winemaker:warning: Assuming $2 == 4 */\n";
2131 print_pack($pack_indent,4,$');
2132 push @pack_stack, [ "", "", 4 ];
2133
2134 } elsif (/^(push\s*,\s*(\w+)\s*(,\s*(\d+)\s*)?\))/) {
2135 # pragma pack(push,label[,n])
2136 # Pushes a new label on the stack. It is possible to push the same
Alexandre Julliard7cae5582002-06-01 02:55:48 +00002137 # label multiple times. If 'n' is omitted then the alignment is
Francois Gougetc1159be2001-04-18 17:39:42 +00002138 # unchanged. Otherwise it becomes 'n'.
2139 print FILEO "$pack_indent/* winemaker: $pack_header$1 */\n";
2140 my $size;
2141 if (defined $4) {
2142 $size=$4;
2143 } elsif (@pack_stack > 0) {
2144 my $alignment=$pack_stack[$#pack_stack];
2145 $size=@$alignment[2];
2146 } else {
2147 print FILEO "$pack_indent/* winemaker:warning: Using 4 as the default alignment */\n";
2148 $size=4;
2149 }
2150 print_pack($pack_indent,$size,$');
2151 push @pack_stack, [ "push", $2, $size ];
2152
Francois Gouget755bb922000-11-05 05:23:39 +00002153 } else {
Francois Gougetc1159be2001-04-18 17:39:42 +00002154 # pragma pack(??? -> What's that?
2155 print FILEO "$pack_indent/* winemaker:warning: Unknown type of pragma pack directive */\n";
2156 print FILEO "$pack_indent$pack_header$_";
2157
Francois Gouget755bb922000-11-05 05:23:39 +00002158 }
Francois Gougetc1159be2001-04-18 17:39:42 +00002159 $modified=1;
2160
Francois Gouget755bb922000-11-05 05:23:39 +00002161 } elsif ($is_rc) {
Francois Gouget647bb8f2001-04-20 18:26:35 +00002162 if ($rc_block_depth == 0 and /^(\w+\s+(BITMAP|CURSOR|FONT|FONTDIR|ICON|MESSAGETABLE|TEXT|RTF)\s+((DISCARDABLE|FIXED|IMPURE|LOADONCALL|MOVEABLE|PRELOAD|PURE)\s+)*)([\"<]?)([^\">\r\n]+)([\">]?)/) {
Francois Gouget755bb922000-11-05 05:23:39 +00002163 my $from_file=($5 eq "<"?"":$dirname);
2164 my $real_include_name=get_real_include_name($line,$6,$from_file,$project,$target);
2165 print FILEO "$1$5$real_include_name$7$'";
2166 $modified|=($real_include_name ne $6);
Francois Gougetc1159be2001-04-18 17:39:42 +00002167
Francois Gouget755bb922000-11-05 05:23:39 +00002168 } elsif (/^(\s*RCINCLUDE\s*)([\"<]?)([^\">\r\n]+)([\">]?)/) {
2169 my $from_file=($2 eq "<"?"":$dirname);
2170 my $real_include_name=get_real_include_name($line,$3,$from_file,$project,$target);
2171 print FILEO "$1$2$real_include_name$4$'";
2172 $modified|=($real_include_name ne $3);
Francois Gougetc1159be2001-04-18 17:39:42 +00002173
Francois Gouget755bb922000-11-05 05:23:39 +00002174 } elsif ($is_rc and !$is_mfc and $rc_block_depth == 0 and /^\s*\d+\s+TEXTINCLUDE\s*/) {
2175 $rc_textinclude_state=1;
2176 print FILEO;
Francois Gougetc1159be2001-04-18 17:39:42 +00002177
Francois Gouget755bb922000-11-05 05:23:39 +00002178 } elsif ($rc_textinclude_state == 3 and /^(\s*\"\#\s*include\s*\"\")afxres\.h(\"\"\\r\\n\")/) {
André Hentschel47b1bff2009-04-02 18:53:12 +02002179 print FILEO "$1winresrc.h$2$'";
Francois Gouget755bb922000-11-05 05:23:39 +00002180 $modified=1;
Francois Gougetc1159be2001-04-18 17:39:42 +00002181
Francois Gouget755bb922000-11-05 05:23:39 +00002182 } elsif (/^\s*BEGIN(\W.*)?$/) {
2183 $rc_textinclude_state|=2;
2184 $rc_block_depth++;
2185 print FILEO;
Francois Gougetc1159be2001-04-18 17:39:42 +00002186
Francois Gouget755bb922000-11-05 05:23:39 +00002187 } elsif (/^\s*END(\W.*)?$/) {
2188 $rc_textinclude_state=0;
2189 if ($rc_block_depth>0) {
2190 $rc_block_depth--;
2191 }
2192 print FILEO;
Francois Gougetc1159be2001-04-18 17:39:42 +00002193
Francois Gouget755bb922000-11-05 05:23:39 +00002194 } else {
2195 print FILEO;
2196 }
Francois Gougetc1159be2001-04-18 17:39:42 +00002197
Francois Gouget755bb922000-11-05 05:23:39 +00002198 } else {
2199 print FILEO;
2200 }
2201 }
Francois Gougetc1159be2001-04-18 17:39:42 +00002202
Francois Gouget755bb922000-11-05 05:23:39 +00002203 close(FILEI);
2204 close(FILEO);
2205 if ($opt_backup == 0 or $modified == 0) {
2206 if (!unlink("$filename.bak")) {
2207 print STDERR "error: unable to delete $filename.bak:\n";
2208 print STDERR " $!\n";
2209 }
2210 }
2211}
2212
2213##
Alexandre Julliard7cae5582002-06-01 02:55:48 +00002214# Analyzes each source file in turn to find and correct issues
Francois Gouget755bb922000-11-05 05:23:39 +00002215# that would cause it not to compile.
Francois Gougete3d26a32002-09-06 18:36:19 +00002216sub fix_source()
Francois Gouget755bb922000-11-05 05:23:39 +00002217{
2218 print "Fixing the source files...\n";
Francois Gougete3d26a32002-09-06 18:36:19 +00002219 foreach my $project (@projects) {
2220 foreach my $target (@$project[$P_SETTINGS],@{@$project[$P_TARGETS]}) {
Francois Gougete3d26a32002-09-06 18:36:19 +00002221 foreach my $source (@{@$target[$T_SOURCES_C]}, @{@$target[$T_SOURCES_CXX]}, @{@$target[$T_SOURCES_RC]}, @{@$target[$T_SOURCES_MISC]}) {
Francois Gouget755bb922000-11-05 05:23:39 +00002222 fix_file($source,$project,$target);
2223 }
2224 }
2225 }
2226}
2227
2228
2229
2230#####
2231#
2232# File generation
2233#
2234#####
2235
2236##
Alexandre Julliard7cae5582002-06-01 02:55:48 +00002237# A convenience function to generate all the lists (defines,
Francois Gouget755bb922000-11-05 05:23:39 +00002238# C sources, C++ source, etc.) in the Makefile
Francois Gougete3d26a32002-09-06 18:36:19 +00002239sub generate_list($$$;$)
Francois Gouget755bb922000-11-05 05:23:39 +00002240{
2241 my $name=$_[0];
2242 my $last=$_[1];
2243 my $list=$_[2];
2244 my $data=$_[3];
Francois Gouget82747b72000-11-25 01:38:39 +00002245 my $first=$name;
Francois Gouget755bb922000-11-05 05:23:39 +00002246
2247 if ($name) {
Francois Gougetfb5b5902000-11-30 20:34:39 +00002248 printf FILEO "%-22s=",$name;
Francois Gouget755bb922000-11-05 05:23:39 +00002249 }
Francois Gouget82747b72000-11-25 01:38:39 +00002250 if (defined $list) {
Francois Gougete3d26a32002-09-06 18:36:19 +00002251 foreach my $item (@$list) {
Francois Gouget755bb922000-11-05 05:23:39 +00002252 my $value;
2253 if (defined $data) {
2254 $value=&$data($item);
2255 } else {
2256 $value=$item;
2257 }
2258 if ($value ne "") {
Francois Gouget82747b72000-11-25 01:38:39 +00002259 if ($first) {
2260 print FILEO " $value";
2261 $first=0;
2262 } else {
2263 print FILEO " \\\n\t\t\t$value";
2264 }
Francois Gouget755bb922000-11-05 05:23:39 +00002265 }
2266 }
2267 }
2268 if ($last) {
Francois Gouget82747b72000-11-25 01:38:39 +00002269 print FILEO "\n";
Francois Gouget755bb922000-11-05 05:23:39 +00002270 }
2271}
2272
2273##
Francois Gougeta286c202005-01-11 10:39:10 +00002274# Generates a project's Makefile and all the target files
Francois Gougete3d26a32002-09-06 18:36:19 +00002275sub generate_project_files($)
Francois Gouget755bb922000-11-05 05:23:39 +00002276{
2277 my $project=$_[0];
2278 my $project_settings=@$project[$P_SETTINGS];
Francois Gougetbe859592000-11-15 22:12:20 +00002279 my @dll_list=();
2280 my @exe_list=();
Francois Gouget755bb922000-11-05 05:23:39 +00002281
2282 # Then sort the targets and separate the libraries from the programs
Francois Gougete3d26a32002-09-06 18:36:19 +00002283 foreach my $target (sort { @$a[$T_NAME] cmp @$b[$T_NAME] } @{@$project[$P_TARGETS]}) {
Francois Gouget755bb922000-11-05 05:23:39 +00002284 if (@$target[$T_TYPE] == $TT_DLL) {
Francois Gougetbe859592000-11-15 22:12:20 +00002285 push @dll_list,$target;
Francois Gouget755bb922000-11-05 05:23:39 +00002286 } else {
Francois Gougetbe859592000-11-15 22:12:20 +00002287 push @exe_list,$target;
Francois Gouget755bb922000-11-05 05:23:39 +00002288 }
2289 }
2290 @$project[$P_TARGETS]=[];
Francois Gougetbe859592000-11-15 22:12:20 +00002291 push @{@$project[$P_TARGETS]}, @dll_list;
2292 push @{@$project[$P_TARGETS]}, @exe_list;
Francois Gouget755bb922000-11-05 05:23:39 +00002293
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00002294 if (!open(FILEO,">@$project[$P_PATH]Makefile")) {
2295 print STDERR "error: could not open \"@$project[$P_PATH]/Makefile\" for writing\n";
Francois Gouget755bb922000-11-05 05:23:39 +00002296 print STDERR " $!\n";
2297 return;
2298 }
2299
André Hentschelf7117042009-04-23 19:07:42 +02002300 print FILEO "### Generated by Winemaker $version\n";
Francois Gougetbe859592000-11-15 22:12:20 +00002301 print FILEO "\n\n";
2302
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00002303 generate_list("SRCDIR",1,[ "." ]);
Francois Gouget755bb922000-11-05 05:23:39 +00002304 if (@$project[$P_PATH] eq "") {
Alexandre Julliard7cae5582002-06-01 02:55:48 +00002305 # This is the main project. It is also responsible for recursively
Francois Gouget755bb922000-11-05 05:23:39 +00002306 # calling the other projects
Alexandre Julliard7cae5582002-06-01 02:55:48 +00002307 generate_list("SUBDIRS",1,\@projects,sub
Francois Gouget755bb922000-11-05 05:23:39 +00002308 {
2309 if ($_[0] != \@main_project) {
2310 my $subdir=@{$_[0]}[$P_PATH];
2311 $subdir =~ s+/$++;
2312 return $subdir;
2313 }
2314 # Eliminating the main project by returning undefined!
2315 });
2316 }
2317 if (@{@$project[$P_TARGETS]} > 0) {
Francois Gouget35246cb2001-05-07 18:19:57 +00002318 generate_list("DLLS",1,\@dll_list,sub
Francois Gouget755bb922000-11-05 05:23:39 +00002319 {
2320 return @{$_[0]}[$T_NAME];
2321 });
Francois Gouget35246cb2001-05-07 18:19:57 +00002322 generate_list("EXES",1,\@exe_list,sub
Francois Gouget755bb922000-11-05 05:23:39 +00002323 {
Francois Gouget635eb3c2002-09-26 03:20:59 +00002324 return "@{$_[0]}[$T_NAME]";
Francois Gouget755bb922000-11-05 05:23:39 +00002325 });
Francois Gouget82747b72000-11-25 01:38:39 +00002326 print FILEO "\n\n\n";
Francois Gouget755bb922000-11-05 05:23:39 +00002327
Francois Gougetd19aa5b2002-09-11 01:09:58 +00002328 print FILEO "### Common settings\n\n";
Francois Gouget755bb922000-11-05 05:23:39 +00002329 # Make it so that the project-wide settings override the global settings
Francois Gougetc7201ce2004-03-03 02:19:20 +00002330 generate_list("CEXTRA",1,@$project_settings[$T_CEXTRA]);
2331 generate_list("CXXEXTRA",1,@$project_settings[$T_CXXEXTRA]);
2332 generate_list("RCEXTRA",1,@$project_settings[$T_RCEXTRA]);
Francois Gouget786a2cd2009-02-25 10:33:48 +01002333 generate_list("DEFINES",1,@$project_settings[$T_DEFINES]);
Francois Gougetd19aa5b2002-09-11 01:09:58 +00002334 generate_list("INCLUDE_PATH",1,@$project_settings[$T_INCLUDE_PATH]);
2335 generate_list("DLL_PATH",1,@$project_settings[$T_DLL_PATH]);
Francois Gouget786a2cd2009-02-25 10:33:48 +01002336 generate_list("DLL_IMPORTS",1,@$project_settings[$T_DLLS]);
Francois Gougetd19aa5b2002-09-11 01:09:58 +00002337 generate_list("LIBRARY_PATH",1,@$project_settings[$T_LIBRARY_PATH]);
2338 generate_list("LIBRARIES",1,@$project_settings[$T_LIBRARIES]);
Francois Gouget755bb922000-11-05 05:23:39 +00002339 print FILEO "\n\n";
2340
2341 my $extra_source_count=@{@$project_settings[$T_SOURCES_C]}+
2342 @{@$project_settings[$T_SOURCES_CXX]}+
2343 @{@$project_settings[$T_SOURCES_RC]};
Francois Gougetd19aa5b2002-09-11 01:09:58 +00002344 my $no_extra=($extra_source_count == 0);
Francois Gouget755bb922000-11-05 05:23:39 +00002345 if (!$no_extra) {
2346 print FILEO "### Extra source lists\n\n";
2347 generate_list("EXTRA_C_SRCS",1,@$project_settings[$T_SOURCES_C]);
2348 generate_list("EXTRA_CXX_SRCS",1,@$project_settings[$T_SOURCES_CXX]);
2349 generate_list("EXTRA_RC_SRCS",1,@$project_settings[$T_SOURCES_RC]);
Francois Gouget82747b72000-11-25 01:38:39 +00002350 print FILEO "\n";
2351 generate_list("EXTRA_OBJS",1,["\$(EXTRA_C_SRCS:.c=.o)","\$(EXTRA_CXX_SRCS:.cpp=.o)"]);
2352 print FILEO "\n\n\n";
Francois Gouget755bb922000-11-05 05:23:39 +00002353 }
Francois Gouget35246cb2001-05-07 18:19:57 +00002354
Francois Gouget755bb922000-11-05 05:23:39 +00002355 # Iterate over all the targets...
Francois Gougete3d26a32002-09-06 18:36:19 +00002356 foreach my $target (@{@$project[$P_TARGETS]}) {
Francois Gouget82747b72000-11-25 01:38:39 +00002357 print FILEO "### @$target[$T_NAME] sources and settings\n\n";
Francois Gouget755bb922000-11-05 05:23:39 +00002358 my $canon=canonize("@$target[$T_NAME]");
2359 $canon =~ s+_so$++;
Jeff Smithcaa74b62003-01-02 19:27:23 +00002360
2361 generate_list("${canon}_MODULE",1,[@$target[$T_NAME]]);
Francois Gouget755bb922000-11-05 05:23:39 +00002362 generate_list("${canon}_C_SRCS",1,@$target[$T_SOURCES_C]);
2363 generate_list("${canon}_CXX_SRCS",1,@$target[$T_SOURCES_CXX]);
2364 generate_list("${canon}_RC_SRCS",1,@$target[$T_SOURCES_RC]);
Francois Gougetc7201ce2004-03-03 02:19:20 +00002365 generate_list("${canon}_LDFLAGS",1,@$target[$T_LDFLAGS]);
Francois Gouget89a0c022001-07-30 18:44:48 +00002366 generate_list("${canon}_DLL_PATH",1,@$target[$T_DLL_PATH]);
Gregg Mattinson2aad72c2002-07-19 03:15:20 +00002367 generate_list("${canon}_DLLS",1,@$target[$T_DLLS]);
Francois Gouget35246cb2001-05-07 18:19:57 +00002368 generate_list("${canon}_LIBRARY_PATH",1,@$target[$T_LIBRARY_PATH]);
2369 generate_list("${canon}_LIBRARIES",1,@$target[$T_LIBRARIES]);
Francois Gouget82747b72000-11-25 01:38:39 +00002370 print FILEO "\n";
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00002371 generate_list("${canon}_OBJS",1,["\$(${canon}_C_SRCS:.c=.o)","\$(${canon}_CXX_SRCS:.cpp=.o)","\$(${canon}_RC_SRCS:.rc=.res)"]);
Francois Gouget82747b72000-11-25 01:38:39 +00002372 print FILEO "\n\n\n";
Francois Gouget755bb922000-11-05 05:23:39 +00002373 }
2374 print FILEO "### Global source lists\n\n";
Francois Gouget35246cb2001-05-07 18:19:57 +00002375 generate_list("C_SRCS",$no_extra,@$project[$P_TARGETS],sub
Francois Gouget755bb922000-11-05 05:23:39 +00002376 {
2377 my $canon=canonize(@{$_[0]}[$T_NAME]);
2378 $canon =~ s+_so$++;
2379 return "\$(${canon}_C_SRCS)";
2380 });
2381 if (!$no_extra) {
2382 generate_list("",1,[ "\$(EXTRA_C_SRCS)" ]);
2383 }
Francois Gouget35246cb2001-05-07 18:19:57 +00002384 generate_list("CXX_SRCS",$no_extra,@$project[$P_TARGETS],sub
Francois Gouget755bb922000-11-05 05:23:39 +00002385 {
2386 my $canon=canonize(@{$_[0]}[$T_NAME]);
2387 $canon =~ s+_so$++;
2388 return "\$(${canon}_CXX_SRCS)";
2389 });
2390 if (!$no_extra) {
2391 generate_list("",1,[ "\$(EXTRA_CXX_SRCS)" ]);
2392 }
Francois Gouget35246cb2001-05-07 18:19:57 +00002393 generate_list("RC_SRCS",$no_extra,@$project[$P_TARGETS],sub
Francois Gouget755bb922000-11-05 05:23:39 +00002394 {
2395 my $canon=canonize(@{$_[0]}[$T_NAME]);
2396 $canon =~ s+_so$++;
2397 return "\$(${canon}_RC_SRCS)";
2398 });
2399 if (!$no_extra) {
Francois Gouget82747b72000-11-25 01:38:39 +00002400 generate_list("",1,[ "\$(EXTRA_RC_SRCS)" ]);
Francois Gouget755bb922000-11-05 05:23:39 +00002401 }
Francois Gouget755bb922000-11-05 05:23:39 +00002402 }
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00002403 print FILEO "\n\n";
2404 print FILEO "### Tools\n\n";
2405 print FILEO "CC = winegcc\n";
2406 print FILEO "CXX = wineg++\n";
2407 print FILEO "RC = wrc\n";
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00002408 print FILEO "\n\n";
Francois Gouget755bb922000-11-05 05:23:39 +00002409
Francois Gougetc7201ce2004-03-03 02:19:20 +00002410 print FILEO "### Generic targets\n\n";
Francois Gouget27c3b592001-05-29 20:50:58 +00002411 print FILEO "all:";
Francois Gouget755bb922000-11-05 05:23:39 +00002412 if (@$project[$P_PATH] eq "") {
Francois Gouget27c3b592001-05-29 20:50:58 +00002413 print FILEO " \$(SUBDIRS)";
Francois Gouget755bb922000-11-05 05:23:39 +00002414 }
Francois Gouget82747b72000-11-25 01:38:39 +00002415 if (@{@$project[$P_TARGETS]} > 0) {
Francois Gouget635eb3c2002-09-26 03:20:59 +00002416 print FILEO " \$(DLLS:%=%.so) \$(EXES:%=%.so)";
Francois Gouget82747b72000-11-25 01:38:39 +00002417 }
2418 print FILEO "\n\n";
Francois Gougetc7201ce2004-03-03 02:19:20 +00002419 print FILEO "### Build rules\n";
2420 print FILEO "\n";
2421 print FILEO ".PHONY: all clean dummy\n";
2422 print FILEO "\n";
2423 print FILEO "\$(SUBDIRS): dummy\n";
2424 print FILEO "\t\@cd \$\@ && \$(MAKE)\n";
2425 print FILEO "\n";
2426 print FILEO "# Implicit rules\n";
2427 print FILEO "\n";
2428 print FILEO ".SUFFIXES: .cpp .rc .res\n";
2429 print FILEO "DEFINCL = \$(INCLUDE_PATH) \$(DEFINES) \$(OPTIONS)\n";
2430 print FILEO "\n";
2431 print FILEO ".c.o:\n";
2432 print FILEO "\t\$(CC) -c \$(CFLAGS) \$(CEXTRA) \$(DEFINCL) -o \$\@ \$<\n";
2433 print FILEO "\n";
2434 print FILEO ".cpp.o:\n";
2435 print FILEO "\t\$(CXX) -c \$(CXXFLAGS) \$(CXXEXTRA) \$(DEFINCL) -o \$\@ \$<\n";
2436 print FILEO "\n";
2437 print FILEO ".cxx.o:\n";
2438 print FILEO "\t\$(CXX) -c \$(CXXFLAGS) \$(CXXEXTRA) \$(DEFINCL) -o \$\@ \$<\n";
2439 print FILEO "\n";
2440 print FILEO ".rc.res:\n";
2441 print FILEO "\t\$(RC) \$(RCFLAGS) \$(RCEXTRA) \$(DEFINCL) -fo\$@ \$<\n";
2442 print FILEO "\n";
2443 print FILEO "# Rules for cleaning\n";
2444 print FILEO "\n";
Alexandre Julliard8b84ac82005-09-29 10:42:43 +00002445 print FILEO "CLEAN_FILES = y.tab.c y.tab.h lex.yy.c core *.orig *.rej \\\n";
Francois Gougetc7201ce2004-03-03 02:19:20 +00002446 print FILEO " \\\\\\#*\\\\\\# *~ *% .\\\\\\#*\n";
2447 print FILEO "\n";
2448 print FILEO "clean:: \$(SUBDIRS:%=%/__clean__) \$(EXTRASUBDIRS:%=%/__clean__)\n";
2449 print FILEO "\t\$(RM) \$(CLEAN_FILES) \$(RC_SRCS:.rc=.res) \$(C_SRCS:.c=.o) \$(CXX_SRCS:.cpp=.o)\n";
Alexandre Julliard8b84ac82005-09-29 10:42:43 +00002450 print FILEO "\t\$(RM) \$(DLLS:%=%.so) \$(EXES:%=%.so) \$(EXES:%.exe=%)\n";
Francois Gougetc7201ce2004-03-03 02:19:20 +00002451 print FILEO "\n";
2452 print FILEO "\$(SUBDIRS:%=%/__clean__): dummy\n";
2453 print FILEO "\tcd `dirname \$\@` && \$(MAKE) clean\n";
2454 print FILEO "\n";
2455 print FILEO "\$(EXTRASUBDIRS:%=%/__clean__): dummy\n";
2456 print FILEO "\t-cd `dirname \$\@` && \$(RM) \$(CLEAN_FILES)\n";
2457 print FILEO "\n";
Francois Gouget35246cb2001-05-07 18:19:57 +00002458
Francois Gouget755bb922000-11-05 05:23:39 +00002459 if (@{@$project[$P_TARGETS]} > 0) {
Francois Gougeta286c202005-01-11 10:39:10 +00002460 print FILEO "### Target specific build rules\n";
Francois Gouget786a2cd2009-02-25 10:33:48 +01002461 print FILEO "DEFLIB = \$(LIBRARY_PATH) \$(LIBRARIES) \$(DLL_PATH) \$(DLL_IMPORTS:%=-l%)\n\n";
Francois Gougete3d26a32002-09-06 18:36:19 +00002462 foreach my $target (@{@$project[$P_TARGETS]}) {
Francois Gouget755bb922000-11-05 05:23:39 +00002463 my $canon=canonize("@$target[$T_NAME]");
2464 $canon =~ s/_so$//;
Martin Wilck90d65282002-09-13 17:43:25 +00002465
Alexandre Julliard8b84ac82005-09-29 10:42:43 +00002466 print FILEO "\$(${canon}_MODULE).so: \$(${canon}_OBJS)\n";
Francois Gouget8d0e1e72001-03-04 01:03:55 +00002467 if (@{@$target[$T_SOURCES_CXX]} > 0 or @{@$project_settings[$T_SOURCES_CXX]} > 0) {
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00002468 print FILEO "\t\$(CXX)";
Francois Gouget8d0e1e72001-03-04 01:03:55 +00002469 } else {
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00002470 print FILEO "\t\$(CC)";
Francois Gouget8d0e1e72001-03-04 01:03:55 +00002471 }
Alexandre Julliard8b84ac82005-09-29 10:42:43 +00002472 print FILEO " \$(${canon}_LDFLAGS) -o \$\@ \$(${canon}_OBJS) \$(${canon}_LIBRARY_PATH) \$(DEFLIB) \$(${canon}_DLLS:%=-l%) \$(${canon}_LIBRARIES:%=-l%)\n";
Francois Gouget82747b72000-11-25 01:38:39 +00002473 print FILEO "\n\n";
Francois Gouget755bb922000-11-05 05:23:39 +00002474 }
2475 }
2476 close(FILEO);
Francois Gouget35246cb2001-05-07 18:19:57 +00002477
Francois Gouget755bb922000-11-05 05:23:39 +00002478}
2479
Francois Gouget755bb922000-11-05 05:23:39 +00002480
2481##
Alexandre Julliard7cae5582002-06-01 02:55:48 +00002482# This is where we finally generate files. In fact this method does not
Francois Gouget755bb922000-11-05 05:23:39 +00002483# do anything itself but calls the methods that do the actual work.
Francois Gougete3d26a32002-09-06 18:36:19 +00002484sub generate()
Francois Gouget755bb922000-11-05 05:23:39 +00002485{
2486 print "Generating project files...\n";
Francois Gouget755bb922000-11-05 05:23:39 +00002487
Francois Gougete3d26a32002-09-06 18:36:19 +00002488 foreach my $project (@projects) {
Francois Gouget755bb922000-11-05 05:23:39 +00002489 my $path=@$project[$P_PATH];
2490 if ($path eq "") {
2491 $path=".";
2492 } else {
2493 $path =~ s+/$++;
2494 }
2495 print " $path\n";
2496 generate_project_files($project);
2497 }
2498}
2499
2500
2501
2502#####
2503#
2504# Option defaults
2505#
2506#####
2507
2508$opt_backup=1;
2509$opt_lower=$OPT_LOWER_UPPERCASE;
Francois Gougeta106edb2000-11-10 22:29:11 +00002510$opt_lower_include=1;
Francois Gouget755bb922000-11-05 05:23:39 +00002511
Francois Gougetc7201ce2004-03-03 02:19:20 +00002512$opt_work_dir=undef;
2513$opt_single_target=undef;
Francois Gouget755bb922000-11-05 05:23:39 +00002514$opt_target_type=$TT_GUIEXE;
2515$opt_flags=0;
André Hentschel65900b42010-04-21 20:22:13 +02002516$opt_arch=$OPT_ARCH_DEFAULT;
Francois Gouget755bb922000-11-05 05:23:39 +00002517$opt_is_interactive=$OPT_ASK_NO;
2518$opt_ask_project_options=$OPT_ASK_NO;
2519$opt_ask_target_options=$OPT_ASK_NO;
Francois Gougeta106edb2000-11-10 22:29:11 +00002520$opt_no_generated_files=0;
Bill Medlandce4e0a62001-09-24 01:11:50 +00002521$opt_no_source_fix=0;
Francois Gouget755bb922000-11-05 05:23:39 +00002522$opt_no_banner=0;
2523
2524
2525
2526#####
2527#
2528# Main
2529#
2530#####
2531
Francois Gougete3d26a32002-09-06 18:36:19 +00002532sub print_banner()
François Gouget38b3ac52001-01-11 20:17:42 +00002533{
2534 print "Winemaker $version\n";
2535 print "Copyright 2000 Francois Gouget <fgouget\@codeweavers.com> for CodeWeavers\n";
André Hentschel0c53d2e2009-04-23 19:07:54 +02002536 print "Copyright 2004 Dimitrie O. Paun\n";
2537 print "Copyright 2009 André Hentschel\n";
François Gouget38b3ac52001-01-11 20:17:42 +00002538}
2539
Francois Gougete3d26a32002-09-06 18:36:19 +00002540sub usage()
François Gouget38b3ac52001-01-11 20:17:42 +00002541{
2542 print_banner();
Bill Medlandce4e0a62001-09-24 01:11:50 +00002543 print STDERR "Usage: winemaker [--nobanner] [--backup|--nobackup] [--nosource-fix]\n";
François Gouget38b3ac52001-01-11 20:17:42 +00002544 print STDERR " [--lower-none|--lower-all|--lower-uppercase]\n";
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00002545 print STDERR " [--lower-include|--nolower-include] [--mfc|--nomfc]\n";
Martin Wilck90d65282002-09-13 17:43:25 +00002546 print STDERR " [--guiexe|--windows|--cuiexe|--console|--dll]\n";
Francois Gouget89a0c022001-07-30 18:44:48 +00002547 print STDERR " [-Dmacro[=defn]] [-Idir] [-Pdir] [-idll] [-Ldir] [-llibrary]\n";
Francois Gouget15487bc2004-02-02 23:02:32 +00002548 print STDERR " [--nodlls] [--nomsvcrt] [--interactive] [--single-target name]\n";
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00002549 print STDERR " [--generated-files|--nogenerated-files]\n";
André Hentschel65900b42010-04-21 20:22:13 +02002550 print STDERR " [--wine32]\n";
André Hentscheldf5c4172009-04-02 18:53:24 +02002551 print STDERR " work_directory|project_file|workspace_file\n";
François Gouget38b3ac52001-01-11 20:17:42 +00002552 print STDERR "\nWinemaker is designed to recursively convert all the Windows sources found in\n";
André Hentscheld26857c2009-08-29 13:11:12 +02002553 print STDERR "the specified directory or project-file, so that they can be compiled with Winelib.\n";
2554 print STDERR "During this process it will modify and rename some of the corresponding files.\n";
François Gouget38b3ac52001-01-11 20:17:42 +00002555 print STDERR "\tPlease read the manual page before use.\n";
2556 exit (2);
2557}
2558
Martin Wilck90d65282002-09-13 17:43:25 +00002559target_init(\@global_settings);
2560
Francois Gouget755bb922000-11-05 05:23:39 +00002561while (@ARGV>0) {
2562 my $arg=shift @ARGV;
2563 # General options
2564 if ($arg eq "--nobanner") {
2565 $opt_no_banner=1;
2566 } elsif ($arg eq "--backup") {
2567 $opt_backup=1;
2568 } elsif ($arg eq "--nobackup") {
2569 $opt_backup=0;
2570 } elsif ($arg eq "--single-target") {
2571 $opt_single_target=shift @ARGV;
2572 } elsif ($arg eq "--lower-none") {
2573 $opt_lower=$OPT_LOWER_NONE;
2574 } elsif ($arg eq "--lower-all") {
2575 $opt_lower=$OPT_LOWER_ALL;
2576 } elsif ($arg eq "--lower-uppercase") {
2577 $opt_lower=$OPT_LOWER_UPPERCASE;
Francois Gougeta106edb2000-11-10 22:29:11 +00002578 } elsif ($arg eq "--lower-include") {
2579 $opt_lower_include=1;
Francois Gouget82747b72000-11-25 01:38:39 +00002580 } elsif ($arg eq "--nolower-include") {
Francois Gougeta106edb2000-11-10 22:29:11 +00002581 $opt_lower_include=0;
Bill Medlandce4e0a62001-09-24 01:11:50 +00002582 } elsif ($arg eq "--nosource-fix") {
2583 $opt_no_source_fix=1;
Francois Gougeta106edb2000-11-10 22:29:11 +00002584 } elsif ($arg eq "--generated-files") {
2585 $opt_no_generated_files=0;
Francois Gouget82747b72000-11-25 01:38:39 +00002586 } elsif ($arg eq "--nogenerated-files") {
Francois Gougeta106edb2000-11-10 22:29:11 +00002587 $opt_no_generated_files=1;
André Hentschel65900b42010-04-21 20:22:13 +02002588 } elsif ($arg eq "--wine32") {
2589 $opt_arch=$OPT_ARCH_32;
Francois Gouget755bb922000-11-05 05:23:39 +00002590 } elsif ($arg =~ /^-D/) {
2591 push @{$global_settings[$T_DEFINES]},$arg;
2592 } elsif ($arg =~ /^-I/) {
2593 push @{$global_settings[$T_INCLUDE_PATH]},$arg;
Francois Gouget89a0c022001-07-30 18:44:48 +00002594 } elsif ($arg =~ /^-P/) {
2595 push @{$global_settings[$T_DLL_PATH]},"-L$'";
2596 } elsif ($arg =~ /^-i/) {
Dimitrie O. Paun905658c2004-02-27 21:24:20 +00002597 push @{$global_settings[$T_DLLS]},$';
Francois Gouget755bb922000-11-05 05:23:39 +00002598 } elsif ($arg =~ /^-L/) {
2599 push @{$global_settings[$T_LIBRARY_PATH]},$arg;
Francois Gougetbe859592000-11-15 22:12:20 +00002600 } elsif ($arg =~ /^-l/) {
2601 push @{$global_settings[$T_LIBRARIES]},$';
Francois Gouget755bb922000-11-05 05:23:39 +00002602
2603 # 'Source'-based method options
2604 } elsif ($arg eq "--dll") {
2605 $opt_target_type=$TT_DLL;
2606 } elsif ($arg eq "--guiexe" or $arg eq "--windows") {
2607 $opt_target_type=$TT_GUIEXE;
2608 } elsif ($arg eq "--cuiexe" or $arg eq "--console") {
2609 $opt_target_type=$TT_CUIEXE;
2610 } elsif ($arg eq "--interactive") {
2611 $opt_is_interactive=$OPT_ASK_YES;
2612 $opt_ask_project_options=$OPT_ASK_YES;
2613 $opt_ask_target_options=$OPT_ASK_YES;
Francois Gouget755bb922000-11-05 05:23:39 +00002614 } elsif ($arg eq "--mfc") {
Francois Gougetbe859592000-11-15 22:12:20 +00002615 $opt_flags|=$TF_MFC;
Francois Gouget755bb922000-11-05 05:23:39 +00002616 } elsif ($arg eq "--nomfc") {
Martin Wilck3aa9e8c2002-09-10 00:20:27 +00002617 $opt_flags&=~$TF_MFC;
2618 $opt_flags|=$TF_NOMFC;
Martin Wilck3aa9e8c2002-09-10 00:20:27 +00002619 } elsif ($arg eq "--nodlls") {
2620 $opt_flags|=$TF_NODLLS;
Francois Gouget15487bc2004-02-02 23:02:32 +00002621 } elsif ($arg eq "--nomsvcrt") {
2622 $opt_flags|=$TF_NOMSVCRT;
Francois Gouget755bb922000-11-05 05:23:39 +00002623
2624 # Catch errors
2625 } else {
2626 if ($arg ne "--help" and $arg ne "-h" and $arg ne "-?") {
André Hentscheldc21b4f2009-04-02 18:53:14 +02002627 if (!defined $opt_work_dir and !defined $opt_work_file) {
2628 if (-f $arg) {
2629 $opt_work_file=$arg;
2630 }
2631 else {
2632 $opt_work_dir=$arg;
2633 }
2634 } else {
2635 print STDERR "error: the work directory, \"$arg\", has already been specified (was \"$opt_work_dir\")\n";
2636 usage();
2637 }
François Gougetc1f016b2001-01-10 22:43:21 +00002638 } else {
André Hentscheldc21b4f2009-04-02 18:53:14 +02002639 usage();
Francois Gouget755bb922000-11-05 05:23:39 +00002640 }
Francois Gouget755bb922000-11-05 05:23:39 +00002641 }
2642}
2643
André Hentscheldc21b4f2009-04-02 18:53:14 +02002644if (!defined $opt_work_dir and !defined $opt_work_file) {
2645 print STDERR "error: you must specify the directory or project file containing the sources to be converted\n";
François Gouget38b3ac52001-01-11 20:17:42 +00002646 usage();
André Hentscheldc21b4f2009-04-02 18:53:14 +02002647} elsif (defined $opt_work_dir and !chdir $opt_work_dir) {
François Gougetc1f016b2001-01-10 22:43:21 +00002648 print STDERR "error: could not chdir to the work directory\n";
2649 print STDERR " $!\n";
François Gouget38b3ac52001-01-11 20:17:42 +00002650 usage();
François Gougetc1f016b2001-01-10 22:43:21 +00002651}
2652
François Gouget38b3ac52001-01-11 20:17:42 +00002653if ($opt_no_banner == 0) {
2654 print_banner();
Francois Gouget755bb922000-11-05 05:23:39 +00002655}
2656
Francois Gouget786a2cd2009-02-25 10:33:48 +01002657project_init(\@main_project, "", \@global_settings);
Martin Wilck3aa9e8c2002-09-10 00:20:27 +00002658
Francois Gouget755bb922000-11-05 05:23:39 +00002659# Fix the file and directory names
2660fix_file_and_directory_names(".");
2661
2662# Scan the sources to identify the projects and targets
2663source_scan();
2664
Francois Gouget755bb922000-11-05 05:23:39 +00002665# Fix the source files
Bill Medlandce4e0a62001-09-24 01:11:50 +00002666if (! $opt_no_source_fix) {
2667 fix_source();
2668}
Francois Gouget755bb922000-11-05 05:23:39 +00002669
2670# Generate the Makefile and the spec file
Francois Gougeta106edb2000-11-10 22:29:11 +00002671if (! $opt_no_generated_files) {
Francois Gouget755bb922000-11-05 05:23:39 +00002672 generate();
2673}