3 # Build the auto-generated parts of the Wine makefiles.
5 # Copyright 2006 Alexandre Julliard
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # Lesser General Public License for more details.
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 "MAKE_RULES" => "Make.rules",
28 "MAKE_DLL_RULES" => "dlls/Makedll.rules",
29 "MAKE_IMPLIB_RULES" => "dlls/Makeimplib.rules",
30 "MAKE_TEST_RULES" => "Maketest.rules",
31 "MAKE_PROG_RULES" => "programs/Makeprog.rules",
34 # Programs that we want to install in the bin directory too
50 # Programs that we don't want to install at all
57 # Dlls and programs that are 16-bit specific
74 # Default patterns for top-level .gitignore
95 "dlls/shell32/AUTHORS",
96 "*/*/tests/testlist.c",
101 "programs/winetest/build.nfo",
102 "programs/winetest/build.rc",
107 # Source files and their resulting target to ignore
109 [ 'BISON_SRCS', '\.y', '.tab.c' ],
110 [ 'BISON_SRCS', '\.y', '.tab.h' ],
111 [ 'LEX_SRCS', '\.l', '.yy.c' ],
112 [ 'IDL_TLB_SRCS', '\.idl', '.tlb' ],
113 [ 'IDL_H_SRCS', '\.idl', '.h' ],
114 [ 'IDL_C_SRCS', '\.idl', '.h' ],
115 [ 'IDL_I_SRCS', '\.idl', '.h' ],
116 [ 'IDL_P_SRCS', '\.idl', '.h' ],
117 [ 'IDL_S_SRCS', '\.idl', '.h' ],
118 [ 'IDL_C_SRCS', '\.idl', '_c.c' ],
119 [ 'IDL_I_SRCS', '\.idl', '_i.c' ],
120 [ 'IDL_P_SRCS', '\.idl', '_p.c' ],
121 [ 'IDL_S_SRCS', '\.idl', '_s.c' ],
122 [ 'PUBLIC_IDL_H_SRCS', '\.idl', '.h' ],
123 [ 'PRIVATE_IDL_H_SRCS', '\.idl', '.h' ],
124 [ 'XTEMPLATE_SRCS', '\.x', '.h' ],
127 my %exported_wine_headers = (
129 "wine/exception.h" => 1,
130 "wine/library.h" => 1,
131 "wine/unicode.h" => 1,
132 "wine/itss.idl" => 1,
133 "wine/svcctl.idl" => 1,
136 my %private_idl_headers = (
164 "wine/winedxgi.idl" => 1,
167 my %ignored_source_files = (
168 "dlls/wineps.drv/afm2c.c" => 1,
169 "dlls/wineps.drv/mkagl.c" => 1,
170 "programs/winetest/dist.rc" => 1,
173 my (@linguas, @makefiles, %makefiles);
178 return "" unless $ret =~ /\//;
183 # update a file if changed
187 my $ret = !(-f
$file) || system "cmp $file $file.new >/dev/null";
194 rename "$file.new", "$file";
195 print "$file updated\n";
196 if ($file eq "configure.ac")
199 print "configure updated\n";
205 # replace some lines in a file between two markers
206 sub replace_in_file
($$$@
)
212 open NEW_FILE
, ">$file.new" or die "cannot create $file.new";
216 open OLD_FILE
, "$file" or die "cannot open $file";
231 print NEW_FILE
$_ unless $skip;
236 close OLD_FILE
if defined($start);
238 return update_file
($file);
241 # replace a variable in a makefile
242 sub replace_makefile_variable
($$)
244 my ($file, $var) = @_;
245 my $make = $makefiles{$file};
248 return unless defined ${$make}{"=$var"};
250 my @values = @
{${$make}{"=$var"}};
251 ${$make}{$var} = \
@values;
253 open NEW_FILE
, ">$file.in.new" or die "cannot create $file.in.new";
255 open OLD_FILE
, "$file.in" or die "cannot open $file.in";
258 if (/^\s*($var\s*)=/)
260 # try to preserve formatting
262 my $multiline = /\\$/ || (@values > 1);
270 print NEW_FILE
"$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
274 print NEW_FILE
"$prefix= @values\n";
279 if (/^\@MAKE/ && !$replaced)
281 print NEW_FILE
"$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
287 return update_file
("$file.in");
290 # parse the specified makefile and load the variables
291 sub parse_makefile
($)
296 ($make{"=dir"} = $file) =~ s/[^\/]+$//;
298 open MAKE
, "$file.in" or die "cannot open $file.in\n";
304 while (/\\$/) { chop; $_ .= <MAKE
>; chomp; } # merge continued lines
307 if (/^\@(MAKE.*RULES)\@/)
310 $make{"=rules"} = $makerules{$var};
313 if (/^\s*(MODULE|IMPORTLIB|TESTDLL|MANPAGE)\s*=\s*(.*)/)
317 push @
{$make{"=flags"}}, "implib" if $var eq "IMPORTLIB";
318 push @
{$make{"=flags"}}, "manpage" if $var eq "MANPAGE";
321 if (/^\s*(BISON_SRCS|LEX_SRCS|IDL_[CHIPRS]_SRCS|IDL_TLB_SRCS|IMPLIB_SRCS|C_SRCS|MC_SRCS|RC_SRCS|PO_SRCS|SVG_SRCS|PROGRAMS)\s*=\s*(.*)/)
324 my @list = split(/\s+/, $2);
325 $make{$var} = \
@list;
326 push @
{$make{"=flags"}}, "mc" if $var eq "MC_SRCS";
327 push @
{$make{"=flags"}}, "po" if $var eq "PO_SRCS";
328 push @
{$make{"=flags"}}, "staticimplib" if $var eq "IMPLIB_SRCS";
331 if (/(install-lib|install-dev)\s*:/)
333 push @
{$make{"=flags"}}, $1;
336 if (/^\s*(TOPSRCDIR|TOPOBJDIR|SRCDIR|VPATH)\s*=\s*(.*)/)
338 die "Variable $1 in $file.in is obsolete";
342 if ($file =~ /^programs\/([^\
/]+)\/Makefile
/)
344 push @
{$make{"=flags"}}, "install" unless $dont_install{$1};
345 push @
{$make{"=flags"}}, "installbin" if $bin_install{$1};
351 # assign source files to their respective makefile
352 sub assign_sources_to_makefiles
(@
)
356 foreach my $file (@_)
358 next if defined $ignored_source_files{$file};
359 my $dir = dirname
( $file );
362 while ($dir && !defined $makefiles{"$dir/Makefile"}) { $dir = dirname
( $dir ); }
363 $subdir =~ s/^$dir\/?//;
364 $subdirs{"$dir/ $subdir"} = 1 if $subdir;
367 die "no makefile found for $file\n" unless defined $makefiles{"$dir/Makefile"};
369 my $make = $makefiles{"$dir/Makefile"};
370 my $name = substr( $file, length($dir) + 1 );
372 if ($dir eq "include")
374 next if ($name =~ /\.in$/);
375 if ($name =~ /^wine\// && !$exported_wine_headers{$name})
377 if ($private_idl_headers{$name}) { push @
{${$make}{"=PRIVATE_IDL_H_SRCS"}}, $name; }
380 if ($name =~ /stdole2\.idl$/) { push @
{${$make}{"=IDL_TLB_SRCS"}}, $name; }
381 elsif ($private_idl_headers{$name}) { push @
{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
382 elsif ($name =~ /\.h$/) { push @
{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
383 elsif ($name =~ /\.x$/) { push @
{${$make}{"=XTEMPLATE_SRCS"}}, $name; }
384 elsif ($name =~ /\.rh$/) { push @
{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
385 elsif ($name =~ /\.inl$/) { push @
{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
386 elsif ($name =~ /\.idl$/) { push @
{${$make}{"=PUBLIC_IDL_H_SRCS"}}, $name; }
387 else { die "unknown file $name in include dir"; }
391 if ($name =~ /\.c$/) { push @
{${$make}{"=C_SRCS"}}, $name; }
392 elsif ($name =~ /\.l$/) { push @
{${$make}{"=LEX_SRCS"}}, $name; }
393 elsif ($name =~ /\.y$/) { push @
{${$make}{"=BISON_SRCS"}}, $name; }
394 elsif ($name =~ /\.rc$/) { push @
{${$make}{"=RC_SRCS"}}, $name; }
395 elsif ($name =~ /\.mc$/) { push @
{${$make}{"=MC_SRCS"}}, $name; }
396 elsif ($name =~ /\.svg$/) { push @
{${$make}{"=SVG_SRCS"}}, $name; }
399 foreach my $key (keys %subdirs)
401 my ($dir, $subdir) = split " ", $key;
402 if ($dir eq "/") { $dir = ""; }
403 push @
{${$makefiles{"${dir}Makefile"}}{"=EXTRASUBDIRS"}}, $subdir;
406 # add extra variables to include source list
407 my $make = $makefiles{"include/Makefile"};
408 unshift @
{${$make}{"=SRCDIR_INCLUDES"}}, "\$(XTEMPLATE_SRCS)";
409 unshift @
{${$make}{"=SRCDIR_INCLUDES"}}, "\$(PUBLIC_IDL_H_SRCS)";
410 unshift @
{${$make}{"=SRCDIR_INCLUDES"}}, "\$(IDL_TLB_SRCS)";
413 ################################################################
414 # update the makefile list in configure.ac
416 sub update_makefiles
(@
)
420 foreach my $var (sort { $makerules{$a} cmp $makerules{$b}; } keys %makerules)
422 my $file = $makerules{$var};
423 my %make = %{$makefiles{$file}};
424 my $rules = $make{"=rules"} ?
",[$make{\"=rules\"}]" : "";
425 push @lines, "WINE_CONFIG_MAKERULES([$file],[$var]$rules)\n";
429 foreach my $file (sort @_)
431 my %make = %{$makefiles{$file}};
432 my $rules = $make{"=rules"};
434 my $is_win16 = $make{"MODULE"} && ($make{"MODULE"} =~ /16$/ || $modules16{$make{"MODULE"}});
435 my $flag_args = defined $make{"=flags"} ?
",[" . join(",",sort @
{$make{"=flags"}}) ."]" : "";
436 if ($rules eq $makerules{"MAKE_DLL_RULES"})
438 (my $name = $file) =~ s/^dlls\/(.*)\/Makefile
/$1/;
441 die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
445 die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.dll";
447 my $implib = $make{"IMPORTLIB"} || "";
448 $args .= "," if $is_win16 || defined $make{"=flags"};
449 $args .= "enable_win16" if $is_win16;
451 $args .= ",[$implib]" if $implib && $implib ne $name;
452 push @lines, "WINE_CONFIG_DLL($name$args)\n";
454 elsif ($rules eq $makerules{"MAKE_PROG_RULES"})
456 (my $name = $file) =~ s/^programs\/(.*)\/Makefile
/$1/;
459 die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
463 die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.exe";
465 $args .= "," if $is_win16 || defined $make{"=flags"};
466 $args .= "enable_win16" if $is_win16;
467 push @lines, "WINE_CONFIG_PROGRAM($name$args$flag_args)\n";
469 elsif ($rules eq $makerules{"MAKE_TEST_RULES"})
471 (my $dir = $file) =~ s/^(.*)\/Makefile/$1/;
472 push @lines, "WINE_CONFIG_TEST($dir$flag_args)\n";
474 elsif ($rules eq $makerules{"MAKE_IMPLIB_RULES"})
476 (my $name = $file) =~ s/^dlls\/(.*)\/Makefile
/$1/;
477 push @lines, "WINE_CONFIG_LIB($name$flag_args)\n";
479 elsif ($file =~ /^tools.*\/Makefile
$/)
481 (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
482 push @lines, "WINE_CONFIG_TOOL($name$flag_args)\n";
484 elsif ($file =~ /\/Makefile
$/)
486 (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
488 $args .= "," if defined $make{"=flags"};
489 push @lines, "WINE_CONFIG_MAKEFILE($args$flag_args)\n";
493 push @lines, "\nAC_SUBST([LINGUAS],[\"\\\n", join( " \\\n", sort @linguas ), "\"])\n\n";
495 # update the source variables in all the makefiles
497 foreach my $file (sort @_)
499 replace_makefile_variable
( $file, "LEX_SRCS" );
500 replace_makefile_variable
( $file, "BISON_SRCS" );
501 replace_makefile_variable
( $file, "MC_SRCS" );
502 replace_makefile_variable
( $file, "SVG_SRCS" );
503 replace_makefile_variable
( $file, "C_SRCS" );
504 replace_makefile_variable
( $file, "RC_SRCS" );
505 replace_makefile_variable
( $file, "PRIVATE_IDL_H_SRCS" );
506 replace_makefile_variable
( $file, "PUBLIC_IDL_H_SRCS" );
507 replace_makefile_variable
( $file, "IDL_TLB_SRCS" );
508 replace_makefile_variable
( $file, "XTEMPLATE_SRCS" );
509 replace_makefile_variable
( $file, "SRCDIR_INCLUDES" );
510 replace_makefile_variable
( $file, "EXTRASUBDIRS" );
513 push @lines, "dnl End of auto-generated output commands\n";
514 replace_in_file
( "configure.ac", '^WINE_CONFIG_MAKERULES', '^dnl End of auto-generated output commands\n$', @lines);
518 ################################################################
519 # process ignore targets for generic source files
521 sub update_ignores
(@
)
525 foreach my $file (sort @_)
527 my %makefile = %{$makefiles{$file}};
530 foreach my $src (@ignore_srcs)
532 my @pattern = @
{$src};
533 next unless defined $makefile{$pattern[0]};
534 next if $pattern[0] eq "IDL_TLB_SRCS" && $makefile{"=rules"} eq "dlls/Makedll.rules";
535 push @list, map { (my $ret = $_) =~ s/$pattern[1]$/$pattern[2]/; $ret; } @
{$makefile{$pattern[0]}};
537 foreach my $f (@list)
539 push @ignores, $makefile{"=dir"} . $f unless $f =~ /\$\(.*\)/; # skip make variables
542 if (defined $makefile{"IMPORTLIB"})
544 if ($makefile{"IMPORTLIB"} =~ /^([a-zA-Z0-9_.]+)/)
546 if ("dlls/$1/" ne $makefile{"=dir"}) { push @ignores, "dlls/lib$1.def"; }
550 die "invalid importlib name $makefile{IMPORTLIB} in $file";
558 ################################################################
559 # update the main .gitignore
561 sub update_gitignore
(@
)
563 my @ignores = values %makerules;
565 foreach my $make (@makefiles)
567 my %makefile = %{$makefiles{$make}};
568 my $dir = $makefile{"=dir"};
569 if (defined $makefile{"PROGRAMS"})
571 push @ignores, map { s/\$\(EXEEXT\)//; $dir . $_; } @
{$makefile{"PROGRAMS"}};
575 # prepend a slash to paths that don't have one
576 @ignores = map { $_ =~ s/^([^\/]+)$/\
/$1/; $_; } @ignores;
578 # get rid of duplicates
580 foreach my $i (@ignores, @_) { $ignores{$i} = 1; }
582 replace_in_file
( ".gitignore", undef, undef,
583 "# Automatically generated by make_makefiles; DO NOT EDIT!!\n",
584 join("\n", sort keys %ignores), "\n" );
588 ################################################################
589 # update the LINGUAS file
591 sub update_linguas
(@
)
593 replace_in_file
( "po/LINGUAS", undef, undef, join("\n", sort @_), "\n" );
597 die "needs to be run from a git checkout" unless -d
".git";
599 my @all_files = split /\0/, `git ls-files -c -z`;
600 @linguas = map { (my $ret = $_) =~ s/^po\/(.*)\.po/$1/; $ret; } grep /^po\
/.*\.po$/, @all_files;
601 @makefiles = map { (my $ret = $_) =~ s/\.in$//; $ret; } grep /Makefile.in$/, @all_files;
603 foreach my $file (sort values %makerules, @makefiles)
605 my %make = parse_makefile
( $file );
606 $makefiles{$file} = \
%make;
609 assign_sources_to_makefiles
( @all_files );
610 update_linguas
( @linguas );
611 update_makefiles
( @makefiles );
612 push @ignores, update_ignores
( @makefiles );
613 update_gitignore
( @ignores );