makefiles: Automatically update the EXTRASUBDIRS variable in make_makefiles.
[wine.git] / tools / make_makefiles
blobbee12f8ee7fb3e279fee0d05fab97f957cc02c6d
1 #!/usr/bin/perl -w
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
22 use strict;
24 # Make rules files
25 my %makerules =
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
35 my %bin_install =
37 "msiexec" => 1,
38 "notepad" => 1,
39 "regedit" => 1,
40 "regsvr32" => 1,
41 "wineboot" => 1,
42 "winecfg" => 1,
43 "wineconsole" => 1,
44 "winedbg" => 1,
45 "winefile" => 1,
46 "winemine" => 1,
47 "winepath" => 1,
50 # Programs that we don't want to install at all
51 my %dont_install =
53 "cmdlgtst" => 1,
54 "view" => 1,
55 "winetest" => 1,
58 # Dlls and programs that are 16-bit specific
59 my %modules16 =
61 "ifsmgr.vxd" => 1,
62 "mmdevldr.vxd" => 1,
63 "monodebg.vxd" => 1,
64 "vdhcp.vxd" => 1,
65 "vmm.vxd" => 1,
66 "vnbt.vxd" => 1,
67 "vnetbios.vxd" => 1,
68 "vtdapi.vxd" => 1,
69 "vwin32.vxd" => 1,
70 "w32skrnl.dll" => 1,
71 "winevdm.exe" => 1,
72 "wow32.dll" => 1,
75 # Default patterns for top-level .gitignore
76 my @ignores = (
77 "*.[oa]",
78 "*.fake",
79 "*.man",
80 "*.ok",
81 "*.res",
82 "*.so",
83 "/autom4te.cache",
84 "/config.cache",
85 "/config.log",
86 "/config.status",
87 "/configure.lineno",
88 "/TAGS",
89 "/tags",
90 "/wine",
91 "Makefile",
92 "dlldata.c",
93 "dlls/*/*.def",
94 "dlls/shell32/AUTHORS",
95 "*/*/tests/*crosstest.exe",
96 "*/*/tests/testlist.c",
97 "include/config.h",
98 "include/stamp-h",
99 "programs/winetest/*_test.exe",
100 "programs/winetest/*_test.rc",
101 "programs/winetest/build.nfo",
102 "programs/winetest/build.rc",
103 "tools/makedep",
106 # Source files and their resulting target to ignore
107 my @ignore_srcs = (
108 [ 'BISON_SRCS', '\.y', '.tab.c' ],
109 [ 'BISON_SRCS', '\.y', '.tab.h' ],
110 [ 'LEX_SRCS', '\.l', '.yy.c' ],
111 [ 'MC_SRCS', '\.mc', '.mc.rc' ],
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' ],
126 my %exported_wine_headers = (
127 "wine/debug.h" => 1,
128 "wine/exception.h" => 1,
129 "wine/library.h" => 1,
130 "wine/unicode.h" => 1,
131 "wine/itss.idl" => 1,
132 "wine/svcctl.idl" => 1,
135 my %private_idl_headers = (
136 "access.idl" => 1,
137 "asynot.idl" => 1,
138 "asysta.idl" => 1,
139 "axcore.idl" => 1,
140 "axextend.idl" => 1,
141 "binres.idl" => 1,
142 "cmdbas.idl" => 1,
143 "cmdtxt.idl" => 1,
144 "crtrow.idl" => 1,
145 "dbccmd.idl" => 1,
146 "dbcses.idl" => 1,
147 "dbdsad.idl" => 1,
148 "dbinit.idl" => 1,
149 "dbprop.idl" => 1,
150 "dbs.idl" => 1,
151 "devenum.idl" => 1,
152 "dyngraph.idl" => 1,
153 "opnrst.idl" => 1,
154 "row.idl" => 1,
155 "rowchg.idl" => 1,
156 "rstbas.idl" => 1,
157 "rstinf.idl" => 1,
158 "rstloc.idl" => 1,
159 "sesprp.idl" => 1,
160 "vmrender.idl" => 1,
161 "xmldom.idl" => 1,
162 "xmldso.idl" => 1,
163 "wine/wined3d.idl" => 1,
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 (@makefiles, %makefiles);
175 sub dirname($)
177 my $ret = shift;
178 return "" unless $ret =~ /\//;
179 $ret =~ s!/[^/]*$!!;
180 return $ret;
183 # update a file if changed
184 sub update_file($)
186 my $file = shift;
187 my $ret = !(-f $file) || system "cmp $file $file.new >/dev/null";
188 if (!$ret)
190 unlink "$file.new";
192 else
194 rename "$file.new", "$file";
195 print "$file updated\n";
196 if ($file eq "configure.ac")
198 system "autoconf";
199 print "configure updated\n";
202 return $ret;
205 # replace some lines in a file between two markers
206 sub replace_in_file($$$@)
208 my $file = shift;
209 my $start = shift;
210 my $end = shift;
212 open NEW_FILE, ">$file.new" or die "cannot create $file.new";
214 if (defined($start))
216 open OLD_FILE, "$file" or die "cannot open $file";
217 while (<OLD_FILE>)
219 last if /$start/;
220 print NEW_FILE $_;
224 print NEW_FILE @_;
226 if (defined($end))
228 my $skip=1;
229 while (<OLD_FILE>)
231 print NEW_FILE $_ unless $skip;
232 $skip = 0 if /$end/;
236 close OLD_FILE if defined($start);
237 close NEW_FILE;
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};
246 my $replaced = 0;
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";
256 while (<OLD_FILE>)
258 if (/^\s*($var\s*)=/)
260 # try to preserve formatting
261 my $prefix = $1;
262 my $multiline = /\\$/ || (@values > 1);
263 while (/\\$/)
265 $_ = <OLD_FILE>;
266 last unless $_;
268 if ($multiline)
270 print NEW_FILE "$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
272 else
274 print NEW_FILE "$prefix= @values\n";
276 $replaced = 1;
277 next;
279 if (/^\@MAKE/ && !$replaced)
281 print NEW_FILE "$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
283 print NEW_FILE $_;
285 close OLD_FILE;
286 close NEW_FILE;
287 return update_file("$file.in");
290 # parse the specified makefile and load the variables
291 sub parse_makefile($)
293 my $file = shift;
294 my %make;
296 ($make{"=dir"} = $file) =~ s/[^\/]+$//;
298 open MAKE, "$file.in" or die "cannot open $file.in\n";
300 while (<MAKE>)
302 chomp;
303 next if (/^\s*#/);
304 while (/\\$/) { chop; $_ .= <MAKE>; chomp; } # merge continued lines
305 next if (/^\s*$/);
307 if (/^\@(MAKE.*RULES)\@/)
309 my $var = $1;
310 $make{"=rules"} = $makerules{$var};
311 next;
313 if (/^\s*(MODULE|IMPORTLIB|TESTDLL)\s*=\s*(.*)/)
315 $make{$1} = $2;
316 next;
318 if (/^\s*(BISON_SRCS|LEX_SRCS|IDL_[CHIPRS]_SRCS|IDL_TLB_SRCS|IMPLIB_SRCS|C_SRCS|MC_SRCS|RC_SRCS|SVG_SRCS|PROGRAMS)\s*=\s*(.*)/)
320 my @list = split(/\s+/, $2);
321 $make{$1} = \@list;
322 next;
324 if (/^\s*(TOPSRCDIR|TOPOBJDIR|SRCDIR|VPATH)\s*=\s*(.*)/)
326 die "Variable $1 in $file.in is obsolete";
329 return %make;
332 # assign source files to their respective makefile
333 sub assign_sources_to_makefiles(@)
335 my %subdirs;
337 foreach my $file (@_)
339 next if defined $ignored_source_files{$file};
340 my $dir = dirname( $file );
341 my $subdir = $dir;
343 while ($dir && !defined $makefiles{"$dir/Makefile"}) { $dir = dirname( $dir ); }
344 $subdir =~ s/^$dir\/?//;
345 $subdirs{"$dir/ $subdir"} = 1 if $subdir;
346 next unless $dir;
348 die "no makefile found for $file\n" unless defined $makefiles{"$dir/Makefile"};
350 my $make = $makefiles{"$dir/Makefile"};
351 my $name = substr( $file, length($dir) + 1 );
353 if ($dir eq "include")
355 next if ($name =~ /\.in$/);
356 if ($name =~ /^wine\// && !$exported_wine_headers{$name})
358 if ($private_idl_headers{$name}) { push @{${$make}{"=PRIVATE_IDL_H_SRCS"}}, $name; }
359 next;
361 if ($name =~ /stdole2\.idl$/) { push @{${$make}{"=IDL_TLB_SRCS"}}, $name; }
362 elsif ($private_idl_headers{$name}) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
363 elsif ($name =~ /\.h$/) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
364 elsif ($name =~ /\.rh$/) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
365 elsif ($name =~ /\.inl$/) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
366 elsif ($name =~ /\.idl$/) { push @{${$make}{"=PUBLIC_IDL_H_SRCS"}}, $name; }
367 else { die "unknown file $name in include dir"; }
369 else
371 if ($name =~ /\.c$/) { push @{${$make}{"=C_SRCS"}}, $name; }
372 elsif ($name =~ /\.l$/) { push @{${$make}{"=LEX_SRCS"}}, $name; }
373 elsif ($name =~ /\.y$/) { push @{${$make}{"=BISON_SRCS"}}, $name; }
374 elsif ($name =~ /\.rc$/) { push @{${$make}{"=RC_SRCS"}}, $name; }
375 elsif ($name =~ /\.mc$/) { push @{${$make}{"=MC_SRCS"}}, $name; }
376 elsif ($name =~ /\.svg$/) { push @{${$make}{"=SVG_SRCS"}}, $name; }
379 foreach my $key (keys %subdirs)
381 my ($dir, $subdir) = split " ", $key;
382 if ($dir eq "/") { $dir = ""; }
383 push @{${$makefiles{"${dir}Makefile"}}{"=EXTRASUBDIRS"}}, $subdir;
386 # add extra variables to include source list
387 my $make = $makefiles{"include/Makefile"};
388 unshift @{${$make}{"=SRCDIR_INCLUDES"}}, "\$(PUBLIC_IDL_H_SRCS)";
389 unshift @{${$make}{"=SRCDIR_INCLUDES"}}, "\$(IDL_TLB_SRCS)";
392 ################################################################
393 # update the makefile list in configure.ac
395 sub update_makefiles(@)
397 my (@lines);
399 foreach my $var (sort { $makerules{$a} cmp $makerules{$b}; } keys %makerules)
401 my $file = $makerules{$var};
402 my %make = %{$makefiles{$file}};
403 my $rules = $make{"=rules"} ? ",[$make{\"=rules\"}]" : "";
404 push @lines, "WINE_CONFIG_MAKERULES([$file],[$var]$rules)\n";
406 push @lines, "\n";
408 foreach my $file (sort @_)
410 my %make = %{$makefiles{$file}};
411 my $rules = $make{"=rules"};
412 my $args = "";
413 my @flags;
414 my $is_win16 = $make{"MODULE"} && ($make{"MODULE"} =~ /16$/ || $modules16{$make{"MODULE"}});
415 if ($rules eq $makerules{"MAKE_DLL_RULES"})
417 (my $name = $file) =~ s/^dlls\/(.*)\/Makefile/$1/;
418 if ($name =~ /\./)
420 die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
422 else
424 die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.dll";
426 my $implib = $make{"IMPORTLIB"} || "";
427 push @flags, "implib" if $implib;
428 push @flags, "staticimplib" if defined($make{"IMPLIB_SRCS"});
429 $args .= "," if $is_win16 || @flags;
430 $args .= "enable_win16" if $is_win16;
431 $args .= ",[" . join(",",@flags) ."]" if @flags;
432 $args .= ",[$implib]" if $implib && $implib ne $name;
433 push @lines, "WINE_CONFIG_DLL($name$args)\n";
435 elsif ($rules eq $makerules{"MAKE_PROG_RULES"})
437 (my $name = $file) =~ s/^programs\/(.*)\/Makefile/$1/;
438 if ($name =~ /\./)
440 die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
442 else
444 die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.exe";
446 push @flags, "install" unless $dont_install{$name};
447 push @flags, "installbin" if $bin_install{$name};
448 $args .= "," if $is_win16 || @flags;
449 $args .= "enable_win16" if $is_win16;
450 $args .= ",[" . join(",",@flags) ."]" if @flags;
451 push @lines, "WINE_CONFIG_PROGRAM($name$args)\n";
453 elsif ($rules eq $makerules{"MAKE_TEST_RULES"})
455 (my $dir = $file) =~ s/^(.*)\/Makefile/$1/;
456 push @lines, "WINE_CONFIG_TEST($dir)\n";
458 elsif ($rules eq $makerules{"MAKE_IMPLIB_RULES"})
460 (my $name = $file) =~ s/^dlls\/(.*)\/Makefile/$1/;
461 push @lines, "WINE_CONFIG_LIB($name)\n";
463 elsif ($file =~ /^tools.*\/Makefile$/)
465 (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
466 push @lines, "WINE_CONFIG_TOOL($name)\n";
468 elsif ($file =~ /\/Makefile$/)
470 (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
471 push @lines, "WINE_CONFIG_MAKEFILE([$name])\n";
475 # update the source variables in all the makefiles
477 foreach my $file (sort @_)
479 replace_makefile_variable( $file, "LEX_SRCS" );
480 replace_makefile_variable( $file, "BISON_SRCS" );
481 replace_makefile_variable( $file, "MC_SRCS" );
482 replace_makefile_variable( $file, "SVG_SRCS" );
483 replace_makefile_variable( $file, "C_SRCS" );
484 replace_makefile_variable( $file, "RC_SRCS" );
485 replace_makefile_variable( $file, "PRIVATE_IDL_H_SRCS" );
486 replace_makefile_variable( $file, "PUBLIC_IDL_H_SRCS" );
487 replace_makefile_variable( $file, "IDL_TLB_SRCS" );
488 replace_makefile_variable( $file, "SRCDIR_INCLUDES" );
489 replace_makefile_variable( $file, "EXTRASUBDIRS" );
492 push @lines, "dnl End of auto-generated output commands\n";
493 replace_in_file( "configure.ac", '^WINE_CONFIG_MAKERULES', '^dnl End of auto-generated output commands\n$', @lines);
497 ################################################################
498 # process ignore targets for generic source files
500 sub update_ignores(@)
502 my @ignores;
504 foreach my $file (sort @_)
506 my %makefile = %{$makefiles{$file}};
507 my @list;
509 foreach my $src (@ignore_srcs)
511 my @pattern = @{$src};
512 next unless defined $makefile{$pattern[0]};
513 push @list, map { (my $ret = $_) =~ s/$pattern[1]$/$pattern[2]/; $ret; } @{$makefile{$pattern[0]}};
515 foreach my $f (@list)
517 push @ignores, $makefile{"=dir"} . $f unless $f =~ /\$\(.*\)/; # skip make variables
520 if (defined $makefile{"IMPORTLIB"})
522 if ($makefile{"IMPORTLIB"} =~ /^([a-zA-Z0-9_.]+)/)
524 if ("dlls/$1/" ne $makefile{"=dir"}) { push @ignores, "dlls/lib$1.def"; }
526 else
528 die "invalid importlib name $makefile{IMPORTLIB} in $file";
532 return @ignores;
536 ################################################################
537 # update the main .gitignore
539 sub update_gitignore(@)
541 my @ignores = values %makerules;
543 foreach my $make (@makefiles)
545 my %makefile = %{$makefiles{$make}};
546 my $dir = $makefile{"=dir"};
547 if (defined $makefile{"PROGRAMS"})
549 push @ignores, map { s/\$\(EXEEXT\)//; $dir . $_; } @{$makefile{"PROGRAMS"}};
553 # prepend a slash to paths that don't have one
554 @ignores = map { $_ =~ s/^([^\/]+)$/\/$1/; $_; } @ignores;
556 # get rid of duplicates
557 my %ignores = ();
558 foreach my $i (@ignores, @_) { $ignores{$i} = 1; }
560 replace_in_file( ".gitignore", undef, undef,
561 "# Automatically generated by make_makefiles; DO NOT EDIT!!\n",
562 join("\n", sort keys %ignores), "\n" );
566 die "needs to be run from a git checkout" unless -d ".git";
568 my @all_files = split /\0/, `git ls-files -c -z`;
569 @makefiles = map { my $ret = $_; $ret =~ s/\.in$//; $ret; } grep /Makefile.in$/, @all_files;
571 foreach my $file (sort values %makerules, @makefiles)
573 my %make = parse_makefile( $file );
574 $makefiles{$file} = \%make;
577 assign_sources_to_makefiles( @all_files );
578 update_makefiles( @makefiles );
579 push @ignores, update_ignores( @makefiles );
580 update_gitignore( @ignores );