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",
|
|
|
|
"MAKE_DLL_RULES" => "dlls/Makedll.rules",
|
|
|
|
"MAKE_IMPLIB_RULES" => "dlls/Makeimplib.rules",
|
|
|
|
"MAKE_TEST_RULES" => "dlls/Maketest.rules",
|
|
|
|
"MAKE_PROG_RULES" => "programs/Makeprog.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 =
|
|
|
|
(
|
|
|
|
"cmdlgtst" => 1,
|
|
|
|
"view" => 1,
|
|
|
|
"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,
|
|
|
|
);
|
|
|
|
|
2006-12-28 11:38:04 +01:00
|
|
|
# Default patterns for top-level .gitignore
|
|
|
|
my @ignores = (
|
|
|
|
"*.[oa]",
|
2009-08-18 11:29:35 +02:00
|
|
|
"*.fake",
|
2008-07-09 11:53:03 +02:00
|
|
|
"*.ok",
|
2008-03-13 11:47:23 +01:00
|
|
|
"*.res",
|
2006-12-28 11:38:04 +01:00
|
|
|
"*.so",
|
|
|
|
"/autom4te.cache",
|
|
|
|
"/config.cache",
|
|
|
|
"/config.log",
|
|
|
|
"/config.status",
|
2009-08-10 14:27:28 +02:00
|
|
|
"/configure.lineno",
|
2006-12-28 11:38:04 +01:00
|
|
|
"/TAGS",
|
|
|
|
"/tags",
|
2007-01-24 16:24:19 +01:00
|
|
|
"Makefile",
|
2007-12-10 14:26:13 +01:00
|
|
|
"dlldata.c",
|
2008-07-09 11:53:03 +02:00
|
|
|
"dlls/*/*.def",
|
|
|
|
"dlls/*/tests/*crosstest.exe",
|
|
|
|
"dlls/*/tests/testlist.c",
|
2007-01-24 16:24:19 +01:00
|
|
|
"include/config.h",
|
2008-08-28 12:17:42 +02:00
|
|
|
"include/stamp-h",
|
|
|
|
"programs/winetest/*_test.exe",
|
2009-07-04 11:20:09 +02:00
|
|
|
"programs/winetest/*_test.rc",
|
2009-07-09 12:54:39 +02:00
|
|
|
"programs/winetest/build.rc",
|
2006-12-28 11:38:04 +01:00
|
|
|
);
|
|
|
|
|
2006-12-29 12:49:26 +01:00
|
|
|
# Source files and their resulting target to ignore
|
|
|
|
my @ignore_srcs = (
|
|
|
|
[ 'BISON_SRCS', '\.y', '.tab.c' ],
|
|
|
|
[ 'BISON_SRCS', '\.y', '.tab.h' ],
|
|
|
|
[ 'LEX_SRCS', '\.l', '.yy.c' ],
|
|
|
|
[ 'MC_SRCS', '\.mc', '.mc.rc' ],
|
|
|
|
[ 'IDL_TLB_SRCS', '\.idl', '.tlb' ],
|
2007-01-23 12:17:42 +01:00
|
|
|
[ 'IDL_H_SRCS', '\.idl', '.h' ],
|
2007-02-09 14:32:36 +01:00
|
|
|
[ 'IDL_C_SRCS', '\.idl', '.h' ],
|
|
|
|
[ 'IDL_I_SRCS', '\.idl', '.h' ],
|
|
|
|
[ 'IDL_P_SRCS', '\.idl', '.h' ],
|
|
|
|
[ 'IDL_S_SRCS', '\.idl', '.h' ],
|
2006-12-29 12:49:26 +01:00
|
|
|
[ 'IDL_C_SRCS', '\.idl', '_c.c' ],
|
|
|
|
[ 'IDL_I_SRCS', '\.idl', '_i.c' ],
|
|
|
|
[ 'IDL_P_SRCS', '\.idl', '_p.c' ],
|
|
|
|
[ 'IDL_S_SRCS', '\.idl', '_s.c' ],
|
|
|
|
);
|
|
|
|
|
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,
|
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,
|
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,
|
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,
|
2009-07-22 17:33:17 +02:00
|
|
|
"sesprp.idl" => 1,
|
2008-07-10 19:38:47 +02:00
|
|
|
"vmrender.idl" => 1,
|
2008-11-25 11:57:39 +01:00
|
|
|
"wine/wined3d.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,
|
|
|
|
);
|
|
|
|
|
|
|
|
my (@all_files, @makefiles, %makefiles);
|
|
|
|
|
|
|
|
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};
|
|
|
|
|
|
|
|
return unless defined ${$make}{"=$var"};
|
|
|
|
|
|
|
|
my @values = @{${$make}{"=$var"}};
|
|
|
|
${$make}{$var} = \@values;
|
|
|
|
|
|
|
|
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>)
|
|
|
|
{
|
|
|
|
if (/^\s*($var\s+)=/)
|
|
|
|
{
|
|
|
|
# try to preserve formatting
|
|
|
|
my $prefix = $1;
|
|
|
|
my $multiline = /\\$/ || (@values > 1);
|
|
|
|
while (/\\$/)
|
|
|
|
{
|
|
|
|
$_ = <OLD_FILE>;
|
|
|
|
last unless $_;
|
|
|
|
}
|
|
|
|
if ($multiline)
|
|
|
|
{
|
|
|
|
print NEW_FILE "$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
print NEW_FILE "$prefix= @values\n";
|
|
|
|
}
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
print NEW_FILE $_;
|
|
|
|
}
|
|
|
|
close OLD_FILE;
|
|
|
|
close NEW_FILE;
|
|
|
|
return update_file("$file.in");
|
|
|
|
}
|
|
|
|
|
2006-09-22 09:27:29 +02:00
|
|
|
# parse the specified makefile to identify the rules file
|
|
|
|
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;
|
2006-09-24 12:11:39 +02:00
|
|
|
$make{"=rules"} = $makerules{$var};
|
|
|
|
next;
|
|
|
|
}
|
2009-07-03 13:26:01 +02:00
|
|
|
if (/^\s*(MODULE|IMPORTLIB|TESTDLL)\s*=\s*(.*)/)
|
2006-09-24 12:11:39 +02:00
|
|
|
{
|
2006-12-24 14:05:12 +01:00
|
|
|
$make{$1} = $2;
|
2006-09-24 12:11:39 +02:00
|
|
|
next;
|
|
|
|
}
|
2009-12-29 12:45:37 +01:00
|
|
|
if (/^\s*(BISON_SRCS|LEX_SRCS|IDL_[CHIPS]_SRCS|IDL_TLB_SRCS|IMPLIB_SRCS|C_SRCS|MC_SRCS|RC_SRCS|SVG_SRCS|MANPAGES|PROGRAMS)\s*=\s*(.*)/)
|
2006-12-24 17:31:52 +01:00
|
|
|
{
|
|
|
|
my @list = split(/\s+/, $2);
|
|
|
|
$make{$1} = \@list;
|
|
|
|
next;
|
|
|
|
}
|
2006-09-22 09:27:29 +02:00
|
|
|
}
|
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
|
|
|
|
2009-07-03 13:26:01 +02:00
|
|
|
# assign source files to their respective makefile
|
|
|
|
sub assign_sources_to_makefiles()
|
|
|
|
{
|
|
|
|
foreach my $file (@all_files)
|
|
|
|
{
|
|
|
|
next if defined $ignored_source_files{$file};
|
|
|
|
my $dir = dirname( $file );
|
|
|
|
|
|
|
|
while ($dir && !defined $makefiles{"$dir/Makefile"}) { $dir = dirname( $dir ); }
|
|
|
|
next unless $dir;
|
|
|
|
|
|
|
|
die "no makefile found for $file\n" unless defined $makefiles{"$dir/Makefile"};
|
|
|
|
|
|
|
|
my $make = $makefiles{"$dir/Makefile"};
|
|
|
|
my $basename = substr( $file, length($dir) + 1 );
|
|
|
|
|
|
|
|
if ($basename =~ /\.c$/) { push @{${$make}{"=C_SRCS"}}, $basename; }
|
|
|
|
elsif ($basename =~ /\.l$/) { push @{${$make}{"=LEX_SRCS"}}, $basename; }
|
|
|
|
elsif ($basename =~ /\.y$/) { push @{${$make}{"=BISON_SRCS"}}, $basename; }
|
|
|
|
elsif ($basename =~ /\.rc$/) { push @{${$make}{"=RC_SRCS"}}, $basename; }
|
2009-08-06 14:42:28 +02:00
|
|
|
elsif ($basename =~ /\.mc$/) { push @{${$make}{"=MC_SRCS"}}, $basename; }
|
2009-07-03 13:26:01 +02:00
|
|
|
elsif ($basename =~ /\.svg$/) { push @{${$make}{"=SVG_SRCS"}}, $basename; }
|
|
|
|
}
|
|
|
|
}
|
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}};
|
|
|
|
my $rules = $make{"=rules"};
|
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"}});
|
2009-03-13 12:18:04 +01:00
|
|
|
if ($rules eq $makerules{"MAKE_DLL_RULES"})
|
|
|
|
{
|
2010-01-23 14:15:43 +01:00
|
|
|
(my $name = $file) =~ s/^dlls\/(.*)\/Makefile/$1/;
|
2010-01-26 21:10:14 +01:00
|
|
|
my $implib = $make{"IMPORTLIB"} || "";
|
|
|
|
my $implib_srcs = defined($make{"IMPLIB_SRCS"}) && join( " ", @{$make{"IMPLIB_SRCS"}} );
|
|
|
|
$args .= "," if $implib || $is_win16;
|
|
|
|
$args .= "enable_win16" if $is_win16;
|
|
|
|
$args .= ",[$implib]" if $implib;
|
|
|
|
$args .= ",[$implib_srcs]" if $implib_srcs;
|
2010-01-23 14:15:43 +01:00
|
|
|
push @lines, "WINE_CONFIG_DLL($name$args)\n";
|
2009-03-13 12:18:04 +01:00
|
|
|
}
|
2008-08-25 12:14:54 +02:00
|
|
|
elsif ($rules eq $makerules{"MAKE_PROG_RULES"})
|
|
|
|
{
|
|
|
|
(my $name = $file) =~ s/^programs\/(.*)\/Makefile/$1/;
|
2010-01-23 14:15:43 +01:00
|
|
|
$args = ",[ALL_PROGRAM_DIRS";
|
2008-08-25 12:14:54 +02:00
|
|
|
$args .= ",ALL_PROGRAM_INSTALL_DIRS" unless $dont_install{$name};
|
|
|
|
$args .= ",ALL_PROGRAM_BIN_INSTALL_DIRS" if $bin_install{$name};
|
|
|
|
$args .= "]";
|
2010-01-23 14:24:06 +01:00
|
|
|
$args .= ",enable_win16" if $is_win16;
|
2010-01-23 14:15:43 +01:00
|
|
|
push @lines, "WINE_CONFIG_PROGRAM($name$args)\n";
|
|
|
|
}
|
|
|
|
elsif ($rules eq $makerules{"MAKE_TEST_RULES"})
|
|
|
|
{
|
|
|
|
(my $dir = $file) =~ s/^(.*)\/Makefile/$1/;
|
|
|
|
push @lines, "WINE_CONFIG_TEST($dir)\n";
|
|
|
|
}
|
|
|
|
elsif ($rules eq $makerules{"MAKE_IMPLIB_RULES"})
|
|
|
|
{
|
|
|
|
(my $name = $file) =~ s/^dlls\/(.*)\/Makefile/$1/;
|
|
|
|
push @lines, "WINE_CONFIG_LIB($name)\n";
|
|
|
|
}
|
|
|
|
elsif ($file =~ /^[^\/]*\/Makefile$/)
|
|
|
|
{
|
|
|
|
push @lines, "WINE_CONFIG_MAKEFILE([$file],[$rules],[],[ALL_TOP_DIRS])\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
push @lines, "WINE_CONFIG_MAKEFILE([$file],[$rules])\n";
|
2008-08-25 12:14:54 +02:00
|
|
|
}
|
2006-12-29 12:49:26 +01:00
|
|
|
}
|
|
|
|
|
2009-07-03 13:26:01 +02:00
|
|
|
# update the source variables in all the makefiles
|
|
|
|
|
|
|
|
foreach my $file (sort @_)
|
|
|
|
{
|
|
|
|
my %make = %{$makefiles{$file}};
|
|
|
|
|
|
|
|
replace_makefile_variable( $file, "LEX_SRCS" );
|
|
|
|
replace_makefile_variable( $file, "BISON_SRCS" );
|
|
|
|
replace_makefile_variable( $file, "MC_SRCS" );
|
|
|
|
replace_makefile_variable( $file, "SVG_SRCS" );
|
2009-12-29 12:45:37 +01:00
|
|
|
replace_makefile_variable( $file, "C_SRCS" );
|
|
|
|
replace_makefile_variable( $file, "RC_SRCS" );
|
2009-07-03 13:26:01 +02:00
|
|
|
}
|
|
|
|
|
2008-08-28 12:09:46 +02:00
|
|
|
push @lines, "\ndnl Build dependencies for test files compiled into winetest\n";
|
|
|
|
replace_in_file( "configure.ac", '^WINE_CONFIG_MAKERULES', '^dnl Build dependencies for test files compiled into winetest$', @lines);
|
2006-09-14 09:41:21 +02:00
|
|
|
}
|
|
|
|
|
2006-12-29 12:49:26 +01:00
|
|
|
|
|
|
|
################################################################
|
|
|
|
# process ignore targets for generic source files
|
|
|
|
|
|
|
|
sub update_ignores(@)
|
2006-09-14 09:41:21 +02:00
|
|
|
{
|
2006-12-29 12:49:26 +01:00
|
|
|
my @ignores;
|
2006-09-14 09:41:21 +02:00
|
|
|
|
2006-12-29 12:49:26 +01:00
|
|
|
foreach my $file (sort @_)
|
|
|
|
{
|
|
|
|
my %makefile = %{$makefiles{$file}};
|
|
|
|
my @list;
|
2006-09-14 09:41:21 +02:00
|
|
|
|
2006-12-29 12:49:26 +01:00
|
|
|
foreach my $src (@ignore_srcs)
|
|
|
|
{
|
|
|
|
my @pattern = @{$src};
|
|
|
|
next unless defined $makefile{$pattern[0]};
|
|
|
|
push @list, map { (my $ret = $_) =~ s/$pattern[1]$/$pattern[2]/; $ret; } @{$makefile{$pattern[0]}};
|
|
|
|
}
|
2007-01-23 12:17:42 +01:00
|
|
|
foreach my $f (@list)
|
|
|
|
{
|
|
|
|
push @ignores, $makefile{"=dir"} . $f unless $f =~ /\$\(.*\)/; # skip make variables
|
|
|
|
}
|
2006-12-24 14:05:12 +01:00
|
|
|
|
|
|
|
if (defined $makefile{"IMPORTLIB"})
|
|
|
|
{
|
2008-03-04 16:52:54 +01:00
|
|
|
if ($makefile{"IMPORTLIB"} =~ /^([a-zA-Z0-9_.]+)/)
|
2006-12-24 14:05:12 +01:00
|
|
|
{
|
2010-01-26 21:10:14 +01:00
|
|
|
if ("dlls/$1/" ne $makefile{"=dir"}) { push @ignores, "dlls/lib$1.def"; }
|
2006-12-24 14:05:12 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-01-26 21:10:14 +01:00
|
|
|
die "invalid importlib name $makefile{IMPORTLIB} in $file";
|
2006-12-24 14:05:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-12-28 11:38:04 +01:00
|
|
|
return @ignores;
|
2006-12-24 14:05:12 +01:00
|
|
|
}
|
|
|
|
|
2006-08-28 11:57:10 +02:00
|
|
|
|
2007-08-03 14:12:04 +02:00
|
|
|
################################################################
|
|
|
|
# update include/Makefile.in
|
|
|
|
|
|
|
|
sub update_includes()
|
|
|
|
{
|
2008-11-25 11:57:39 +01:00
|
|
|
my (@h_srcs, @private_idl_srcs, @public_idl_srcs, @tlb_srcs, %subdirs);
|
2009-07-03 13:26:01 +02:00
|
|
|
my @includes = map { (my $ret = $_) =~ s/^include\///; $ret; } grep /^include\//, @all_files;
|
2007-08-03 14:12:04 +02:00
|
|
|
foreach my $incl (@includes)
|
|
|
|
{
|
|
|
|
if ($incl =~ /(.*)\//) { $subdirs{$1} = 1; }
|
2008-10-17 12:35:33 +02:00
|
|
|
next if ($incl =~ /\.in$/);
|
2008-11-25 11:57:39 +01:00
|
|
|
if ($incl =~ /^wine\// && !$exported_wine_headers{$incl})
|
|
|
|
{
|
|
|
|
if ($private_idl_headers{$incl}) { push @private_idl_srcs, $incl; }
|
|
|
|
next;
|
|
|
|
}
|
2007-08-03 14:12:04 +02:00
|
|
|
if ($incl =~ /stdole2\.idl$/) { push @tlb_srcs, $incl; }
|
|
|
|
elsif ($private_idl_headers{$incl}) { push @h_srcs, $incl; }
|
|
|
|
elsif ($incl =~ /\.h$/) { push @h_srcs, $incl; }
|
2008-10-17 12:35:33 +02:00
|
|
|
elsif ($incl =~ /\.rh$/) { push @h_srcs, $incl; }
|
2007-08-03 14:12:04 +02:00
|
|
|
elsif ($incl =~ /\.inl$/) { push @h_srcs, $incl; }
|
2008-11-25 11:57:39 +01:00
|
|
|
elsif ($incl =~ /\.idl$/) { push @public_idl_srcs, $incl; }
|
2008-10-17 12:35:33 +02:00
|
|
|
else { die "unknown file $incl in include dir"; }
|
2007-08-03 14:12:04 +02:00
|
|
|
}
|
2008-11-25 11:57:39 +01:00
|
|
|
replace_in_file( "include/Makefile.in", '^PRIVATE_IDL_H_SRCS\s*=', '^INSTALLDIRS',
|
|
|
|
"PRIVATE_IDL_H_SRCS = \\\n\t",
|
|
|
|
join( " \\\n\t", sort @private_idl_srcs ),
|
|
|
|
"\n\nPUBLIC_IDL_H_SRCS = \\\n\t",
|
|
|
|
join( " \\\n\t", sort @public_idl_srcs ),
|
2007-08-03 14:12:04 +02:00
|
|
|
"\n\nIDL_TLB_SRCS = \\\n\t",
|
|
|
|
join( " \\\n\t", sort @tlb_srcs ),
|
2008-11-25 11:57:39 +01:00
|
|
|
"\n\nSRCDIR_INCLUDES = \\\n\t\$(IDL_TLB_SRCS) \\\n\t\$(PUBLIC_IDL_H_SRCS) \\\n\t",
|
2007-08-03 14:12:04 +02:00
|
|
|
join( " \\\n\t", sort @h_srcs ),
|
|
|
|
"\n\nEXTRASUBDIRS = ",
|
|
|
|
join( " ", sort keys %subdirs ),
|
|
|
|
"\n\nINSTALLDIRS = \\\n" );
|
2008-11-25 11:57:39 +01:00
|
|
|
return map { s/(.*)\.idl$/include\/$1.h/; $_; } @public_idl_srcs, @private_idl_srcs;
|
2007-08-03 14:12:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-27 21:23:36 +01:00
|
|
|
################################################################
|
|
|
|
# update the main .gitignore
|
|
|
|
|
2006-12-28 11:38:04 +01:00
|
|
|
sub update_gitignore(@)
|
2006-12-27 21:23:36 +01:00
|
|
|
{
|
2006-12-28 11:38:04 +01:00
|
|
|
my @ignores = values %makerules;
|
2006-12-27 21:23:36 +01:00
|
|
|
|
|
|
|
foreach my $make (@makefiles)
|
|
|
|
{
|
|
|
|
my %makefile = %{$makefiles{$make}};
|
|
|
|
my $dir = $makefile{"=dir"};
|
|
|
|
if (defined $makefile{"MANPAGES"})
|
|
|
|
{
|
|
|
|
push @ignores, map { $dir . $_; } @{$makefile{"MANPAGES"}};
|
|
|
|
}
|
|
|
|
if (defined $makefile{"PROGRAMS"})
|
|
|
|
{
|
|
|
|
push @ignores, map { s/\$\(EXEEXT\)//; $dir . $_; } @{$makefile{"PROGRAMS"}};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# prepend a slash to paths that don't have one
|
|
|
|
@ignores = map { $_ =~ s/^([^\/]+)$/\/$1/; $_; } @ignores;
|
|
|
|
|
2007-04-26 16:42:15 +02:00
|
|
|
# get rid of duplicates
|
|
|
|
my %ignores = ();
|
|
|
|
foreach my $i (@ignores, @_) { $ignores{$i} = 1; }
|
2006-12-28 11:38:04 +01:00
|
|
|
|
|
|
|
replace_in_file( ".gitignore", undef, undef,
|
|
|
|
"# Automatically generated by make_makefiles; DO NOT EDIT!!\n",
|
2007-04-26 16:42:15 +02:00
|
|
|
join("\n", sort keys %ignores), "\n" );
|
2006-12-27 21:23:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-03 13:26:01 +02:00
|
|
|
die "needs to be run from a git checkout" unless -d ".git";
|
|
|
|
|
|
|
|
@all_files = split /\0/, `git ls-files -c -z`;
|
|
|
|
@makefiles = map { my $ret = $_; $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;
|
|
|
|
}
|
|
|
|
|
2009-07-03 13:26:01 +02:00
|
|
|
assign_sources_to_makefiles();
|
2006-12-29 12:49:26 +01:00
|
|
|
update_makefiles( @makefiles );
|
2008-11-25 11:57:39 +01:00
|
|
|
push @ignores, update_includes();
|
2006-12-29 12:49:26 +01:00
|
|
|
push @ignores, update_ignores( @makefiles );
|
2006-12-28 11:38:04 +01:00
|
|
|
update_gitignore( @ignores );
|