2006-08-28 09:57:10 +00:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
#
|
|
|
|
# Build the auto-generated parts of the Wine makefiles.
|
|
|
|
#
|
|
|
|
# Copyright 2006 Alexandre Julliard
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
#
|
|
|
|
|
2009-02-23 22:47:56 +00:00
|
|
|
use strict;
|
|
|
|
|
2010-01-23 13:24:06 +00:00
|
|
|
# Dlls and programs that are 16-bit specific
|
|
|
|
my %modules16 =
|
|
|
|
(
|
|
|
|
"ifsmgr.vxd" => 1,
|
|
|
|
"mmdevldr.vxd" => 1,
|
|
|
|
"monodebg.vxd" => 1,
|
|
|
|
"vdhcp.vxd" => 1,
|
|
|
|
"vmm.vxd" => 1,
|
|
|
|
"vnbt.vxd" => 1,
|
|
|
|
"vnetbios.vxd" => 1,
|
|
|
|
"vtdapi.vxd" => 1,
|
|
|
|
"vwin32.vxd" => 1,
|
|
|
|
"w32skrnl.dll" => 1,
|
|
|
|
"winevdm.exe" => 1,
|
|
|
|
"wow32.dll" => 1,
|
|
|
|
);
|
|
|
|
|
2008-07-23 09:40:43 +00:00
|
|
|
my %exported_wine_headers = (
|
|
|
|
"wine/debug.h" => 1,
|
|
|
|
"wine/exception.h" => 1,
|
|
|
|
"wine/itss.idl" => 1,
|
|
|
|
"wine/svcctl.idl" => 1,
|
2007-08-03 12:12:04 +00:00
|
|
|
);
|
|
|
|
|
2009-07-03 11:26:01 +00:00
|
|
|
my %ignored_source_files = (
|
|
|
|
"dlls/wineps.drv/afm2c.c" => 1,
|
|
|
|
"dlls/wineps.drv/mkagl.c" => 1,
|
2015-11-04 08:02:44 +00:00
|
|
|
"include/config.h.in" => 1,
|
2016-07-04 02:04:49 +00:00
|
|
|
"include/stamp-h.in" => 1,
|
2009-07-03 11:26:01 +00:00
|
|
|
"programs/winetest/dist.rc" => 1,
|
2015-10-27 03:13:26 +00:00
|
|
|
"tools/makedep.c" => 1,
|
2009-07-03 11:26:01 +00:00
|
|
|
);
|
|
|
|
|
2016-07-04 02:04:49 +00:00
|
|
|
my @source_vars = (
|
|
|
|
"BISON_SRCS",
|
|
|
|
"C_SRCS",
|
|
|
|
"FONT_SRCS",
|
|
|
|
"HEADER_SRCS",
|
|
|
|
"IDL_SRCS",
|
|
|
|
"IN_SRCS",
|
|
|
|
"LEX_SRCS",
|
|
|
|
"MANPAGES",
|
|
|
|
"MC_SRCS",
|
|
|
|
"OBJC_SRCS",
|
|
|
|
"PO_SRCS",
|
|
|
|
"RC_SRCS",
|
2018-02-17 10:39:05 +00:00
|
|
|
"SOURCES",
|
2016-07-04 02:04:49 +00:00
|
|
|
"SVG_SRCS",
|
|
|
|
"XTEMPLATE_SRCS"
|
|
|
|
);
|
|
|
|
|
2016-03-01 05:30:24 +00:00
|
|
|
my (@makefiles, %makefiles);
|
2020-02-11 08:01:27 +00:00
|
|
|
my @nls_files;
|
2009-07-03 11:26:01 +00:00
|
|
|
|
|
|
|
sub dirname($)
|
|
|
|
{
|
|
|
|
my $ret = shift;
|
|
|
|
return "" unless $ret =~ /\//;
|
|
|
|
$ret =~ s!/[^/]*$!!;
|
|
|
|
return $ret;
|
|
|
|
}
|
2006-09-22 07:27:29 +00:00
|
|
|
|
2006-08-28 09:57:10 +00:00
|
|
|
# update a file if changed
|
2016-07-06 06:32:16 +00:00
|
|
|
sub update_file($$)
|
2006-08-28 09:57:10 +00:00
|
|
|
{
|
|
|
|
my $file = shift;
|
2016-07-06 06:32:16 +00:00
|
|
|
my $new = shift;
|
|
|
|
|
|
|
|
open FILE, ">$file.new" or die "cannot create $file.new";
|
|
|
|
print FILE $new;
|
|
|
|
close FILE;
|
|
|
|
rename "$file.new", "$file";
|
|
|
|
print "$file updated\n";
|
|
|
|
if ($file eq "configure.ac")
|
2006-08-28 09:57:10 +00:00
|
|
|
{
|
2016-07-06 06:32:16 +00:00
|
|
|
system "autoconf";
|
|
|
|
print "configure updated\n";
|
2006-08-28 09:57:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# replace some lines in a file between two markers
|
|
|
|
sub replace_in_file($$$@)
|
|
|
|
{
|
|
|
|
my $file = shift;
|
|
|
|
my $start = shift;
|
|
|
|
my $end = shift;
|
2016-07-06 06:32:16 +00:00
|
|
|
my ($old, $new);
|
2006-08-28 09:57:10 +00:00
|
|
|
|
2016-07-06 06:32:16 +00:00
|
|
|
open OLD_FILE, "$file" or die "cannot open $file";
|
|
|
|
while (<OLD_FILE>)
|
2006-08-28 09:57:10 +00:00
|
|
|
{
|
2016-07-06 06:32:16 +00:00
|
|
|
$old .= $_;
|
|
|
|
last if /$start/;
|
|
|
|
$new .= $_;
|
2006-08-28 09:57:10 +00:00
|
|
|
}
|
|
|
|
|
2016-07-06 06:32:16 +00:00
|
|
|
$new .= join "", @_;
|
2006-08-28 09:57:10 +00:00
|
|
|
|
2016-07-06 06:32:16 +00:00
|
|
|
my $skip = 1;
|
|
|
|
while (<OLD_FILE>)
|
2006-08-28 09:57:10 +00:00
|
|
|
{
|
2016-07-06 06:32:16 +00:00
|
|
|
$old .= $_;
|
|
|
|
$new .= $_ unless $skip;
|
|
|
|
$skip = 0 if /$end/;
|
2006-08-28 09:57:10 +00:00
|
|
|
}
|
|
|
|
|
2016-07-06 06:32:16 +00:00
|
|
|
close OLD_FILE;
|
|
|
|
update_file($file, $new) if $old ne $new;
|
2006-08-28 09:57:10 +00:00
|
|
|
}
|
|
|
|
|
2016-07-04 02:04:49 +00:00
|
|
|
# replace all source variables in a makefile
|
|
|
|
sub replace_makefile_variables($)
|
2009-07-03 11:26:01 +00:00
|
|
|
{
|
2016-07-04 02:04:49 +00:00
|
|
|
my $file = shift;
|
2009-07-03 11:26:01 +00:00
|
|
|
my $make = $makefiles{$file};
|
2016-07-04 02:04:49 +00:00
|
|
|
my $source_vars_regexp = join "|", @source_vars;
|
|
|
|
my %replaced;
|
2016-07-06 06:32:16 +00:00
|
|
|
my $old;
|
|
|
|
my $new;
|
2009-07-03 11:26:01 +00:00
|
|
|
|
|
|
|
open OLD_FILE, "$file.in" or die "cannot open $file.in";
|
|
|
|
while (<OLD_FILE>)
|
|
|
|
{
|
2016-07-06 06:32:16 +00:00
|
|
|
$old .= $_;
|
2016-07-04 02:04:49 +00:00
|
|
|
if (/^\s*($source_vars_regexp)(\s*)=/)
|
2009-07-03 11:26:01 +00:00
|
|
|
{
|
|
|
|
# try to preserve formatting
|
2016-07-04 02:04:49 +00:00
|
|
|
my $var = $1;
|
|
|
|
my $spaces = $2;
|
|
|
|
my $replaced = 0;
|
|
|
|
my @values;
|
|
|
|
|
|
|
|
if (defined ${$make}{"=$var"})
|
|
|
|
{
|
|
|
|
@values = @{${$make}{"=$var"}};
|
|
|
|
${$make}{$var} = \@values;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
undef ${$make}{$var};
|
|
|
|
}
|
2009-07-03 11:26:01 +00:00
|
|
|
my $multiline = /\\$/ || (@values > 1);
|
2016-07-04 02:04:49 +00:00
|
|
|
my $old_str = $_;
|
2009-07-03 11:26:01 +00:00
|
|
|
while (/\\$/)
|
|
|
|
{
|
|
|
|
$_ = <OLD_FILE>;
|
|
|
|
last unless $_;
|
2016-07-06 06:32:16 +00:00
|
|
|
$old .= $_;
|
2016-07-04 02:04:49 +00:00
|
|
|
$old_str .= $_;
|
2009-07-03 11:26:01 +00:00
|
|
|
}
|
2016-07-04 02:04:49 +00:00
|
|
|
my $new_str = "";
|
2013-11-05 18:30:20 +00:00
|
|
|
if (!@values)
|
|
|
|
{
|
|
|
|
# nothing
|
|
|
|
}
|
|
|
|
elsif ($multiline)
|
2009-07-03 11:26:01 +00:00
|
|
|
{
|
2016-07-04 02:04:49 +00:00
|
|
|
$new_str = "$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
|
2016-07-06 06:32:16 +00:00
|
|
|
$new .= $new_str;
|
2009-07-03 11:26:01 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-04 02:04:49 +00:00
|
|
|
$new_str = "$var$spaces= @values\n";
|
2016-07-06 06:32:16 +00:00
|
|
|
$new .= $new_str;
|
2009-07-03 11:26:01 +00:00
|
|
|
}
|
2016-07-04 02:04:49 +00:00
|
|
|
$replaced{$var} = 1;
|
2009-07-03 11:26:01 +00:00
|
|
|
next;
|
|
|
|
}
|
2016-07-06 06:32:16 +00:00
|
|
|
$new .= $_;
|
2009-07-03 11:26:01 +00:00
|
|
|
}
|
2018-02-17 10:39:05 +00:00
|
|
|
# if we are using SOURCES, ignore the other variables
|
|
|
|
unless ($replaced{"SOURCES"})
|
2016-07-04 02:04:49 +00:00
|
|
|
{
|
2018-02-17 10:39:05 +00:00
|
|
|
foreach my $var (@source_vars)
|
|
|
|
{
|
|
|
|
next if defined $replaced{$var};
|
|
|
|
next if $var eq "SOURCES";
|
|
|
|
next unless defined ${$make}{"=$var"};
|
|
|
|
my @values = @{${$make}{"=$var"}};
|
|
|
|
next unless @values;
|
|
|
|
$new .= "\n$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
|
|
|
|
}
|
2016-07-04 02:04:49 +00:00
|
|
|
}
|
2009-07-03 11:26:01 +00:00
|
|
|
close OLD_FILE;
|
2016-07-06 06:32:16 +00:00
|
|
|
update_file("$file.in", $new) if $old ne $new;
|
2009-07-03 11:26:01 +00:00
|
|
|
}
|
|
|
|
|
2011-01-01 16:49:38 +00:00
|
|
|
# parse the specified makefile and load the variables
|
2006-09-22 07:27:29 +00:00
|
|
|
sub parse_makefile($)
|
|
|
|
{
|
|
|
|
my $file = shift;
|
2006-09-24 10:11:39 +00:00
|
|
|
my %make;
|
2006-09-22 07:27:29 +00:00
|
|
|
|
2006-12-27 20:23:36 +00:00
|
|
|
($make{"=dir"} = $file) =~ s/[^\/]+$//;
|
|
|
|
|
2006-09-22 07:27:29 +00:00
|
|
|
open MAKE, "$file.in" or die "cannot open $file.in\n";
|
|
|
|
|
|
|
|
while (<MAKE>)
|
|
|
|
{
|
|
|
|
chomp;
|
2009-07-03 11:26:01 +00:00
|
|
|
next if (/^\s*#/);
|
2006-09-22 07:27:29 +00:00
|
|
|
while (/\\$/) { chop; $_ .= <MAKE>; chomp; } # merge continued lines
|
2009-07-03 11:26:01 +00:00
|
|
|
next if (/^\s*$/);
|
2006-09-22 07:27:29 +00:00
|
|
|
|
2015-11-13 09:38:51 +00:00
|
|
|
if (/\@[A-Z_]+\@/) # config.status substitution variable
|
|
|
|
{
|
2015-11-17 03:45:14 +00:00
|
|
|
die "Configure substitution is not allowed in $file" unless $file eq "Makefile";
|
2015-11-13 09:38:51 +00:00
|
|
|
}
|
2019-04-24 09:27:39 +00:00
|
|
|
if (/^\s*(MODULE|IMPORTLIB|TESTDLL|PARENTSRC|APPMODE|EXTRADLLFLAGS)\s*=\s*(.*)/)
|
2006-09-24 10:11:39 +00:00
|
|
|
{
|
2011-06-12 09:41:43 +00:00
|
|
|
my $var = $1;
|
|
|
|
$make{$var} = $2;
|
2006-09-24 10:11:39 +00:00
|
|
|
next;
|
|
|
|
}
|
2016-07-04 02:04:49 +00:00
|
|
|
my $source_vars_regexp = join "|", @source_vars;
|
|
|
|
if (/^\s*($source_vars_regexp|PROGRAMS|EXTRA_TARGETS|EXTRA_OBJS|INSTALL_LIB|INSTALL_DEV)\s*=\s*(.*)/)
|
2006-12-24 16:31:52 +00:00
|
|
|
{
|
2011-06-12 09:41:43 +00:00
|
|
|
my $var = $1;
|
2006-12-24 16:31:52 +00:00
|
|
|
my @list = split(/\s+/, $2);
|
2011-06-12 09:41:43 +00:00
|
|
|
$make{$var} = \@list;
|
2015-10-29 05:32:45 +00:00
|
|
|
next;
|
|
|
|
}
|
2010-10-23 08:44:05 +00:00
|
|
|
if (/^\s*(TOPSRCDIR|TOPOBJDIR|SRCDIR|VPATH)\s*=\s*(.*)/)
|
|
|
|
{
|
|
|
|
die "Variable $1 in $file.in is obsolete";
|
|
|
|
}
|
2006-09-22 07:27:29 +00:00
|
|
|
}
|
2011-06-12 09:41:43 +00:00
|
|
|
|
2006-09-24 10:11:39 +00:00
|
|
|
return %make;
|
2006-09-22 07:27:29 +00:00
|
|
|
}
|
2006-08-28 09:57:10 +00:00
|
|
|
|
2013-11-05 18:30:20 +00:00
|
|
|
# read pragma makedep flags from a source file
|
|
|
|
sub get_makedep_flags($)
|
|
|
|
{
|
|
|
|
my $file = shift;
|
|
|
|
my %flags;
|
|
|
|
|
|
|
|
open FILE, $file or die "cannot open $file";
|
2015-11-10 09:09:19 +00:00
|
|
|
if ($file =~ /\.sfd$/)
|
2013-11-05 18:30:20 +00:00
|
|
|
{
|
2015-11-10 09:09:19 +00:00
|
|
|
while (<FILE>)
|
2013-11-05 18:30:20 +00:00
|
|
|
{
|
2015-11-10 09:09:19 +00:00
|
|
|
next unless /^UComments:\s*\"(.*)\"$/;
|
|
|
|
foreach my $pragma (split /\+AAoA/, $1)
|
|
|
|
{
|
|
|
|
next unless $pragma =~ /^#\s*pragma\s+makedep\s+(.*)/;
|
|
|
|
foreach my $flag (split /\s+/, $1)
|
|
|
|
{
|
|
|
|
$flags{$flag} = 1;
|
|
|
|
last if $flag eq "font";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (<FILE>)
|
|
|
|
{
|
|
|
|
next unless /^#\s*pragma\s+makedep\s+(.*)/;
|
|
|
|
foreach my $flag (split /\s+/, $1)
|
|
|
|
{
|
|
|
|
last if $flag eq "depend";
|
|
|
|
$flags{$flag} = 1;
|
|
|
|
}
|
2013-11-05 18:30:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
close FILE;
|
|
|
|
return %flags;
|
|
|
|
}
|
|
|
|
|
2013-11-12 10:03:09 +00:00
|
|
|
sub get_parent_makefile($)
|
|
|
|
{
|
|
|
|
my $file = shift;
|
|
|
|
my %make = %{$makefiles{$file}};
|
|
|
|
my $reldir = $make{"PARENTSRC"} || "";
|
|
|
|
return "" unless $reldir;
|
|
|
|
(my $path = $file) =~ s/\/Makefile$/\//;
|
|
|
|
while ($reldir =~ /^\.\.\//)
|
|
|
|
{
|
|
|
|
$reldir =~ s/^\.\.\///;
|
|
|
|
$path =~ s/[^\/]+\/$//;
|
|
|
|
}
|
|
|
|
return "$path$reldir/Makefile";
|
|
|
|
}
|
|
|
|
|
|
|
|
# preserve shared source files that are listed in the existing makefile
|
|
|
|
sub preserve_shared_source_files($$$)
|
|
|
|
{
|
|
|
|
my ($make, $parent, $var) = @_;
|
|
|
|
my %srcs;
|
|
|
|
|
|
|
|
return unless defined ${$parent}{"=$var"};
|
|
|
|
foreach my $file (@{${$parent}{"=$var"}}) { $srcs{$file} = 1; }
|
|
|
|
foreach my $file (@{${$make}{"=$var"}}) { $srcs{$file} = 0; }
|
|
|
|
|
|
|
|
foreach my $file (@{${$make}{$var}})
|
|
|
|
{
|
|
|
|
next unless defined $srcs{$file} && $srcs{$file} == 1;
|
|
|
|
push @{${$make}{"=$var"}}, $file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-03 11:26:01 +00:00
|
|
|
# assign source files to their respective makefile
|
2011-01-01 16:49:38 +00:00
|
|
|
sub assign_sources_to_makefiles(@)
|
2009-07-03 11:26:01 +00:00
|
|
|
{
|
2011-01-01 16:49:38 +00:00
|
|
|
foreach my $file (@_)
|
2009-07-03 11:26:01 +00:00
|
|
|
{
|
|
|
|
next if defined $ignored_source_files{$file};
|
2013-12-12 19:04:53 +00:00
|
|
|
next if $file =~ /Makefile\.in$/;
|
2009-07-03 11:26:01 +00:00
|
|
|
my $dir = dirname( $file );
|
2011-01-01 16:49:38 +00:00
|
|
|
my $subdir = $dir;
|
2009-07-03 11:26:01 +00:00
|
|
|
|
|
|
|
while ($dir && !defined $makefiles{"$dir/Makefile"}) { $dir = dirname( $dir ); }
|
2011-01-01 16:49:38 +00:00
|
|
|
$subdir =~ s/^$dir\/?//;
|
2009-07-03 11:26:01 +00:00
|
|
|
next unless $dir;
|
|
|
|
|
|
|
|
die "no makefile found for $file\n" unless defined $makefiles{"$dir/Makefile"};
|
|
|
|
|
|
|
|
my $make = $makefiles{"$dir/Makefile"};
|
2011-01-01 16:49:38 +00:00
|
|
|
my $name = substr( $file, length($dir) + 1 );
|
2015-11-04 08:02:44 +00:00
|
|
|
|
2018-03-04 22:02:30 +00:00
|
|
|
next if $file =~ /^include\/wine\// && !get_makedep_flags($file) && !$exported_wine_headers{$name};
|
2011-01-01 16:49:38 +00:00
|
|
|
|
2015-11-04 08:02:44 +00:00
|
|
|
if ($name =~ /\.m$/) { push @{${$make}{"=OBJC_SRCS"}}, $name; }
|
|
|
|
elsif ($name =~ /\.l$/) { push @{${$make}{"=LEX_SRCS"}}, $name; }
|
|
|
|
elsif ($name =~ /\.y$/) { push @{${$make}{"=BISON_SRCS"}}, $name; }
|
|
|
|
elsif ($name =~ /\.svg$/) { push @{${$make}{"=SVG_SRCS"}}, $name; }
|
2015-11-10 09:09:19 +00:00
|
|
|
elsif ($name =~ /\.sfd$/)
|
|
|
|
{
|
|
|
|
push @{${$make}{"=FONT_SRCS"}}, $name;
|
|
|
|
}
|
2015-11-04 08:02:44 +00:00
|
|
|
elsif ($name =~ /\.c$/)
|
2011-01-01 16:49:38 +00:00
|
|
|
{
|
2015-11-04 08:02:44 +00:00
|
|
|
push @{${$make}{"=C_SRCS"}}, $name;
|
2011-01-01 16:49:38 +00:00
|
|
|
}
|
2018-02-17 10:39:05 +00:00
|
|
|
elsif ($name =~ /\.h$/ || $name =~ /\.rh$/ || $name =~ /\.inl$/ || $name =~ /\.x$/)
|
2011-01-01 16:49:38 +00:00
|
|
|
{
|
2015-11-04 08:02:44 +00:00
|
|
|
next if $dir ne "include";
|
|
|
|
}
|
|
|
|
elsif ($name =~ /\.rc$/)
|
|
|
|
{
|
|
|
|
push @{${$make}{"=RC_SRCS"}}, $name;
|
|
|
|
}
|
|
|
|
elsif ($name =~ /\.mc$/)
|
|
|
|
{
|
|
|
|
push @{${$make}{"=MC_SRCS"}}, $name;
|
|
|
|
}
|
2016-03-01 05:21:01 +00:00
|
|
|
elsif ($name =~ /\.po$/)
|
|
|
|
{
|
|
|
|
push @{${$make}{"=PO_SRCS"}}, $name;
|
|
|
|
}
|
2015-11-04 08:02:44 +00:00
|
|
|
elsif ($name =~ /\.idl$/)
|
|
|
|
{
|
2018-03-04 22:02:30 +00:00
|
|
|
die "no makedep flags specified in $file" unless $dir eq "include" || get_makedep_flags($file);
|
2015-11-04 08:02:44 +00:00
|
|
|
push @{${$make}{"=IDL_SRCS"}}, $name;
|
|
|
|
}
|
|
|
|
elsif ($name =~ /\.man\.in$/)
|
|
|
|
{
|
|
|
|
push @{${$make}{"=MANPAGES"}}, $name;
|
|
|
|
}
|
|
|
|
elsif ($name =~ /\.in$/)
|
|
|
|
{
|
|
|
|
push @{${$make}{"=IN_SRCS"}}, $name;
|
2011-01-01 16:49:38 +00:00
|
|
|
}
|
2018-02-17 10:46:25 +00:00
|
|
|
elsif ($name =~ /\.spec$/)
|
|
|
|
{
|
|
|
|
next unless defined ${$make}{"TESTDLL"};
|
|
|
|
}
|
2020-02-11 08:01:27 +00:00
|
|
|
elsif ($name =~ /\.nls$/)
|
|
|
|
{
|
|
|
|
push @nls_files, $name if $dir eq "nls";
|
|
|
|
}
|
2018-02-19 19:57:15 +00:00
|
|
|
elsif ($dir ne "loader") # loader dir contains misc files
|
2018-02-17 10:39:05 +00:00
|
|
|
{
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
push @{${$make}{"=SOURCES"}}, $name;
|
2011-01-01 16:49:38 +00:00
|
|
|
}
|
|
|
|
|
2013-11-12 10:03:09 +00:00
|
|
|
# preserve shared source files from the parent makefile
|
|
|
|
foreach my $file (@makefiles)
|
|
|
|
{
|
2014-08-27 08:53:25 +00:00
|
|
|
my $make = $makefiles{$file};
|
2013-11-12 10:03:09 +00:00
|
|
|
my $parent = get_parent_makefile( $file );
|
|
|
|
next unless $parent;
|
|
|
|
preserve_shared_source_files( $makefiles{$file}, $makefiles{$parent}, "C_SRCS" );
|
2018-12-21 09:49:17 +00:00
|
|
|
preserve_shared_source_files( $makefiles{$file}, $makefiles{$parent}, "RC_SRCS" );
|
2014-04-14 11:15:02 +00:00
|
|
|
preserve_shared_source_files( $makefiles{$file}, $makefiles{$parent}, "IDL_SRCS" );
|
2013-11-12 10:03:09 +00:00
|
|
|
preserve_shared_source_files( $makefiles{$file}, $makefiles{$parent}, "LEX_SRCS" );
|
|
|
|
preserve_shared_source_files( $makefiles{$file}, $makefiles{$parent}, "BISON_SRCS" );
|
|
|
|
}
|
2009-07-03 11:26:01 +00:00
|
|
|
}
|
2006-08-28 09:57:10 +00:00
|
|
|
|
2006-09-14 07:41:21 +00:00
|
|
|
################################################################
|
2008-08-20 14:02:37 +00:00
|
|
|
# update the makefile list in configure.ac
|
2006-09-14 07:41:21 +00:00
|
|
|
|
2006-12-29 11:49:26 +00:00
|
|
|
sub update_makefiles(@)
|
2006-09-14 07:41:21 +00:00
|
|
|
{
|
2008-08-20 14:02:37 +00:00
|
|
|
my (@lines);
|
2007-08-03 12:12:04 +00:00
|
|
|
|
2006-12-29 11:49:26 +00:00
|
|
|
foreach my $file (sort @_)
|
|
|
|
{
|
2018-03-04 22:02:30 +00:00
|
|
|
next if $file eq "Makefile";
|
2008-08-20 14:02:37 +00:00
|
|
|
my %make = %{$makefiles{$file}};
|
2018-03-04 22:02:30 +00:00
|
|
|
(my $dir = $file) =~ s/^(.*)\/Makefile/$1/;
|
2008-08-25 10:02:27 +00:00
|
|
|
my $args = "";
|
2014-01-01 20:56:22 +00:00
|
|
|
if (defined($make{"TESTDLL"})) # test
|
2009-03-13 11:18:04 +00:00
|
|
|
{
|
2014-01-01 20:56:22 +00:00
|
|
|
die "TESTDLL should not be defined in $file" unless $file =~ /\/tests\/Makefile$/;
|
|
|
|
die "MODULE should not be defined in $file" if defined $make{"MODULE"};
|
|
|
|
die "STATICLIB should not be defined in $file" if defined $make{"STATICLIB"};
|
|
|
|
}
|
|
|
|
elsif (defined($make{"MODULE"}) && $make{"MODULE"} =~ /\.a$/) # import lib
|
|
|
|
{
|
|
|
|
die "MODULE should not be defined as static lib in $file" unless $file =~ /^dlls\//;
|
|
|
|
die "APPMODE should not be defined in $file" if defined $make{"APPMODE"};
|
|
|
|
die "STATICLIB should not be defined in $file" if defined $make{"STATICLIB"};
|
|
|
|
}
|
2018-03-04 22:02:30 +00:00
|
|
|
elsif (defined($make{"MODULE"})) # dll or program
|
2014-01-01 20:56:22 +00:00
|
|
|
{
|
2018-03-04 22:02:30 +00:00
|
|
|
(my $name = $file) =~ s/^(dlls|programs)\/(.*)\/Makefile/$2/;
|
2019-04-24 09:27:39 +00:00
|
|
|
my $dllflags = $make{"EXTRADLLFLAGS"} || "";
|
|
|
|
if (defined $make{"APPMODE"}) { $dllflags .= " " . $make{"APPMODE"}; }
|
2018-03-04 22:02:30 +00:00
|
|
|
die "MODULE should not be defined in $file" unless $file =~ /^(dlls|programs)\//;
|
2014-01-01 20:56:22 +00:00
|
|
|
die "STATICLIB should not be defined in $file" if defined $make{"STATICLIB"};
|
2018-03-04 22:02:30 +00:00
|
|
|
if ($file =~ /^programs\//)
|
2010-10-23 08:44:05 +00:00
|
|
|
{
|
2019-04-24 09:27:39 +00:00
|
|
|
die "EXTRADLLFLAGS should be defined in $file" unless $dllflags;
|
|
|
|
die "EXTRADLLFLAGS should contain -mconsole or -mwindows in $file" unless $dllflags =~ /-m(console|windows)/;
|
2021-03-05 18:16:45 +00:00
|
|
|
die "Invalid MODULE in $file" unless ($name =~ /\./ && $make{"MODULE"} eq $name) || $make{"MODULE"} eq "$name.exe";
|
2010-10-23 08:44:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-03-04 22:02:30 +00:00
|
|
|
die "APPMODE should not be defined in $file" if defined $make{"APPMODE"} ;
|
2019-04-24 09:27:39 +00:00
|
|
|
die "EXTRADLLFLAGS should not contain -mconsole or -mwindows in $file" if $dllflags =~ /-m(console|windows)/;
|
2021-03-05 18:16:45 +00:00
|
|
|
die "Invalid MODULE in $file" unless ($name =~ /\./ && $make{"MODULE"} eq $name) || $make{"MODULE"} eq "$name.dll";
|
2010-10-23 08:44:05 +00:00
|
|
|
}
|
2018-03-04 22:02:30 +00:00
|
|
|
if (defined $make{"IMPORTLIB"})
|
2010-10-23 08:44:05 +00:00
|
|
|
{
|
2018-03-04 22:02:30 +00:00
|
|
|
die "IMPORTLIB not allowed in programs\n" if $file =~ /^programs\//;
|
|
|
|
die "Invalid IMPORTLIB name in $file" if $make{"IMPORTLIB"} =~ /\./;
|
2010-10-23 08:44:05 +00:00
|
|
|
}
|
2018-03-04 22:02:30 +00:00
|
|
|
$args = ",enable_win16" if $make{"MODULE"} =~ /16$/ || $modules16{$make{"MODULE"}};
|
2010-01-23 13:15:43 +00:00
|
|
|
}
|
2010-02-08 19:47:07 +00:00
|
|
|
elsif ($file =~ /^tools.*\/Makefile$/)
|
|
|
|
{
|
2014-01-01 20:56:22 +00:00
|
|
|
die "APPMODE should not be defined in $file" if defined $make{"APPMODE"};
|
2019-04-24 09:27:39 +00:00
|
|
|
die "EXTRADLLFLAGS should not be defined in $file" if defined $make{"EXTRADLLFLAGS"};
|
2014-01-01 20:56:22 +00:00
|
|
|
die "STATICLIB should not be defined in $file" if defined $make{"STATICLIB"};
|
2018-03-04 22:02:30 +00:00
|
|
|
$args = ",,[test \"x\$enable_tools\" = xno]";
|
2010-02-08 19:47:07 +00:00
|
|
|
}
|
2018-03-04 22:02:30 +00:00
|
|
|
push @lines, "WINE_CONFIG_MAKEFILE($dir$args)\n";
|
2006-12-29 11:49:26 +00:00
|
|
|
}
|
|
|
|
|
2009-07-03 11:26:01 +00:00
|
|
|
# update the source variables in all the makefiles
|
|
|
|
|
2016-07-04 02:04:49 +00:00
|
|
|
foreach my $file (sort @_) { replace_makefile_variables( $file ); }
|
2009-07-03 11:26:01 +00:00
|
|
|
|
2010-02-08 20:27:54 +00:00
|
|
|
push @lines, "dnl End of auto-generated output commands\n";
|
2018-03-04 22:02:30 +00:00
|
|
|
replace_in_file( "configure.ac", '^WINE_CONFIG_MAKEFILE', '^dnl End of auto-generated output commands\n$', @lines);
|
2006-09-14 07:41:21 +00:00
|
|
|
}
|
|
|
|
|
2020-02-11 08:01:27 +00:00
|
|
|
sub update_wine_inf()
|
|
|
|
{
|
2020-03-17 10:26:53 +00:00
|
|
|
my @lines;
|
2020-11-11 10:04:06 +00:00
|
|
|
push @lines, "[NlsFiles]", sort grep(!/^sort/, @nls_files);
|
2020-03-17 10:26:53 +00:00
|
|
|
push @lines, "\n[SortFiles]", sort grep(/^sort/, @nls_files);
|
|
|
|
push @lines, "\n[WineSourceDirs]\n";
|
2020-11-11 10:04:06 +00:00
|
|
|
replace_in_file "loader/wine.inf.in", '^\[NlsFiles\]', '^\[WineSourceDirs\]', join( "\n", @lines );
|
2020-02-11 08:01:27 +00:00
|
|
|
}
|
2006-12-29 11:49:26 +00:00
|
|
|
|
2014-09-02 18:54:24 +00:00
|
|
|
my $git_dir = $ENV{GIT_DIR} || ".git";
|
2020-03-23 16:58:50 +00:00
|
|
|
die "needs to be run from a git checkout" unless -e $git_dir;
|
2009-07-03 11:26:01 +00:00
|
|
|
|
2011-01-01 16:49:38 +00:00
|
|
|
my @all_files = split /\0/, `git ls-files -c -z`;
|
2017-11-17 18:39:59 +00:00
|
|
|
map { $ignored_source_files{$_} = 1; } split /\0/, `git ls-files -d -z`;
|
2011-01-04 15:55:54 +00:00
|
|
|
@makefiles = map { (my $ret = $_) =~ s/\.in$//; $ret; } grep /Makefile.in$/, @all_files;
|
2007-08-03 12:12:04 +00:00
|
|
|
|
2014-01-14 10:59:25 +00:00
|
|
|
foreach my $file (sort @makefiles)
|
2007-08-03 12:12:04 +00:00
|
|
|
{
|
|
|
|
my %make = parse_makefile( $file );
|
|
|
|
$makefiles{$file} = \%make;
|
|
|
|
}
|
|
|
|
|
2011-01-01 16:49:38 +00:00
|
|
|
assign_sources_to_makefiles( @all_files );
|
2006-12-29 11:49:26 +00:00
|
|
|
update_makefiles( @makefiles );
|
2020-02-11 08:01:27 +00:00
|
|
|
update_wine_inf();
|