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",
30 # Programs that we want to install in the bin directory too
46 # Programs that we don't want to install at all
52 # Dlls and programs that are 16-bit specific
69 # Default patterns for top-level .gitignore
90 "dlls/shell32/AUTHORS",
91 "*/*/tests/testlist.c",
96 "programs/winetest/build.nfo",
97 "programs/winetest/build.rc",
102 # Source files and their resulting target to ignore
104 [ 'BISON_SRCS', '\.y', '.tab.c' ],
105 [ 'BISON_SRCS', '\.y', '.tab.h' ],
106 [ 'LEX_SRCS', '\.l', '.yy.c' ],
107 [ 'IDL_TLB_SRCS', '\.idl', '.tlb' ],
108 [ 'IDL_H_SRCS', '\.idl', '.h' ],
109 [ 'IDL_C_SRCS', '\.idl', '.h' ],
110 [ 'IDL_I_SRCS', '\.idl', '.h' ],
111 [ 'IDL_P_SRCS', '\.idl', '.h' ],
112 [ 'IDL_S_SRCS', '\.idl', '.h' ],
113 [ 'IDL_C_SRCS', '\.idl', '_c.c' ],
114 [ 'IDL_I_SRCS', '\.idl', '_i.c' ],
115 [ 'IDL_P_SRCS', '\.idl', '_p.c' ],
116 [ 'IDL_S_SRCS', '\.idl', '_s.c' ],
117 [ 'PUBLIC_IDL_H_SRCS', '\.idl', '.h' ],
118 [ 'PRIVATE_IDL_H_SRCS', '\.idl', '.h' ],
119 [ 'XTEMPLATE_SRCS', '\.x', '.h' ],
122 my %exported_wine_headers = (
124 "wine/exception.h" => 1,
125 "wine/library.h" => 1,
126 "wine/unicode.h" => 1,
127 "wine/itss.idl" => 1,
128 "wine/svcctl.idl" => 1,
131 my %private_idl_headers = (
165 "wine/winedxgi.idl" => 1,
168 my %ignored_source_files = (
169 "dlls/wineps.drv/afm2c.c" => 1,
170 "dlls/wineps.drv/mkagl.c" => 1,
171 "programs/winetest/dist.rc" => 1,
174 my (@linguas, @makefiles, %makefiles);
179 return "" unless $ret =~ /\//;
184 # update a file if changed
188 my $ret = !(-f
$file) || system "cmp $file $file.new >/dev/null";
195 rename "$file.new", "$file";
196 print "$file updated\n";
197 if ($file eq "configure.ac")
200 print "configure updated\n";
206 # replace some lines in a file between two markers
207 sub replace_in_file
($$$@
)
213 open NEW_FILE
, ">$file.new" or die "cannot create $file.new";
217 open OLD_FILE
, "$file" or die "cannot open $file";
232 print NEW_FILE
$_ unless $skip;
237 close OLD_FILE
if defined($start);
239 return update_file
($file);
242 # replace a variable in a makefile
243 sub replace_makefile_variable
($$)
245 my ($file, $var) = @_;
246 my $make = $makefiles{$file};
250 if (defined ${$make}{"=$var"})
252 @values = @
{${$make}{"=$var"}};
253 ${$make}{$var} = \
@values;
257 return unless defined ${$make}{$var};
258 undef ${$make}{$var};
261 open NEW_FILE
, ">$file.in.new" or die "cannot create $file.in.new";
263 open OLD_FILE
, "$file.in" or die "cannot open $file.in";
266 if (/^\s*($var\s*)=/)
268 # try to preserve formatting
270 my $multiline = /\\$/ || (@values > 1);
282 print NEW_FILE
"$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
286 print NEW_FILE
"$prefix= @values\n";
291 if (/^\@MAKE/ && !$replaced && @values)
293 print NEW_FILE
"$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
299 return update_file
("$file.in");
302 # parse the specified makefile and load the variables
303 sub parse_makefile
($)
308 ($make{"=dir"} = $file) =~ s/[^\/]+$//;
310 open MAKE
, "$file.in" or die "cannot open $file.in\n";
316 while (/\\$/) { chop; $_ .= <MAKE
>; chomp; } # merge continued lines
319 if (/^\@(MAKE.*RULES)\@/)
322 $make{"=rules"} = $makerules{$var} || $var;
325 if (/^\s*(MODULE|IMPORTLIB|TESTDLL|MANPAGE)\s*=\s*(.*)/)
329 ${$make{"=flags"}}{"implib"} = 1 if $var eq "IMPORTLIB";
330 ${$make{"=flags"}}{"manpage"} = 1 if $var eq "MANPAGE";
333 if (/^\s*(BISON_SRCS|LEX_SRCS|IDL_[CHIPRS]_SRCS|IDL_TLB_SRCS|IMPLIB_SRCS|C_SRCS|OBJC_SRCS|MC_SRCS|RC_SRCS|PO_SRCS|SVG_SRCS|PROGRAMS)\s*=\s*(.*)/)
336 my @list = split(/\s+/, $2);
337 $make{$var} = \
@list;
338 ${$make{"=flags"}}{"mc"} = 1 if $var eq "MC_SRCS";
339 ${$make{"=flags"}}{"staticimplib"} = 1 if $var eq "IMPLIB_SRCS";
340 ${$make{"=flags"}}{"clean"} = 1 if $var =~ /IDL_[CHIPRS]_SRCS|IDL_TLB_SRCS|PROGRAMS/;
343 if (/(install-lib|install-dev|clean)\s*:/)
345 ${$make{"=flags"}}{$1} = 1;
348 if (/^\s*(TOPSRCDIR|TOPOBJDIR|SRCDIR|VPATH)\s*=\s*(.*)/)
350 die "Variable $1 in $file.in is obsolete";
354 if ($file =~ /^programs\/([^\
/]+)\/Makefile
/)
356 ${$make{"=flags"}}{"install"} = 1 unless $dont_install{$1};
357 ${$make{"=flags"}}{"installbin"} = 1 if $bin_install{$1};
360 if (defined $make{"=flags"} && defined $make{"=rules"} &&
361 ($make{"=rules"} eq "MAKE_DLL_RULES" ||
362 $make{"=rules"} eq "MAKE_PROG_RULES"))
364 die "Custom install-lib rule not allowed in $file" if defined ${$make{"=flags"}}{"install-lib"};
365 die "Custom install-dev rule not allowed in $file" if defined ${$make{"=flags"}}{"install-dev"};
371 # read pragma makedep flags from a source file
372 sub get_makedep_flags
($)
377 open FILE
, $file or die "cannot open $file";
380 next unless /^#\s*pragma\s+makedep\s+(.*)/;
381 foreach my $flag (split /\s+/, $1)
383 last if $flag eq "depend";
391 # assign source files to their respective makefile
392 sub assign_sources_to_makefiles
(@
)
396 foreach my $file (@_)
398 next if defined $ignored_source_files{$file};
399 my $dir = dirname
( $file );
402 while ($dir && !defined $makefiles{"$dir/Makefile"}) { $dir = dirname
( $dir ); }
403 $subdir =~ s/^$dir\/?//;
404 $subdirs{"$dir/ $subdir"} = 1 if $subdir;
407 my $basedir = dirname
( $dir );
408 if ($basedir && !defined $makefiles{"$basedir/Makefile"})
411 $basedir = dirname
( $basedir );
412 $subdirs{"$basedir/ $subdir"} = 1;
415 die "no makefile found for $file\n" unless defined $makefiles{"$dir/Makefile"};
417 my $make = $makefiles{"$dir/Makefile"};
418 my $name = substr( $file, length($dir) + 1 );
420 if ($dir eq "include")
422 next if ($name =~ /\.in$/);
423 if ($name =~ /^wine\// && !$exported_wine_headers{$name})
425 if ($private_idl_headers{$name}) { push @
{${$make}{"=PRIVATE_IDL_H_SRCS"}}, $name; }
428 if ($name =~ /stdole2\.idl$/) { push @
{${$make}{"=IDL_TLB_SRCS"}}, $name; }
429 elsif ($private_idl_headers{$name}) { push @
{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
430 elsif ($name =~ /\.h$/) { push @
{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
431 elsif ($name =~ /\.x$/) { push @
{${$make}{"=XTEMPLATE_SRCS"}}, $name; }
432 elsif ($name =~ /\.rh$/) { push @
{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
433 elsif ($name =~ /\.inl$/) { push @
{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
434 elsif ($name =~ /\.idl$/) { push @
{${$make}{"=PUBLIC_IDL_H_SRCS"}}, $name; }
435 else { die "unknown file $name in include dir"; }
439 if ($name =~ /\.c$/) { push @
{${$make}{"=C_SRCS"}}, $name; }
440 elsif ($name =~ /\.m$/) { push @
{${$make}{"=OBJC_SRCS"}}, $name; }
441 elsif ($name =~ /\.l$/) { push @
{${$make}{"=LEX_SRCS"}}, $name; }
442 elsif ($name =~ /\.y$/) { push @
{${$make}{"=BISON_SRCS"}}, $name; }
443 elsif ($name =~ /\.mc$/) { push @
{${$make}{"=MC_SRCS"}}, $name; }
444 elsif ($name =~ /\.svg$/) { push @
{${$make}{"=SVG_SRCS"}}, $name; }
445 elsif ($name =~ /\.rc$/)
447 my %flags = get_makedep_flags
( $file );
448 if (defined $flags{"po"})
450 push @
{${$make}{"=PO_SRCS"}}, $name;
451 ${${$make}{"=flags"}}{"po"} = 1;
453 push @
{${$make}{"=RC_SRCS"}}, $name;
455 elsif ($name =~ /\.idl$/)
457 my %flags = get_makedep_flags
( $file );
458 push @
{${$make}{"=IDL_C_SRCS"}}, $name if defined $flags{"client"};
459 push @
{${$make}{"=IDL_H_SRCS"}}, $name if defined $flags{"header"};
460 push @
{${$make}{"=IDL_I_SRCS"}}, $name if defined $flags{"ident"};
461 push @
{${$make}{"=IDL_P_SRCS"}}, $name if defined $flags{"proxy"};
462 push @
{${$make}{"=IDL_R_SRCS"}}, $name if defined $flags{"register"};
463 push @
{${$make}{"=IDL_S_SRCS"}}, $name if defined $flags{"server"};
464 push @
{${$make}{"=IDL_TLB_SRCS"}}, $name if defined $flags{"typelib"};
468 foreach my $key (keys %subdirs)
470 my ($dir, $subdir) = split " ", $key;
471 if ($dir eq "/") { $dir = ""; }
472 push @
{${$makefiles{"${dir}Makefile"}}{"=EXTRASUBDIRS"}}, $subdir;
475 # add extra variables to include source list
476 my $make = $makefiles{"include/Makefile"};
477 unshift @
{${$make}{"=SRCDIR_INCLUDES"}}, "\$(XTEMPLATE_SRCS)";
478 unshift @
{${$make}{"=SRCDIR_INCLUDES"}}, "\$(PUBLIC_IDL_H_SRCS)";
479 unshift @
{${$make}{"=SRCDIR_INCLUDES"}}, "\$(IDL_TLB_SRCS)";
482 ################################################################
483 # update the makefile list in configure.ac
485 sub update_makefiles
(@
)
489 foreach my $var (sort { $makerules{$a} cmp $makerules{$b}; } keys %makerules)
491 my $file = $makerules{$var};
492 my %make = %{$makefiles{$file}};
493 my $rules = $make{"=rules"} ?
",[$make{\"=rules\"}]" : "";
494 push @lines, "WINE_CONFIG_MAKERULES([$file],[$var]$rules)\n";
498 foreach my $file (sort @_)
500 my %make = %{$makefiles{$file}};
501 my $rules = $make{"=rules"};
503 my $is_win16 = $make{"MODULE"} && ($make{"MODULE"} =~ /16$/ || $modules16{$make{"MODULE"}});
504 my $flag_args = defined $make{"=flags"} ?
",[" . join(",",sort keys %{$make{"=flags"}}) ."]" : "";
505 if ($rules eq "MAKE_DLL_RULES")
507 (my $name = $file) =~ s/^dlls\/(.*)\/Makefile
/$1/;
510 die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
514 die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.dll";
516 my $implib = $make{"IMPORTLIB"} || "";
517 $args .= "," if $is_win16 || defined $make{"=flags"};
518 $args .= "enable_win16" if $is_win16;
520 $args .= ",[$implib]" if $implib && $implib ne $name;
521 push @lines, "WINE_CONFIG_DLL($name$args)\n";
523 elsif ($rules eq "MAKE_PROG_RULES")
525 (my $name = $file) =~ s/^programs\/(.*)\/Makefile
/$1/;
528 die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
532 die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.exe";
534 $args .= "," if $is_win16 || defined $make{"=flags"};
535 $args .= "enable_win16" if $is_win16;
536 push @lines, "WINE_CONFIG_PROGRAM($name$args$flag_args)\n";
538 elsif ($rules eq "MAKE_TEST_RULES")
540 (my $dir = $file) =~ s/^(.*)\/Makefile/$1/;
541 push @lines, "WINE_CONFIG_TEST($dir$flag_args)\n";
543 elsif ($rules eq "MAKE_IMPLIB_RULES")
545 (my $name = $file) =~ s/^dlls\/(.*)\/Makefile
/$1/;
546 push @lines, "WINE_CONFIG_LIB($name$flag_args)\n";
548 elsif ($file =~ /^tools.*\/Makefile
$/)
550 (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
551 push @lines, "WINE_CONFIG_TOOL($name$flag_args)\n";
553 elsif ($file =~ /\/Makefile
$/)
555 (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
557 $args .= "," if defined $make{"=flags"};
558 push @lines, "WINE_CONFIG_MAKEFILE($args$flag_args)\n";
562 push @lines, "\nAC_SUBST([LINGUAS],[\"\\\n", join( " \\\n", sort @linguas ), "\"])\n\n";
564 # update the source variables in all the makefiles
566 foreach my $file (sort @_)
568 replace_makefile_variable
( $file, "LEX_SRCS" );
569 replace_makefile_variable
( $file, "BISON_SRCS" );
570 replace_makefile_variable
( $file, "MC_SRCS" );
571 replace_makefile_variable
( $file, "SVG_SRCS" );
572 replace_makefile_variable
( $file, "C_SRCS" );
573 replace_makefile_variable
( $file, "OBJC_SRCS" );
574 replace_makefile_variable
( $file, "RC_SRCS" );
575 replace_makefile_variable
( $file, "PO_SRCS" );
576 replace_makefile_variable
( $file, "PRIVATE_IDL_H_SRCS" );
577 replace_makefile_variable
( $file, "PUBLIC_IDL_H_SRCS" );
578 replace_makefile_variable
( $file, "IDL_C_SRCS" );
579 replace_makefile_variable
( $file, "IDL_I_SRCS" );
580 replace_makefile_variable
( $file, "IDL_P_SRCS" );
581 replace_makefile_variable
( $file, "IDL_R_SRCS" );
582 replace_makefile_variable
( $file, "IDL_S_SRCS" );
583 replace_makefile_variable
( $file, "IDL_TLB_SRCS" );
584 replace_makefile_variable
( $file, "XTEMPLATE_SRCS" );
585 replace_makefile_variable
( $file, "SRCDIR_INCLUDES" );
586 replace_makefile_variable
( $file, "EXTRASUBDIRS" );
589 push @lines, "dnl End of auto-generated output commands\n";
590 replace_in_file
( "configure.ac", '^WINE_CONFIG_MAKERULES', '^dnl End of auto-generated output commands\n$', @lines);
594 ################################################################
595 # process ignore targets for generic source files
597 sub update_ignores
(@
)
601 foreach my $file (sort @_)
603 my %makefile = %{$makefiles{$file}};
606 foreach my $src (@ignore_srcs)
608 my @pattern = @
{$src};
609 next unless defined $makefile{$pattern[0]};
610 next if $pattern[0] eq "IDL_TLB_SRCS" && $makefile{"=rules"} eq "MAKE_DLL_RULES";
611 push @list, map { (my $ret = $_) =~ s/$pattern[1]$/$pattern[2]/; $ret; } @
{$makefile{$pattern[0]}};
613 foreach my $f (@list)
615 push @ignores, $makefile{"=dir"} . $f unless $f =~ /\$\(.*\)/; # skip make variables
618 if (defined $makefile{"IMPORTLIB"})
620 if ($makefile{"IMPORTLIB"} =~ /^([a-zA-Z0-9_.]+)/)
622 if ("dlls/$1/" ne $makefile{"=dir"}) { push @ignores, "dlls/lib$1.def"; }
626 die "invalid importlib name $makefile{IMPORTLIB} in $file";
634 ################################################################
635 # update the main .gitignore
637 sub update_gitignore
(@
)
639 my @ignores = values %makerules;
641 foreach my $make (@makefiles)
643 my %makefile = %{$makefiles{$make}};
644 my $dir = $makefile{"=dir"};
645 if (defined $makefile{"PROGRAMS"})
647 push @ignores, map { s/\$\(EXEEXT\)//; $dir . $_; } @
{$makefile{"PROGRAMS"}};
651 # prepend a slash to paths that don't have one
652 @ignores = map { $_ =~ s/^([^\/]+)$/\
/$1/; $_; } @ignores;
654 # get rid of duplicates
656 foreach my $i (@ignores, @_) { $ignores{$i} = 1; }
658 replace_in_file
( ".gitignore", undef, undef,
659 "# Automatically generated by make_makefiles; DO NOT EDIT!!\n",
660 join("\n", sort keys %ignores), "\n" );
664 ################################################################
665 # update the LINGUAS file
667 sub update_linguas
(@
)
669 replace_in_file
( "po/LINGUAS", undef, undef, join("\n", sort @_), "\n" );
673 die "needs to be run from a git checkout" unless -d
".git";
675 my @all_files = split /\0/, `git ls-files -c -z`;
676 @linguas = map { (my $ret = $_) =~ s/^po\/(.*)\.po/$1/; $ret; } grep /^po\
/.*\.po$/, @all_files;
677 @makefiles = map { (my $ret = $_) =~ s/\.in$//; $ret; } grep /Makefile.in$/, @all_files;
679 foreach my $file (sort values %makerules, @makefiles)
681 my %make = parse_makefile
( $file );
682 $makefiles{$file} = \
%make;
685 assign_sources_to_makefiles
( @all_files );
686 update_linguas
( @linguas );
687 update_makefiles
( @makefiles );
688 push @ignores, update_ignores
( @makefiles );
689 update_gitignore
( @ignores );