2006-08-28 11:57:10 +02: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 23:47:56 +01:00
use strict;
2006-09-24 12:11:39 +02:00
# Make rules files
2006-09-22 09:27:29 +02:00
my %makerules =
(
"MAKE_RULES" => "Make.rules",
);
2006-09-24 12:11:39 +02:00
# Programs that we want to install in the bin directory too
my %bin_install =
(
"msiexec" => 1,
"notepad" => 1,
"regedit" => 1,
"regsvr32" => 1,
"wineboot" => 1,
"winecfg" => 1,
"wineconsole" => 1,
"winedbg" => 1,
"winefile" => 1,
"winemine" => 1,
"winepath" => 1,
);
# Programs that we don't want to install at all
my %dont_install =
(
"winetest" => 1,
);
2010-01-23 14:24:06 +01: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 11:40:43 +02:00
my %exported_wine_headers = (
"wine/debug.h" => 1,
"wine/exception.h" => 1,
"wine/library.h" => 1,
"wine/unicode.h" => 1,
"wine/itss.idl" => 1,
"wine/svcctl.idl" => 1,
2007-08-03 14:12:04 +02:00
);
my %private_idl_headers = (
2009-10-26 14:32:55 +01:00
"access.idl" => 1,
2009-11-11 11:48:44 +01:00
"asynot.idl" => 1,
2009-11-12 16:19:00 +01:00
"asysta.idl" => 1,
2007-08-03 14:12:04 +02:00
"axcore.idl" => 1,
"axextend.idl" => 1,
2009-07-22 18:18:50 +02:00
"binres.idl" => 1,
2013-08-22 12:41:02 +02:00
"chprst.idl" => 1,
2009-10-26 15:21:18 +01:00
"cmdbas.idl" => 1,
2009-10-26 16:42:13 +01:00
"cmdtxt.idl" => 1,
2009-07-23 12:53:34 +02:00
"crtrow.idl" => 1,
2009-07-22 15:03:06 +02:00
"dbccmd.idl" => 1,
2009-07-22 15:08:35 +02:00
"dbcses.idl" => 1,
2009-07-22 16:49:06 +02:00
"dbdsad.idl" => 1,
2007-08-03 14:12:04 +02:00
"dbinit.idl" => 1,
"dbprop.idl" => 1,
"dbs.idl" => 1,
"devenum.idl" => 1,
2008-07-10 19:38:47 +02:00
"dyngraph.idl" => 1,
2013-06-18 02:22:57 +02:00
"errrec.idl" => 1,
2009-07-22 15:25:27 +02:00
"opnrst.idl" => 1,
2009-10-28 14:44:06 +01:00
"row.idl" => 1,
2009-10-28 14:49:02 +01:00
"rowchg.idl" => 1,
2013-07-30 12:38:38 +02:00
"rowpos.idl" => 1,
2013-08-01 05:57:55 +02:00
"rowpsc.idl" => 1,
2009-10-28 14:08:02 +01:00
"rstbas.idl" => 1,
2009-10-27 11:11:36 +01:00
"rstinf.idl" => 1,
2009-10-28 14:18:54 +01:00
"rstloc.idl" => 1,
2013-04-05 20:28:52 +02:00
"rstnot.idl" => 1,
2013-06-03 04:29:34 +02:00
"srcrst.idl" => 1,
2009-07-22 17:33:17 +02:00
"sesprp.idl" => 1,
2008-07-10 19:38:47 +02:00
"vmrender.idl" => 1,
2010-12-21 11:40:04 +01:00
"xmldom.idl" => 1,
"xmldso.idl" => 1,
2009-01-19 10:39:05 +01:00
"wine/winedxgi.idl" => 1,
2007-08-03 14:12:04 +02:00
);
2009-07-03 13:26:01 +02:00
my %ignored_source_files = (
"dlls/wineps.drv/afm2c.c" => 1,
"dlls/wineps.drv/mkagl.c" => 1,
"programs/winetest/dist.rc" => 1,
);
2011-01-04 16:55:54 +01:00
my (@linguas, @makefiles, %makefiles);
2009-07-03 13:26:01 +02:00
sub dirname($)
{
my $ret = shift;
return "" unless $ret =~ /\//;
$ret =~ s!/[^/]*$!!;
return $ret;
}
2006-09-22 09:27:29 +02:00
2006-08-28 11:57:10 +02:00
# update a file if changed
sub update_file($)
{
my $file = shift;
2007-01-23 12:17:42 +01:00
my $ret = !(-f $file) || system "cmp $file $file.new >/dev/null";
2006-08-28 11:57:10 +02:00
if (!$ret)
{
unlink "$file.new";
}
else
{
rename "$file.new", "$file";
print "$file updated\n";
2006-12-27 21:23:36 +01:00
if ($file eq "configure.ac")
{
system "autoconf";
print "configure updated\n";
}
2006-08-28 11:57:10 +02:00
}
return $ret;
}
# replace some lines in a file between two markers
sub replace_in_file($$$@)
{
my $file = shift;
my $start = shift;
my $end = shift;
open NEW_FILE, ">$file.new" or die "cannot create $file.new";
2006-09-24 12:11:39 +02:00
if (defined($start))
2006-08-28 11:57:10 +02:00
{
2006-09-24 12:11:39 +02:00
open OLD_FILE, "$file" or die "cannot open $file";
while (<OLD_FILE>)
{
last if /$start/;
print NEW_FILE $_;
}
2006-08-28 11:57:10 +02:00
}
print NEW_FILE @_;
if (defined($end))
{
my $skip=1;
while (<OLD_FILE>)
{
print NEW_FILE $_ unless $skip;
$skip = 0 if /$end/;
}
}
2006-09-24 12:11:39 +02:00
close OLD_FILE if defined($start);
2006-08-28 11:57:10 +02:00
close NEW_FILE;
return update_file($file);
}
2009-07-03 13:26:01 +02:00
# replace a variable in a makefile
sub replace_makefile_variable($$)
{
my ($file, $var) = @_;
my $make = $makefiles{$file};
2011-01-01 17:46:56 +01:00
my $replaced = 0;
2013-11-05 19:30:20 +01:00
my @values;
2009-07-03 13:26:01 +02:00
2013-11-05 19:30:20 +01:00
if (defined ${$make}{"=$var"})
{
@values = @{${$make}{"=$var"}};
${$make}{$var} = \@values;
}
else
{
return unless defined ${$make}{$var};
undef ${$make}{$var};
}
2009-07-03 13:26:01 +02:00
open NEW_FILE, ">$file.in.new" or die "cannot create $file.in.new";
open OLD_FILE, "$file.in" or die "cannot open $file.in";
while (<OLD_FILE>)
{
2011-01-01 17:46:56 +01:00
if (/^\s*($var\s*)=/)
2009-07-03 13:26:01 +02:00
{
# try to preserve formatting
my $prefix = $1;
my $multiline = /\\$/ || (@values > 1);
while (/\\$/)
{
$_ = <OLD_FILE>;
last unless $_;
}
2013-11-05 19:30:20 +01:00
if (!@values)
{
# nothing
}
elsif ($multiline)
2009-07-03 13:26:01 +02:00
{
print NEW_FILE "$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
}
else
{
print NEW_FILE "$prefix= @values\n";
}
2011-01-01 17:46:56 +01:00
$replaced = 1;
2009-07-03 13:26:01 +02:00
next;
}
2013-11-05 19:30:20 +01:00
if (/^\@MAKE/ && !$replaced && @values)
2011-01-01 17:46:56 +01:00
{
print NEW_FILE "$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
}
2009-07-03 13:26:01 +02:00
print NEW_FILE $_;
}
close OLD_FILE;
close NEW_FILE;
return update_file("$file.in");
}
2011-01-01 17:49:38 +01:00
# parse the specified makefile and load the variables
2006-09-22 09:27:29 +02:00
sub parse_makefile($)
{
my $file = shift;
2006-09-24 12:11:39 +02:00
my %make;
2006-09-22 09:27:29 +02:00
2006-12-27 21:23:36 +01:00
($make{"=dir"} = $file) =~ s/[^\/]+$//;
2006-09-22 09:27:29 +02:00
open MAKE, "$file.in" or die "cannot open $file.in\n";
while (<MAKE>)
{
chomp;
2009-07-03 13:26:01 +02:00
next if (/^\s*#/);
2006-09-22 09:27:29 +02:00
while (/\\$/) { chop; $_ .= <MAKE>; chomp; } # merge continued lines
2009-07-03 13:26:01 +02:00
next if (/^\s*$/);
2006-09-22 09:27:29 +02:00
if (/^\@(MAKE.*RULES)\@/)
{
my $var = $1;
2013-10-10 10:51:32 +02:00
$make{"=rules"} = $makerules{$var} || $var;
2006-09-24 12:11:39 +02:00
next;
}
2014-01-01 21:56:22 +01:00
if (/^\s*(MODULE|IMPORTLIB|TESTDLL|PARENTSRC|APPMODE)\s*=\s*(.*)/)
2006-09-24 12:11:39 +02:00
{
2011-06-12 11:41:43 +02:00
my $var = $1;
$make{$var} = $2;
2013-09-30 12:11:42 +02:00
${$make{"=flags"}}{"implib"} = 1 if $var eq "IMPORTLIB";
2006-09-24 12:11:39 +02:00
next;
}
2013-12-31 19:21:17 +01:00
if (/^\s*(BISON_SRCS|LEX_SRCS|IDL_SRCS|IMPLIB_SRCS|C_SRCS|OBJC_SRCS|MC_SRCS|RC_SRCS|SVG_SRCS|FONT_SRCS|IN_SRCS|PROGRAMS|EXTRA_TARGETS|MANPAGES)\s*=\s*(.*)/)
2006-12-24 17:31:52 +01:00
{
2011-06-12 11:41:43 +02:00
my $var = $1;
2006-12-24 17:31:52 +01:00
my @list = split(/\s+/, $2);
2011-06-12 11:41:43 +02:00
$make{$var} = \@list;
2013-11-11 11:23:38 +01:00
${$make{"=flags"}}{"clean"} = 1 if $var eq "PROGRAMS";
2013-12-31 19:21:17 +01:00
${$make{"=flags"}}{"clean"} = 1 if $var eq "EXTRA_TARGETS";
2006-12-24 17:31:52 +01:00
next;
}
2013-09-30 12:11:42 +02:00
if (/(install-lib|install-dev|clean)\s*:/)
2011-06-12 12:03:53 +02:00
{
2013-09-30 12:11:42 +02:00
${$make{"=flags"}}{$1} = 1;
2011-06-12 12:03:53 +02:00
next;
}
2010-10-23 10:44:05 +02:00
if (/^\s*(TOPSRCDIR|TOPOBJDIR|SRCDIR|VPATH)\s*=\s*(.*)/)
{
die "Variable $1 in $file.in is obsolete";
}
2006-09-22 09:27:29 +02:00
}
2011-06-12 11:41:43 +02:00
if ($file =~ /^programs\/([^\/]+)\/Makefile/)
{
2013-09-30 12:11:42 +02:00
${$make{"=flags"}}{"install"} = 1 unless $dont_install{$1};
${$make{"=flags"}}{"installbin"} = 1 if $bin_install{$1};
2011-06-12 11:41:43 +02:00
}
2014-01-01 21:56:22 +01:00
if (defined $make{"=flags"} && defined $make{"MODULE"})
2013-10-05 19:31:33 +02:00
{
die "Custom install-lib rule not allowed in $file" if defined ${$make{"=flags"}}{"install-lib"};
die "Custom install-dev rule not allowed in $file" if defined ${$make{"=flags"}}{"install-dev"};
}
2006-09-24 12:11:39 +02:00
return %make;
2006-09-22 09:27:29 +02:00
}
2006-08-28 11:57:10 +02:00
2013-11-05 19:30:20 +01: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";
while (<FILE>)
{
next unless /^#\s*pragma\s+makedep\s+(.*)/;
foreach my $flag (split /\s+/, $1)
{
last if $flag eq "depend";
$flags{$flag} = 1;
}
}
close FILE;
return %flags;
}
2013-11-12 11:03:09 +01: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 13:26:01 +02:00
# assign source files to their respective makefile
2011-01-01 17:49:38 +01:00
sub assign_sources_to_makefiles(@)
2009-07-03 13:26:01 +02:00
{
2011-01-01 17:49:38 +01:00
foreach my $file (@_)
2009-07-03 13:26:01 +02:00
{
next if defined $ignored_source_files{$file};
2013-12-12 20:04:53 +01:00
next if $file =~ /Makefile\.in$/;
2009-07-03 13:26:01 +02:00
my $dir = dirname( $file );
2011-01-01 17:49:38 +01:00
my $subdir = $dir;
2009-07-03 13:26:01 +02:00
while ($dir && !defined $makefiles{"$dir/Makefile"}) { $dir = dirname( $dir ); }
2011-01-01 17:49:38 +01:00
$subdir =~ s/^$dir\/?//;
2009-07-03 13:26:01 +02:00
next unless $dir;
die "no makefile found for $file\n" unless defined $makefiles{"$dir/Makefile"};
my $make = $makefiles{"$dir/Makefile"};
2011-01-01 17:49:38 +01:00
my $name = substr( $file, length($dir) + 1 );
2013-11-09 20:41:49 +01:00
${$make}{"=flags"}{"clean"} = 1 if $subdir;
2011-01-01 17:49:38 +01:00
if ($dir eq "include")
{
next if ($name =~ /\.in$/);
if ($name =~ /^wine\// && !$exported_wine_headers{$name})
{
if ($private_idl_headers{$name}) { push @{${$make}{"=PRIVATE_IDL_H_SRCS"}}, $name; }
next;
}
if ($name =~ /stdole2\.idl$/) { push @{${$make}{"=IDL_TLB_SRCS"}}, $name; }
elsif ($private_idl_headers{$name}) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
elsif ($name =~ /\.h$/) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
2011-05-05 15:02:25 +02:00
elsif ($name =~ /\.x$/) { push @{${$make}{"=XTEMPLATE_SRCS"}}, $name; }
2011-01-01 17:49:38 +01:00
elsif ($name =~ /\.rh$/) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
elsif ($name =~ /\.inl$/) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
elsif ($name =~ /\.idl$/) { push @{${$make}{"=PUBLIC_IDL_H_SRCS"}}, $name; }
else { die "unknown file $name in include dir"; }
}
else
{
2013-11-11 11:23:38 +01:00
if ($name =~ /\.m$/) { push @{${$make}{"=OBJC_SRCS"}}, $name; }
2011-01-01 17:49:38 +01:00
elsif ($name =~ /\.l$/) { push @{${$make}{"=LEX_SRCS"}}, $name; }
elsif ($name =~ /\.y$/) { push @{${$make}{"=BISON_SRCS"}}, $name; }
elsif ($name =~ /\.svg$/) { push @{${$make}{"=SVG_SRCS"}}, $name; }
2013-12-26 20:02:42 +01:00
elsif ($name =~ /\.sfd$/) { push @{${$make}{"=FONT_SRCS"}}, $name; }
2013-11-11 11:23:38 +01:00
elsif ($name =~ /\.c$/)
{
my %flags = get_makedep_flags( $file );
if (defined $flags{"implib"})
{
push @{${$make}{"=IMPLIB_SRCS"}}, $name;
${${$make}{"=flags"}}{"staticimplib"} = 1;
}
push @{${$make}{"=C_SRCS"}}, $name;
}
2013-11-05 19:30:20 +01:00
elsif ($name =~ /\.rc$/)
{
my %flags = get_makedep_flags( $file );
2013-12-13 21:34:05 +01:00
${${$make}{"=flags"}}{"po"} = 1 if defined $flags{"po"};
2013-11-05 19:30:20 +01:00
push @{${$make}{"=RC_SRCS"}}, $name;
}
2013-11-11 11:23:38 +01:00
elsif ($name =~ /\.mc$/)
{
push @{${$make}{"=MC_SRCS"}}, $name;
${${$make}{"=flags"}}{"mc"} = 1;
}
2013-11-05 19:30:20 +01:00
elsif ($name =~ /\.idl$/)
{
2013-12-31 18:15:17 +01:00
push @{${$make}{"=IDL_SRCS"}}, $name;
2013-11-11 11:23:38 +01:00
${${$make}{"=flags"}}{"clean"} = 1;
2013-11-05 19:30:20 +01:00
}
2013-11-18 11:34:03 +01:00
elsif ($name =~ /\.man\.in$/)
{
push @{${$make}{"=MANPAGES"}}, $name;
${${$make}{"=flags"}}{"manpage"} = 1;
}
2013-12-12 20:04:53 +01:00
elsif ($name =~ /\.in$/)
{
push @{${$make}{"=IN_SRCS"}}, $name;
}
2011-01-01 17:49:38 +01:00
}
}
# add extra variables to include source list
my $make = $makefiles{"include/Makefile"};
2011-05-05 15:02:25 +02:00
unshift @{${$make}{"=SRCDIR_INCLUDES"}}, "\$(XTEMPLATE_SRCS)";
2011-01-01 17:49:38 +01:00
unshift @{${$make}{"=SRCDIR_INCLUDES"}}, "\$(PUBLIC_IDL_H_SRCS)";
unshift @{${$make}{"=SRCDIR_INCLUDES"}}, "\$(IDL_TLB_SRCS)";
2013-12-31 18:15:17 +01:00
unshift @{${$make}{"=IDL_SRCS"}}, "\$(IDL_H_SRCS) \$(IDL_TLB_SRCS)";
2013-11-12 11:03:09 +01:00
# preserve shared source files from the parent makefile
foreach my $file (@makefiles)
{
my %make = %{$makefiles{$file}};
my $parent = get_parent_makefile( $file );
next unless $parent;
preserve_shared_source_files( $makefiles{$file}, $makefiles{$parent}, "C_SRCS" );
preserve_shared_source_files( $makefiles{$file}, $makefiles{$parent}, "LEX_SRCS" );
preserve_shared_source_files( $makefiles{$file}, $makefiles{$parent}, "BISON_SRCS" );
}
2009-07-03 13:26:01 +02:00
}
2006-08-28 11:57:10 +02:00
2006-09-14 09:41:21 +02:00
################################################################
2008-08-20 16:02:37 +02:00
# update the makefile list in configure.ac
2006-09-14 09:41:21 +02:00
2006-12-29 12:49:26 +01:00
sub update_makefiles(@)
2006-09-14 09:41:21 +02:00
{
2008-08-20 16:02:37 +02:00
my (@lines);
2007-08-03 14:12:04 +02:00
foreach my $var (sort { $makerules{$a} cmp $makerules{$b}; } keys %makerules)
{
2008-08-20 16:02:37 +02:00
my $file = $makerules{$var};
2006-12-29 12:49:26 +01:00
my %make = %{$makefiles{$file}};
2008-08-20 16:02:37 +02:00
my $rules = $make{"=rules"} ? ",[$make{\"=rules\"}]" : "";
push @lines, "WINE_CONFIG_MAKERULES([$file],[$var]$rules)\n";
2006-12-29 12:49:26 +01:00
}
2008-08-20 16:02:37 +02:00
push @lines, "\n";
2006-12-29 12:49:26 +01:00
foreach my $file (sort @_)
{
2008-08-20 16:02:37 +02:00
my %make = %{$makefiles{$file}};
2008-08-25 12:02:27 +02:00
my $args = "";
2010-01-23 14:24:06 +01:00
my $is_win16 = $make{"MODULE"} && ($make{"MODULE"} =~ /16$/ || $modules16{$make{"MODULE"}});
2013-09-30 12:11:42 +02:00
my $flag_args = defined $make{"=flags"} ? ",[" . join(",",sort keys %{$make{"=flags"}}) ."]" : "";
2014-01-01 21:56:22 +01:00
if (defined($make{"TESTDLL"})) # test
2009-03-13 12:18:04 +01:00
{
2014-01-01 21:56:22 +01: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"};
(my $dir = $file) =~ s/^(.*)\/Makefile/$1/;
push @lines, "WINE_CONFIG_TEST($dir$flag_args)\n";
}
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"};
2010-01-23 14:15:43 +01:00
(my $name = $file) =~ s/^dlls\/(.*)\/Makefile/$1/;
2014-01-01 21:56:22 +01:00
push @lines, "WINE_CONFIG_LIB($name$flag_args)\n";
}
elsif (defined($make{"MODULE"}) && defined($make{"APPMODE"})) # program
{
die "APPMODE should not be defined in $file" unless $file =~ /^programs\//;
die "STATICLIB should not be defined in $file" if defined $make{"STATICLIB"};
(my $name = $file) =~ s/^programs\/(.*)\/Makefile/$1/;
2010-10-23 10:44:05 +02:00
if ($name =~ /\./)
{
die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
}
else
{
2014-01-01 21:56:22 +01:00
die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.exe";
2010-10-23 10:44:05 +02:00
}
2011-06-12 11:41:43 +02:00
$args .= "," if $is_win16 || defined $make{"=flags"};
2010-01-26 21:10:14 +01:00
$args .= "enable_win16" if $is_win16;
2014-01-01 21:56:22 +01:00
push @lines, "WINE_CONFIG_PROGRAM($name$args$flag_args)\n";
2009-03-13 12:18:04 +01:00
}
2014-01-01 21:56:22 +01:00
elsif (defined($make{"MODULE"})) # dll
2008-08-25 12:14:54 +02:00
{
2014-01-01 21:56:22 +01:00
die "APPMODE should be defined in $file" if $file =~ /^programs\//;
die "MODULE should not be defined in $file" unless $file =~ /^dlls\//;
die "STATICLIB should not be defined in $file" if defined $make{"STATICLIB"};
(my $name = $file) =~ s/^dlls\/(.*)\/Makefile/$1/;
2010-10-23 10:44:05 +02:00
if ($name =~ /\./)
{
die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
}
else
{
2014-01-01 21:56:22 +01:00
die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.dll";
2010-10-23 10:44:05 +02:00
}
2014-01-01 21:56:22 +01:00
my $implib = $make{"IMPORTLIB"} || "";
2011-06-12 11:41:43 +02:00
$args .= "," if $is_win16 || defined $make{"=flags"};
2010-12-28 15:42:43 +01:00
$args .= "enable_win16" if $is_win16;
2014-01-01 21:56:22 +01:00
$args .= $flag_args;
$args .= ",[$implib]" if $implib && $implib ne $name;
push @lines, "WINE_CONFIG_DLL($name$args)\n";
2010-01-23 14:15:43 +01:00
}
2010-02-08 20:47:07 +01:00
elsif ($file =~ /^tools.*\/Makefile$/)
{
2014-01-01 21:56:22 +01:00
die "APPMODE should not be defined in $file" if defined $make{"APPMODE"};
die "STATICLIB should not be defined in $file" if defined $make{"STATICLIB"};
2010-03-20 15:02:56 +01:00
(my $name = $file) =~ s/^(.*)\/Makefile/$1/;
2011-06-12 11:41:43 +02:00
push @lines, "WINE_CONFIG_TOOL($name$flag_args)\n";
2010-02-08 20:47:07 +01:00
}
2010-03-20 15:24:22 +01:00
elsif ($file =~ /\/Makefile$/)
2010-01-23 14:15:43 +01:00
{
2010-03-20 15:24:22 +01:00
(my $name = $file) =~ s/^(.*)\/Makefile/$1/;
2011-06-12 11:41:43 +02:00
$args = "[$name]";
$args .= "," if defined $make{"=flags"};
push @lines, "WINE_CONFIG_MAKEFILE($args$flag_args)\n";
2008-08-25 12:14:54 +02:00
}
2006-12-29 12:49:26 +01:00
}
2011-01-04 16:55:54 +01:00
push @lines, "\nAC_SUBST([LINGUAS],[\"\\\n", join( " \\\n", sort @linguas ), "\"])\n\n";
2009-07-03 13:26:01 +02:00
# update the source variables in all the makefiles
foreach my $file (sort @_)
{
replace_makefile_variable( $file, "LEX_SRCS" );
replace_makefile_variable( $file, "BISON_SRCS" );
replace_makefile_variable( $file, "MC_SRCS" );
replace_makefile_variable( $file, "SVG_SRCS" );
2013-12-26 20:02:42 +01:00
replace_makefile_variable( $file, "FONT_SRCS" );
2009-12-29 12:45:37 +01:00
replace_makefile_variable( $file, "C_SRCS" );
2013-01-09 13:07:19 +01:00
replace_makefile_variable( $file, "OBJC_SRCS" );
2009-12-29 12:45:37 +01:00
replace_makefile_variable( $file, "RC_SRCS" );
2013-12-31 18:15:17 +01:00
replace_makefile_variable( $file, "IDL_SRCS" );
2011-05-05 15:02:25 +02:00
replace_makefile_variable( $file, "XTEMPLATE_SRCS" );
2013-12-12 20:04:53 +01:00
replace_makefile_variable( $file, "IN_SRCS" );
2013-11-11 11:23:38 +01:00
replace_makefile_variable( $file, "IMPLIB_SRCS" );
2013-11-18 11:34:03 +01:00
replace_makefile_variable( $file, "MANPAGES" );
2013-12-31 18:15:17 +01:00
next unless $file eq "include/Makefile";
replace_makefile_variable( $file, "PRIVATE_IDL_H_SRCS" );
replace_makefile_variable( $file, "PUBLIC_IDL_H_SRCS" );
replace_makefile_variable( $file, "IDL_TLB_SRCS" );
replace_makefile_variable( $file, "SRCDIR_INCLUDES" );
2009-07-03 13:26:01 +02:00
}
2010-02-08 21:27:54 +01:00
push @lines, "dnl End of auto-generated output commands\n";
replace_in_file( "configure.ac", '^WINE_CONFIG_MAKERULES', '^dnl End of auto-generated output commands\n$', @lines);
2006-09-14 09:41:21 +02:00
}
2006-12-29 12:49:26 +01:00
2011-01-04 16:55:54 +01:00
################################################################
# update the LINGUAS file
sub update_linguas(@)
{
replace_in_file( "po/LINGUAS", undef, undef, join("\n", sort @_), "\n" );
}
2009-07-03 13:26:01 +02:00
die "needs to be run from a git checkout" unless -d ".git";
2011-01-01 17:49:38 +01:00
my @all_files = split /\0/, `git ls-files -c -z`;
2011-01-04 16:55:54 +01:00
@linguas = map { (my $ret = $_) =~ s/^po\/(.*)\.po/$1/; $ret; } grep /^po\/.*\.po$/, @all_files;
@makefiles = map { (my $ret = $_) =~ s/\.in$//; $ret; } grep /Makefile.in$/, @all_files;
2007-08-03 14:12:04 +02:00
foreach my $file (sort values %makerules, @makefiles)
{
my %make = parse_makefile( $file );
$makefiles{$file} = \%make;
}
2011-01-01 17:49:38 +01:00
assign_sources_to_makefiles( @all_files );
2011-01-04 16:55:54 +01:00
update_linguas( @linguas );
2006-12-29 12:49:26 +01:00
update_makefiles( @makefiles );