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 "*/*/tests/testlist.c",
95 "programs/winetest/build.nfo",
96 "programs/winetest/build.rc",
101 # Source files and their resulting target to ignore
103 [ 'BISON_SRCS', '\.y', '.tab.c' ],
104 [ 'BISON_SRCS', '\.y', '.tab.h' ],
105 [ 'LEX_SRCS', '\.l', '.yy.c' ],
106 [ 'IDL_TLB_SRCS', '\.idl', '.tlb' ],
107 [ 'IDL_H_SRCS', '\.idl', '.h' ],
108 [ 'IDL_C_SRCS', '\.idl', '.h' ],
109 [ 'IDL_I_SRCS', '\.idl', '.h' ],
110 [ 'IDL_P_SRCS', '\.idl', '.h' ],
111 [ 'IDL_S_SRCS', '\.idl', '.h' ],
112 [ 'IDL_C_SRCS', '\.idl', '_c.c' ],
113 [ 'IDL_I_SRCS', '\.idl', '_i.c' ],
114 [ 'IDL_P_SRCS', '\.idl', '_p.c' ],
115 [ 'IDL_S_SRCS', '\.idl', '_s.c' ],
116 [ 'PUBLIC_IDL_H_SRCS', '\.idl', '.h' ],
117 [ 'PRIVATE_IDL_H_SRCS', '\.idl', '.h' ],
118 [ 'XTEMPLATE_SRCS', '\.x', '.h' ],
121 my %exported_wine_headers = (
123 "wine/exception.h" => 1,
124 "wine/library.h" => 1,
125 "wine/unicode.h" => 1,
126 "wine/itss.idl" => 1,
127 "wine/svcctl.idl" => 1,
130 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};
249 if (defined ${$make}{"=$var"})
251 @values = @
{${$make}{"=$var"}};
252 ${$make}{$var} = \
@values;
256 return unless defined ${$make}{$var};
257 undef ${$make}{$var};
260 open NEW_FILE
, ">$file.in.new" or die "cannot create $file.in.new";
262 open OLD_FILE
, "$file.in" or die "cannot open $file.in";
265 if (/^\s*($var\s*)=/)
267 # try to preserve formatting
269 my $multiline = /\\$/ || (@values > 1);
281 print NEW_FILE
"$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
285 print NEW_FILE
"$prefix= @values\n";
290 if (/^\@MAKE/ && !$replaced && @values)
292 print NEW_FILE
"$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
298 return update_file
("$file.in");
301 # parse the specified makefile and load the variables
302 sub parse_makefile
($)
307 ($make{"=dir"} = $file) =~ s/[^\/]+$//;
309 open MAKE
, "$file.in" or die "cannot open $file.in\n";
315 while (/\\$/) { chop; $_ .= <MAKE
>; chomp; } # merge continued lines
318 if (/^\@(MAKE.*RULES)\@/)
321 $make{"=rules"} = $makerules{$var} || $var;
324 if (/^\s*(MODULE|IMPORTLIB|TESTDLL|PARENTSRC)\s*=\s*(.*)/)
328 ${$make{"=flags"}}{"implib"} = 1 if $var eq "IMPORTLIB";
331 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|MANPAGES)\s*=\s*(.*)/)
334 my @list = split(/\s+/, $2);
335 $make{$var} = \
@list;
336 ${$make{"=flags"}}{"clean"} = 1 if $var eq "PROGRAMS";
339 if (/(install-lib|install-dev|clean)\s*:/)
341 ${$make{"=flags"}}{$1} = 1;
344 if (/^\s*(TOPSRCDIR|TOPOBJDIR|SRCDIR|VPATH)\s*=\s*(.*)/)
346 die "Variable $1 in $file.in is obsolete";
350 if ($file =~ /^programs\/([^\
/]+)\/Makefile
/)
352 ${$make{"=flags"}}{"install"} = 1 unless $dont_install{$1};
353 ${$make{"=flags"}}{"installbin"} = 1 if $bin_install{$1};
356 if (defined $make{"=flags"} && defined $make{"=rules"} &&
357 ($make{"=rules"} eq "MAKE_DLL_RULES" ||
358 $make{"=rules"} eq "MAKE_PROG_RULES"))
360 die "Custom install-lib rule not allowed in $file" if defined ${$make{"=flags"}}{"install-lib"};
361 die "Custom install-dev rule not allowed in $file" if defined ${$make{"=flags"}}{"install-dev"};
367 # read pragma makedep flags from a source file
368 sub get_makedep_flags
($)
373 open FILE
, $file or die "cannot open $file";
376 next unless /^#\s*pragma\s+makedep\s+(.*)/;
377 foreach my $flag (split /\s+/, $1)
379 last if $flag eq "depend";
387 sub get_parent_makefile
($)
390 my %make = %{$makefiles{$file}};
391 my $reldir = $make{"PARENTSRC"} || "";
392 return "" unless $reldir;
393 (my $path = $file) =~ s/\/Makefile$/\
//;
394 while ($reldir =~ /^\.\.\//)
396 $reldir =~ s/^\.\.\///;
397 $path =~ s/[^\/]+\/$//;
399 return "$path$reldir/Makefile";
402 # preserve shared source files that are listed in the existing makefile
403 sub preserve_shared_source_files
($$$)
405 my ($make, $parent, $var) = @_;
408 return unless defined ${$parent}{"=$var"};
409 foreach my $file (@
{${$parent}{"=$var"}}) { $srcs{$file} = 1; }
410 foreach my $file (@
{${$make}{"=$var"}}) { $srcs{$file} = 0; }
412 foreach my $file (@
{${$make}{$var}})
414 next unless defined $srcs{$file} && $srcs{$file} == 1;
415 push @
{${$make}{"=$var"}}, $file;
419 # assign source files to their respective makefile
420 sub assign_sources_to_makefiles
(@
)
422 foreach my $file (@_)
424 next if defined $ignored_source_files{$file};
425 my $dir = dirname
( $file );
428 while ($dir && !defined $makefiles{"$dir/Makefile"}) { $dir = dirname
( $dir ); }
429 $subdir =~ s/^$dir\/?//;
432 die "no makefile found for $file\n" unless defined $makefiles{"$dir/Makefile"};
434 my $make = $makefiles{"$dir/Makefile"};
435 my $name = substr( $file, length($dir) + 1 );
437 ${$make}{"=flags"}{"clean"} = 1 if $subdir;
439 if ($dir eq "include")
441 next if ($name =~ /\.in$/);
442 if ($name =~ /^wine\// && !$exported_wine_headers{$name})
444 if ($private_idl_headers{$name}) { push @
{${$make}{"=PRIVATE_IDL_H_SRCS"}}, $name; }
447 if ($name =~ /stdole2\.idl$/) { push @
{${$make}{"=IDL_TLB_SRCS"}}, $name; }
448 elsif ($private_idl_headers{$name}) { push @
{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
449 elsif ($name =~ /\.h$/) { push @
{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
450 elsif ($name =~ /\.x$/) { push @
{${$make}{"=XTEMPLATE_SRCS"}}, $name; }
451 elsif ($name =~ /\.rh$/) { push @
{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
452 elsif ($name =~ /\.inl$/) { push @
{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
453 elsif ($name =~ /\.idl$/) { push @
{${$make}{"=PUBLIC_IDL_H_SRCS"}}, $name; }
454 else { die "unknown file $name in include dir"; }
458 if ($name =~ /\.m$/) { push @
{${$make}{"=OBJC_SRCS"}}, $name; }
459 elsif ($name =~ /\.l$/) { push @
{${$make}{"=LEX_SRCS"}}, $name; }
460 elsif ($name =~ /\.y$/) { push @
{${$make}{"=BISON_SRCS"}}, $name; }
461 elsif ($name =~ /\.svg$/) { push @
{${$make}{"=SVG_SRCS"}}, $name; }
462 elsif ($name =~ /\.c$/)
464 my %flags = get_makedep_flags
( $file );
465 if (defined $flags{"implib"})
467 push @
{${$make}{"=IMPLIB_SRCS"}}, $name;
468 ${${$make}{"=flags"}}{"staticimplib"} = 1;
470 push @
{${$make}{"=C_SRCS"}}, $name;
472 elsif ($name =~ /\.rc$/)
474 my %flags = get_makedep_flags
( $file );
475 if (defined $flags{"po"})
477 push @
{${$make}{"=PO_SRCS"}}, $name;
478 ${${$make}{"=flags"}}{"po"} = 1;
480 push @
{${$make}{"=RC_SRCS"}}, $name;
482 elsif ($name =~ /\.mc$/)
484 push @
{${$make}{"=MC_SRCS"}}, $name;
485 ${${$make}{"=flags"}}{"mc"} = 1;
487 elsif ($name =~ /\.idl$/)
489 my %flags = get_makedep_flags
( $file );
490 push @
{${$make}{"=IDL_C_SRCS"}}, $name if defined $flags{"client"};
491 push @
{${$make}{"=IDL_H_SRCS"}}, $name if defined $flags{"header"};
492 push @
{${$make}{"=IDL_I_SRCS"}}, $name if defined $flags{"ident"};
493 push @
{${$make}{"=IDL_P_SRCS"}}, $name if defined $flags{"proxy"};
494 push @
{${$make}{"=IDL_R_SRCS"}}, $name if defined $flags{"register"};
495 push @
{${$make}{"=IDL_S_SRCS"}}, $name if defined $flags{"server"};
496 push @
{${$make}{"=IDL_TLB_SRCS"}}, $name if defined $flags{"typelib"};
497 ${${$make}{"=flags"}}{"clean"} = 1;
499 elsif ($name =~ /\.man\.in$/)
501 push @
{${$make}{"=MANPAGES"}}, $name;
502 ${${$make}{"=flags"}}{"manpage"} = 1;
507 # add extra variables to include source list
508 my $make = $makefiles{"include/Makefile"};
509 unshift @
{${$make}{"=SRCDIR_INCLUDES"}}, "\$(XTEMPLATE_SRCS)";
510 unshift @
{${$make}{"=SRCDIR_INCLUDES"}}, "\$(PUBLIC_IDL_H_SRCS)";
511 unshift @
{${$make}{"=SRCDIR_INCLUDES"}}, "\$(IDL_TLB_SRCS)";
513 # preserve shared source files from the parent makefile
514 foreach my $file (@makefiles)
516 my %make = %{$makefiles{$file}};
517 my $parent = get_parent_makefile
( $file );
519 preserve_shared_source_files
( $makefiles{$file}, $makefiles{$parent}, "C_SRCS" );
520 preserve_shared_source_files
( $makefiles{$file}, $makefiles{$parent}, "LEX_SRCS" );
521 preserve_shared_source_files
( $makefiles{$file}, $makefiles{$parent}, "BISON_SRCS" );
525 ################################################################
526 # update the makefile list in configure.ac
528 sub update_makefiles
(@
)
532 foreach my $var (sort { $makerules{$a} cmp $makerules{$b}; } keys %makerules)
534 my $file = $makerules{$var};
535 my %make = %{$makefiles{$file}};
536 my $rules = $make{"=rules"} ?
",[$make{\"=rules\"}]" : "";
537 push @lines, "WINE_CONFIG_MAKERULES([$file],[$var]$rules)\n";
541 foreach my $file (sort @_)
543 my %make = %{$makefiles{$file}};
544 my $rules = $make{"=rules"};
546 my $is_win16 = $make{"MODULE"} && ($make{"MODULE"} =~ /16$/ || $modules16{$make{"MODULE"}});
547 my $flag_args = defined $make{"=flags"} ?
",[" . join(",",sort keys %{$make{"=flags"}}) ."]" : "";
548 if ($rules eq "MAKE_DLL_RULES")
550 (my $name = $file) =~ s/^dlls\/(.*)\/Makefile
/$1/;
553 die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
557 die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.dll";
559 my $implib = $make{"IMPORTLIB"} || "";
560 $args .= "," if $is_win16 || defined $make{"=flags"};
561 $args .= "enable_win16" if $is_win16;
563 $args .= ",[$implib]" if $implib && $implib ne $name;
564 push @lines, "WINE_CONFIG_DLL($name$args)\n";
566 elsif ($rules eq "MAKE_PROG_RULES")
568 (my $name = $file) =~ s/^programs\/(.*)\/Makefile
/$1/;
571 die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
575 die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.exe";
577 $args .= "," if $is_win16 || defined $make{"=flags"};
578 $args .= "enable_win16" if $is_win16;
579 push @lines, "WINE_CONFIG_PROGRAM($name$args$flag_args)\n";
581 elsif ($rules eq "MAKE_TEST_RULES")
583 (my $dir = $file) =~ s/^(.*)\/Makefile/$1/;
584 push @lines, "WINE_CONFIG_TEST($dir$flag_args)\n";
586 elsif ($rules eq "MAKE_IMPLIB_RULES")
588 (my $name = $file) =~ s/^dlls\/(.*)\/Makefile
/$1/;
589 push @lines, "WINE_CONFIG_LIB($name$flag_args)\n";
591 elsif ($file =~ /^tools.*\/Makefile
$/)
593 (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
594 push @lines, "WINE_CONFIG_TOOL($name$flag_args)\n";
596 elsif ($file =~ /\/Makefile
$/)
598 (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
600 $args .= "," if defined $make{"=flags"};
601 push @lines, "WINE_CONFIG_MAKEFILE($args$flag_args)\n";
605 push @lines, "\nAC_SUBST([LINGUAS],[\"\\\n", join( " \\\n", sort @linguas ), "\"])\n\n";
607 # update the source variables in all the makefiles
609 foreach my $file (sort @_)
611 replace_makefile_variable
( $file, "LEX_SRCS" );
612 replace_makefile_variable
( $file, "BISON_SRCS" );
613 replace_makefile_variable
( $file, "MC_SRCS" );
614 replace_makefile_variable
( $file, "SVG_SRCS" );
615 replace_makefile_variable
( $file, "C_SRCS" );
616 replace_makefile_variable
( $file, "OBJC_SRCS" );
617 replace_makefile_variable
( $file, "RC_SRCS" );
618 replace_makefile_variable
( $file, "PO_SRCS" );
619 replace_makefile_variable
( $file, "PRIVATE_IDL_H_SRCS" );
620 replace_makefile_variable
( $file, "PUBLIC_IDL_H_SRCS" );
621 replace_makefile_variable
( $file, "IDL_C_SRCS" );
622 replace_makefile_variable
( $file, "IDL_I_SRCS" );
623 replace_makefile_variable
( $file, "IDL_P_SRCS" );
624 replace_makefile_variable
( $file, "IDL_R_SRCS" );
625 replace_makefile_variable
( $file, "IDL_S_SRCS" );
626 replace_makefile_variable
( $file, "IDL_TLB_SRCS" );
627 replace_makefile_variable
( $file, "XTEMPLATE_SRCS" );
628 replace_makefile_variable
( $file, "IMPLIB_SRCS" );
629 replace_makefile_variable
( $file, "SRCDIR_INCLUDES" );
630 replace_makefile_variable
( $file, "MANPAGES" );
633 push @lines, "dnl End of auto-generated output commands\n";
634 replace_in_file
( "configure.ac", '^WINE_CONFIG_MAKERULES', '^dnl End of auto-generated output commands\n$', @lines);
638 ################################################################
639 # process ignore targets for generic source files
641 sub update_ignores
(@
)
645 foreach my $file (sort @_)
647 my %makefile = %{$makefiles{$file}};
650 foreach my $src (@ignore_srcs)
652 my @pattern = @
{$src};
653 next unless defined $makefile{$pattern[0]};
654 next if $pattern[0] eq "IDL_TLB_SRCS" && $makefile{"=rules"} eq "MAKE_DLL_RULES";
655 push @list, map { (my $ret = $_) =~ s/$pattern[1]$/$pattern[2]/; $ret; } @
{$makefile{$pattern[0]}};
657 foreach my $f (@list)
659 push @ignores, $makefile{"=dir"} . $f unless $f =~ /\$\(.*\)/; # skip make variables
662 if (defined $makefile{"IMPORTLIB"})
664 if ($makefile{"IMPORTLIB"} =~ /^([a-zA-Z0-9_.]+)/)
666 if ("dlls/$1/" ne $makefile{"=dir"}) { push @ignores, "dlls/lib$1.def"; }
670 die "invalid importlib name $makefile{IMPORTLIB} in $file";
678 ################################################################
679 # update the main .gitignore
681 sub update_gitignore
(@
)
683 my @ignores = values %makerules;
685 foreach my $make (@makefiles)
687 my %makefile = %{$makefiles{$make}};
688 my $dir = $makefile{"=dir"};
689 if (defined $makefile{"PROGRAMS"})
691 push @ignores, map { s/\$\(EXEEXT\)//; $dir . $_; } @
{$makefile{"PROGRAMS"}};
695 # prepend a slash to paths that don't have one
696 @ignores = map { $_ =~ s/^([^\/]+)$/\
/$1/; $_; } @ignores;
698 # get rid of duplicates
700 foreach my $i (@ignores, @_) { $ignores{$i} = 1; }
702 replace_in_file
( ".gitignore", undef, undef,
703 "# Automatically generated by make_makefiles; DO NOT EDIT!!\n",
704 join("\n", sort keys %ignores), "\n" );
708 ################################################################
709 # update the LINGUAS file
711 sub update_linguas
(@
)
713 replace_in_file
( "po/LINGUAS", undef, undef, join("\n", sort @_), "\n" );
717 die "needs to be run from a git checkout" unless -d
".git";
719 my @all_files = split /\0/, `git ls-files -c -z`;
720 @linguas = map { (my $ret = $_) =~ s/^po\/(.*)\.po/$1/; $ret; } grep /^po\
/.*\.po$/, @all_files;
721 @makefiles = map { (my $ret = $_) =~ s/\.in$//; $ret; } grep /Makefile.in$/, @all_files;
723 foreach my $file (sort values %makerules, @makefiles)
725 my %make = parse_makefile
( $file );
726 $makefiles{$file} = \
%make;
729 assign_sources_to_makefiles
( @all_files );
730 update_linguas
( @linguas );
731 update_makefiles
( @makefiles );
732 push @ignores, update_ignores
( @makefiles );
733 update_gitignore
( @ignores );