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" => "dlls/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
58 # Default patterns for top-level .gitignore
75 "dlls/*/tests/*crosstest.exe",
76 "dlls/*/tests/testlist.c",
79 "programs/winetest/*_test.exe",
80 "programs/winetest/*_test.rc",
81 "programs/winetest/build.rc",
84 # Source files and their resulting target to ignore
86 [ 'BISON_SRCS', '\.y', '.tab.c' ],
87 [ 'BISON_SRCS', '\.y', '.tab.h' ],
88 [ 'LEX_SRCS', '\.l', '.yy.c' ],
89 [ 'MC_SRCS', '\.mc', '.mc.rc' ],
90 [ 'IDL_TLB_SRCS', '\.idl', '.tlb' ],
91 [ 'IDL_H_SRCS', '\.idl', '.h' ],
92 [ 'IDL_C_SRCS', '\.idl', '.h' ],
93 [ 'IDL_I_SRCS', '\.idl', '.h' ],
94 [ 'IDL_P_SRCS', '\.idl', '.h' ],
95 [ 'IDL_S_SRCS', '\.idl', '.h' ],
96 [ 'IDL_C_SRCS', '\.idl', '_c.c' ],
97 [ 'IDL_I_SRCS', '\.idl', '_i.c' ],
98 [ 'IDL_P_SRCS', '\.idl', '_p.c' ],
99 [ 'IDL_S_SRCS', '\.idl', '_s.c' ],
102 my %exported_wine_headers = (
104 "wine/exception.h" => 1,
105 "wine/library.h" => 1,
106 "wine/unicode.h" => 1,
107 "wine/itss.idl" => 1,
108 "wine/svcctl.idl" => 1,
111 my %private_idl_headers = (
127 "wine/wined3d.idl" => 1,
128 "wine/winedxgi.idl" => 1,
131 my %ignored_source_files = (
132 "dlls/wineps.drv/afm2c.c" => 1,
133 "dlls/wineps.drv/mkagl.c" => 1,
134 "programs/winetest/dist.rc" => 1,
137 my (@all_files, @makefiles, %makefiles);
142 return "" unless $ret =~ /\//;
147 # update a file if changed
151 my $ret = !(-f
$file) || system "cmp $file $file.new >/dev/null";
158 rename "$file.new", "$file";
159 print "$file updated\n";
160 if ($file eq "configure.ac")
163 print "configure updated\n";
169 # replace some lines in a file between two markers
170 sub replace_in_file
($$$@
)
176 open NEW_FILE
, ">$file.new" or die "cannot create $file.new";
180 open OLD_FILE
, "$file" or die "cannot open $file";
195 print NEW_FILE
$_ unless $skip;
200 close OLD_FILE
if defined($start);
202 return update_file
($file);
205 # replace a variable in a makefile
206 sub replace_makefile_variable
($$)
208 my ($file, $var) = @_;
209 my $make = $makefiles{$file};
211 return unless defined ${$make}{"=$var"};
213 my @values = @
{${$make}{"=$var"}};
214 ${$make}{$var} = \
@values;
216 open NEW_FILE
, ">$file.in.new" or die "cannot create $file.in.new";
218 open OLD_FILE
, "$file.in" or die "cannot open $file.in";
221 if (/^\s*($var\s+)=/)
223 # try to preserve formatting
225 my $multiline = /\\$/ || (@values > 1);
233 print NEW_FILE
"$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
237 print NEW_FILE
"$prefix= @values\n";
245 return update_file
("$file.in");
248 # parse the specified makefile to identify the rules file
249 sub parse_makefile
($)
254 ($make{"=dir"} = $file) =~ s/[^\/]+$//;
256 open MAKE
, "$file.in" or die "cannot open $file.in\n";
262 while (/\\$/) { chop; $_ .= <MAKE
>; chomp; } # merge continued lines
265 if (/^\@(MAKE.*RULES)\@/)
268 $make{"=rules"} = $makerules{$var};
271 if (/^\s*(MODULE|IMPORTLIB|TESTDLL)\s*=\s*(.*)/)
276 if (/^\s*(BISON_SRCS|LEX_SRCS|IDL_[CHIPS]_SRCS|IDL_TLB_SRCS|IMPLIB_SRCS|C_SRCS|MC_SRCS|RC_SRCS|SVG_SRCS|C_SRCS16|RC_SRCS16|SPEC_SRCS16|EXTRA_OBJS16|MANPAGES|PROGRAMS)\s*=\s*(.*)/)
278 my @list = split(/\s+/, $2);
286 # assign source files to their respective makefile
287 sub assign_sources_to_makefiles
()
289 foreach my $file (@all_files)
291 next if defined $ignored_source_files{$file};
292 my $dir = dirname
( $file );
294 while ($dir && !defined $makefiles{"$dir/Makefile"}) { $dir = dirname
( $dir ); }
297 die "no makefile found for $file\n" unless defined $makefiles{"$dir/Makefile"};
299 my $make = $makefiles{"$dir/Makefile"};
300 my $basename = substr( $file, length($dir) + 1 );
302 if ($basename =~ /\.c$/) { push @
{${$make}{"=C_SRCS"}}, $basename; }
303 elsif ($basename =~ /\.l$/) { push @
{${$make}{"=LEX_SRCS"}}, $basename; }
304 elsif ($basename =~ /\.y$/) { push @
{${$make}{"=BISON_SRCS"}}, $basename; }
305 elsif ($basename =~ /\.rc$/) { push @
{${$make}{"=RC_SRCS"}}, $basename; }
306 elsif ($basename =~ /\.mc$/) { push @
{${$make}{"=MC_SRCS"}}, $basename; }
307 elsif ($basename =~ /\.svg$/) { push @
{${$make}{"=SVG_SRCS"}}, $basename; }
311 ################################################################
312 # update the makefile list in configure.ac
314 sub update_makefiles
(@
)
318 foreach my $var (sort { $makerules{$a} cmp $makerules{$b}; } keys %makerules)
320 my $file = $makerules{$var};
321 my %make = %{$makefiles{$file}};
322 my $rules = $make{"=rules"} ?
",[$make{\"=rules\"}]" : "";
323 push @lines, "WINE_CONFIG_MAKERULES([$file],[$var]$rules)\n";
327 foreach my $file (sort @_)
329 my %make = %{$makefiles{$file}};
330 my $rules = $make{"=rules"};
332 if ($rules eq $makerules{"MAKE_DLL_RULES"})
334 $args = ",[dlls],[ALL_DLL_DIRS]";
335 $args .= ",[enable_win16]" if $make{"MODULE"} =~ /(16|\.vxd)$/;
337 elsif ($rules eq $makerules{"MAKE_IMPLIB_RULES"}) { $args = ",[dlls],[ALL_IMPLIB_DIRS]"; }
338 elsif ($rules eq $makerules{"MAKE_TEST_RULES"}) { $args = ",[dlls],[ALL_TEST_DIRS],[enable_tests]"; }
339 elsif ($rules eq $makerules{"MAKE_PROG_RULES"})
341 (my $name = $file) =~ s/^programs\/(.*)\/Makefile
/$1/;
342 $args = ",[programs],[ALL_PROGRAM_DIRS";
343 $args .= ",ALL_PROGRAM_INSTALL_DIRS" unless $dont_install{$name};
344 $args .= ",ALL_PROGRAM_BIN_INSTALL_DIRS" if $bin_install{$name};
346 $args .= ",[enable_win16]" if $make{"MODULE"} =~ /16$/;
348 elsif ($file =~ /^[^\/]*\
/Makefile$/) { $args = ",[],[ALL_TOP_DIRS]"; }
349 push @lines, "WINE_CONFIG_MAKEFILE([$file],[$rules]$args)\n";
352 # update the source variables in all the makefiles
354 foreach my $file (sort @_)
356 my %make = %{$makefiles{$file}};
358 replace_makefile_variable
( $file, "LEX_SRCS" );
359 replace_makefile_variable
( $file, "BISON_SRCS" );
360 replace_makefile_variable
( $file, "MC_SRCS" );
361 replace_makefile_variable
( $file, "SVG_SRCS" );
362 replace_makefile_variable
( $file, "C_SRCS" ) unless defined $make{"C_SRCS16"};
363 replace_makefile_variable
( $file, "RC_SRCS" ) unless defined $make{"RC_SRCS16"};
366 push @lines, "\ndnl Build dependencies for test files compiled into winetest\n";
367 replace_in_file
( "configure.ac", '^WINE_CONFIG_MAKERULES', '^dnl Build dependencies for test files compiled into winetest$', @lines);
371 ################################################################
372 # process ignore targets for generic source files
374 sub update_ignores
(@
)
378 foreach my $file (sort @_)
380 my %makefile = %{$makefiles{$file}};
383 foreach my $src (@ignore_srcs)
385 my @pattern = @
{$src};
386 next unless defined $makefile{$pattern[0]};
387 push @list, map { (my $ret = $_) =~ s/$pattern[1]$/$pattern[2]/; $ret; } @
{$makefile{$pattern[0]}};
389 foreach my $f (@list)
391 push @ignores, $makefile{"=dir"} . $f unless $f =~ /\$\(.*\)/; # skip make variables
397 ################################################################
398 # update dlls/Makefile.in
402 my (%directories, %importlibs, %static_implibs, %staticlib_dirs, %altnames);
406 foreach my $make (@_)
408 my %makefile = %{$makefiles{$make}};
409 next if ($makefile{"=rules"} eq $makerules{"MAKE_TEST_RULES"});
411 next unless defined $makefile{"MODULE"};
412 my $module = $makefile{"MODULE"};
413 (my $dir = $makefile{"=dir"}) =~ s/^dlls\/(.*)\//$1/;
415 if ($makefile{"=rules"} eq $makerules{"MAKE_IMPLIB_RULES"})
417 $staticlib_dirs{$module} = $dir;
418 die "invalid module $module in dir $staticlib_dirs{$module}\n" if "$staticlib_dirs{$module}" ne $module;
422 die "invalid module $module" unless $module =~ /\./;
423 (my $mod = $module) =~ s/\.dll$//;
424 die "invalid directory $dir for module $module\n" unless $mod eq $dir;
425 $directories{$module} = $dir;
428 if (defined $makefile{"IMPORTLIB"})
430 if ($makefile{"IMPORTLIB"} =~ /^([a-zA-Z0-9_.]+)/)
432 $importlibs{$module} = $1;
436 die "invalid importlib name $makefile{IMPORTLIB} in $make";
440 $static_implibs{$module} = 1 if defined $makefile{"IMPLIB_SRCS"};
442 if (defined $makefile{"SPEC_SRCS16"})
444 my @list = map { $_ =~ s/\.spec$//; $_ .= ".dll" unless $_ =~ /\./; $_; } @
{$makefile{"SPEC_SRCS16"}};
445 $altnames{$module} = \
@list;
447 if (defined $makefile{"EXTRA_OBJS16"})
449 foreach my $obj (@
{$makefile{"EXTRA_OBJS16"}})
451 if ($obj =~ /^(.*\.(exe|mod))\.o/) { push @
{$altnames{$module}}, $1; }
456 # output the list of 16-bit files
459 foreach my $mod (sort keys %directories)
461 next unless defined $altnames{$mod};
462 foreach my $i (sort @
{$altnames{$mod}})
464 push @targets16, $i . "16";
467 $text .= "# 16-bit dlls\n\n";
468 $text .= "WIN16_FILES = \\\n";
469 $text .= "\t" . join( " \\\n\t", sort @targets16 ) . "\n\n";
470 $text .= "\@MAKE_RULES\@\n\n";
472 # output the all: target
474 $text .= "# Main target\n\n";
475 $text .= "all: \$(BUILDSUBDIRS) \@WIN16_FILES\@\n\n";
477 # output the lib name -> directory rules
479 $text .= "# Placeholders for 16-bit libraries\n\n";
480 foreach my $mod (sort keys %directories)
482 next unless defined $altnames{$mod};
483 $text .= sprintf "%s:\n", join(" ", map { $_ . "16"; } sort @
{$altnames{$mod}});
484 $text .= sprintf "\techo \"%s\" >\$\@\n\n", $mod;
487 # output the import libraries rules
489 $text .= "# Import libraries\n\n";
490 $text .= "STATIC_IMPLIBEXT = \$(IMPLIBEXT:def=def.a)\n\n";
492 my @lib_symlinks = ();
493 foreach my $mod (sort keys %importlibs)
495 my $dir = $directories{$mod};
496 my $lib = $importlibs{$mod};
497 if ($lib ne $dir) { push @lib_symlinks, $mod; }
499 $text .= "IMPORT_SYMLINKS =";
500 foreach my $mod (sort @lib_symlinks)
502 $text .= sprintf " \\\n\tlib%s.\$(IMPLIBEXT)", $importlibs{$mod};
505 $text .= "\n\nIMPORT_LIBS = \\\n\t\$(IMPORT_SYMLINKS)";
506 foreach my $mod (sort keys %staticlib_dirs)
508 $text .= sprintf " \\\n\t%s/lib%s.a", $staticlib_dirs{$mod}, $mod;
510 foreach my $mod (sort keys %importlibs)
512 $text .= " \\\n\t$directories{$mod}/lib$importlibs{$mod}.\$(IMPLIBEXT)";
513 next unless defined $static_implibs{$mod};
514 $text .= " \\\n\t$directories{$mod}/lib$importlibs{$mod}.\$(STATIC_IMPLIBEXT)";
516 $text .= "\n\nCROSS_IMPLIBS =";
517 foreach my $mod (sort @lib_symlinks)
519 $text .= sprintf " \\\n\tlib%s.a", $importlibs{$mod};
521 foreach my $mod (sort keys %importlibs)
523 next if defined $static_implibs{$mod};
524 $text .= " \\\n\t$directories{$mod}/lib$importlibs{$mod}.a";
527 $text .= "\$(TESTSUBDIRS:%=%/__crosstest__): \$(CROSS_IMPLIBS)\n\n";
528 $text .= "implib: \$(IMPORT_LIBS)\n\n";
529 $text .= "testsubdirs: \$(TESTSUBDIRS)\n\n";
530 $text .= ".PHONY: implib testsubdirs\n\n";
532 foreach my $mod (sort keys %importlibs)
534 my $dir = $directories{$mod};
535 my $lib = $importlibs{$mod};
538 if (defined($static_implibs{$mod}))
540 $text .= sprintf "%s/lib%s.def: %s/%s.spec \$(WINEBUILD)\n", $dir, $lib, $dir, $spec;
541 $text .= sprintf "\t\@cd %s && \$(MAKE) lib%s.def\n\n", $dir, $lib;
542 $text .= sprintf "%s/lib%s.\$(STATIC_IMPLIBEXT): dummy\n", $dir, $lib, $dir, $spec;
543 $text .= sprintf "\t\@cd %s && \$(MAKE) lib%s.\$(STATIC_IMPLIBEXT)\n\n", $dir, $lib;
547 $text .= sprintf "%s/lib%s.def %s/lib%s.a: %s/%s.spec \$(WINEBUILD)\n",
548 $dir, $lib, $dir, $lib, $dir, $spec;
549 $text .= sprintf "\t\@cd %s && \$(MAKE) `basename \$\@`\n\n", $dir;
552 foreach my $mod (sort @lib_symlinks)
554 my $dir = $directories{$mod};
555 my $lib = "lib" . $importlibs{$mod};
556 $text .= sprintf "%s.a: %s/%s.a\n", $lib, $dir, $lib;
557 $text .= sprintf "\t\$(RM) \$@ && \$(LN_S) %s/%s.a \$@\n\n", $dir, $lib;
558 $text .= sprintf "%s.def: %s/%s.def\n", $lib, $dir, $lib;
559 $text .= sprintf "\t\$(RM) \$@ && \$(LN_S) %s/%s.def \$@\n\n", $dir, $lib;
562 $text .= "\$(BUILDSUBDIRS): \$(IMPORT_LIBS)\n";
563 $text .= "\$(INSTALLSUBDIRS:%=%/__install__) \$(INSTALLSUBDIRS:%=%/__install-lib__): \$(IMPORT_LIBS)\n\n";
565 # output the inter-dll dependencies and rules
567 $text .= "# Map library name to the corresponding directory\n\n";
569 foreach my $mod (sort keys %staticlib_dirs)
571 $text .= sprintf "%s/lib%s.a: %s\n", $staticlib_dirs{$mod}, $mod, $staticlib_dirs{$mod};
573 $text .= "\n# Misc rules\n";
575 replace_in_file
( "dlls/Makefile.in",
582 foreach my $mod (sort @lib_symlinks)
584 push @ignores, "dlls/lib$importlibs{$mod}.def";
586 foreach my $mod (sort keys %directories)
588 next unless defined $altnames{$mod};
589 push @ignores, map { "dlls/" . $_ . "16"; } @
{$altnames{$mod}};
596 ################################################################
597 # update include/Makefile.in
599 sub update_includes
()
601 my (@h_srcs, @private_idl_srcs, @public_idl_srcs, @tlb_srcs, %subdirs);
602 my @includes = map { (my $ret = $_) =~ s/^include\///; $ret; } grep /^include\
//, @all_files;
603 foreach my $incl (@includes)
605 if ($incl =~ /(.*)\//) { $subdirs{$1} = 1; }
606 next if ($incl =~ /\.in$/);
607 if ($incl =~ /^wine\// && !$exported_wine_headers{$incl})
609 if ($private_idl_headers{$incl}) { push @private_idl_srcs, $incl; }
612 if ($incl =~ /stdole2\.idl$/) { push @tlb_srcs, $incl; }
613 elsif ($private_idl_headers{$incl}) { push @h_srcs, $incl; }
614 elsif ($incl =~ /\.h$/) { push @h_srcs, $incl; }
615 elsif ($incl =~ /\.rh$/) { push @h_srcs, $incl; }
616 elsif ($incl =~ /\.inl$/) { push @h_srcs, $incl; }
617 elsif ($incl =~ /\.idl$/) { push @public_idl_srcs, $incl; }
618 else { die "unknown file $incl in include dir"; }
620 replace_in_file
( "include/Makefile.in", '^PRIVATE_IDL_H_SRCS\s*=', '^INSTALLDIRS',
621 "PRIVATE_IDL_H_SRCS = \\\n\t",
622 join( " \\\n\t", sort @private_idl_srcs ),
623 "\n\nPUBLIC_IDL_H_SRCS = \\\n\t",
624 join( " \\\n\t", sort @public_idl_srcs ),
625 "\n\nIDL_TLB_SRCS = \\\n\t",
626 join( " \\\n\t", sort @tlb_srcs ),
627 "\n\nSRCDIR_INCLUDES = \\\n\t\$(IDL_TLB_SRCS) \\\n\t\$(PUBLIC_IDL_H_SRCS) \\\n\t",
628 join( " \\\n\t", sort @h_srcs ),
629 "\n\nEXTRASUBDIRS = ",
630 join( " ", sort keys %subdirs ),
631 "\n\nINSTALLDIRS = \\\n" );
632 return map { s/(.*)\.idl$/include\/$1.h
/; $_; } @public_idl_srcs, @private_idl_srcs;
636 ################################################################
637 # update the main .gitignore
639 sub update_gitignore
(@
)
641 my @ignores = values %makerules;
643 foreach my $make (@makefiles)
645 my %makefile = %{$makefiles{$make}};
646 my $dir = $makefile{"=dir"};
647 if (defined $makefile{"MANPAGES"})
649 push @ignores, map { $dir . $_; } @
{$makefile{"MANPAGES"}};
651 if (defined $makefile{"PROGRAMS"})
653 push @ignores, map { s/\$\(EXEEXT\)//; $dir . $_; } @
{$makefile{"PROGRAMS"}};
657 # prepend a slash to paths that don't have one
658 @ignores = map { $_ =~ s/^([^\/]+)$/\
/$1/; $_; } @ignores;
660 # get rid of duplicates
662 foreach my $i (@ignores, @_) { $ignores{$i} = 1; }
664 replace_in_file
( ".gitignore", undef, undef,
665 "# Automatically generated by make_makefiles; DO NOT EDIT!!\n",
666 join("\n", sort keys %ignores), "\n" );
670 die "needs to be run from a git checkout" unless -d
".git";
672 @all_files = split /\0/, `git ls-files -c -z`;
673 @makefiles = map { my $ret = $_; $ret =~ s/\.in$//; $ret; } grep /Makefile.in$/, @all_files;
675 foreach my $file (sort values %makerules, @makefiles)
677 my %make = parse_makefile
( $file );
678 $makefiles{$file} = \
%make;
681 assign_sources_to_makefiles
();
682 update_makefiles
( @makefiles );
683 push @ignores, update_includes
();
684 push @ignores, update_ignores
( @makefiles );
685 push @ignores, update_dlls
( sort grep /^dlls\//, @makefiles );
686 update_gitignore
( @ignores );