urlmon: Fix return value from QueryService.
[wine.git] / tools / make_makefiles
blob4c0081438a677f84aa402ff76b38d1df7e702b67
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' ],
124 my %exported_wine_headers = (
125 "wine/debug.h" => 1,
126 "wine/exception.h" => 1,
127 "wine/library.h" => 1,
128 "wine/unicode.h" => 1,
129 "wine/itss.idl" => 1,
130 "wine/svcctl.idl" => 1,
133 my %private_idl_headers = (
134 "access.idl" => 1,
135 "asynot.idl" => 1,
136 "asysta.idl" => 1,
137 "axcore.idl" => 1,
138 "axextend.idl" => 1,
139 "binres.idl" => 1,
140 "cmdbas.idl" => 1,
141 "cmdtxt.idl" => 1,
142 "crtrow.idl" => 1,
143 "dbccmd.idl" => 1,
144 "dbcses.idl" => 1,
145 "dbdsad.idl" => 1,
146 "dbinit.idl" => 1,
147 "dbprop.idl" => 1,
148 "dbs.idl" => 1,
149 "devenum.idl" => 1,
150 "dyngraph.idl" => 1,
151 "opnrst.idl" => 1,
152 "row.idl" => 1,
153 "rowchg.idl" => 1,
154 "rstbas.idl" => 1,
155 "rstinf.idl" => 1,
156 "rstloc.idl" => 1,
157 "sesprp.idl" => 1,
158 "vmrender.idl" => 1,
159 "xmldom.idl" => 1,
160 "xmldso.idl" => 1,
161 "wine/wined3d.idl" => 1,
162 "wine/winedxgi.idl" => 1,
165 my %ignored_source_files = (
166 "dlls/wineps.drv/afm2c.c" => 1,
167 "dlls/wineps.drv/mkagl.c" => 1,
168 "programs/winetest/dist.rc" => 1,
171 my (@all_files, @makefiles, %makefiles);
173 sub dirname($)
175 my $ret = shift;
176 return "" unless $ret =~ /\//;
177 $ret =~ s!/[^/]*$!!;
178 return $ret;
181 # update a file if changed
182 sub update_file($)
184 my $file = shift;
185 my $ret = !(-f $file) || system "cmp $file $file.new >/dev/null";
186 if (!$ret)
188 unlink "$file.new";
190 else
192 rename "$file.new", "$file";
193 print "$file updated\n";
194 if ($file eq "configure.ac")
196 system "autoconf";
197 print "configure updated\n";
200 return $ret;
203 # replace some lines in a file between two markers
204 sub replace_in_file($$$@)
206 my $file = shift;
207 my $start = shift;
208 my $end = shift;
210 open NEW_FILE, ">$file.new" or die "cannot create $file.new";
212 if (defined($start))
214 open OLD_FILE, "$file" or die "cannot open $file";
215 while (<OLD_FILE>)
217 last if /$start/;
218 print NEW_FILE $_;
222 print NEW_FILE @_;
224 if (defined($end))
226 my $skip=1;
227 while (<OLD_FILE>)
229 print NEW_FILE $_ unless $skip;
230 $skip = 0 if /$end/;
234 close OLD_FILE if defined($start);
235 close NEW_FILE;
236 return update_file($file);
239 # replace a variable in a makefile
240 sub replace_makefile_variable($$)
242 my ($file, $var) = @_;
243 my $make = $makefiles{$file};
245 return unless defined ${$make}{"=$var"};
247 my @values = @{${$make}{"=$var"}};
248 ${$make}{$var} = \@values;
250 open NEW_FILE, ">$file.in.new" or die "cannot create $file.in.new";
252 open OLD_FILE, "$file.in" or die "cannot open $file.in";
253 while (<OLD_FILE>)
255 if (/^\s*($var\s+)=/)
257 # try to preserve formatting
258 my $prefix = $1;
259 my $multiline = /\\$/ || (@values > 1);
260 while (/\\$/)
262 $_ = <OLD_FILE>;
263 last unless $_;
265 if ($multiline)
267 print NEW_FILE "$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
269 else
271 print NEW_FILE "$prefix= @values\n";
273 next;
275 print NEW_FILE $_;
277 close OLD_FILE;
278 close NEW_FILE;
279 return update_file("$file.in");
282 # parse the specified makefile to identify the rules file
283 sub parse_makefile($)
285 my $file = shift;
286 my %make;
288 ($make{"=dir"} = $file) =~ s/[^\/]+$//;
290 open MAKE, "$file.in" or die "cannot open $file.in\n";
292 while (<MAKE>)
294 chomp;
295 next if (/^\s*#/);
296 while (/\\$/) { chop; $_ .= <MAKE>; chomp; } # merge continued lines
297 next if (/^\s*$/);
299 if (/^\@(MAKE.*RULES)\@/)
301 my $var = $1;
302 $make{"=rules"} = $makerules{$var};
303 next;
305 if (/^\s*(MODULE|IMPORTLIB|TESTDLL)\s*=\s*(.*)/)
307 $make{$1} = $2;
308 next;
310 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*(.*)/)
312 my @list = split(/\s+/, $2);
313 $make{$1} = \@list;
314 next;
316 if (/^\s*(TOPSRCDIR|TOPOBJDIR|SRCDIR|VPATH)\s*=\s*(.*)/)
318 die "Variable $1 in $file.in is obsolete";
321 return %make;
324 # assign source files to their respective makefile
325 sub assign_sources_to_makefiles()
327 foreach my $file (@all_files)
329 next if defined $ignored_source_files{$file};
330 my $dir = dirname( $file );
332 while ($dir && !defined $makefiles{"$dir/Makefile"}) { $dir = dirname( $dir ); }
333 next unless $dir;
335 die "no makefile found for $file\n" unless defined $makefiles{"$dir/Makefile"};
337 my $make = $makefiles{"$dir/Makefile"};
338 my $basename = substr( $file, length($dir) + 1 );
340 if ($basename =~ /\.c$/) { push @{${$make}{"=C_SRCS"}}, $basename; }
341 elsif ($basename =~ /\.l$/) { push @{${$make}{"=LEX_SRCS"}}, $basename; }
342 elsif ($basename =~ /\.y$/) { push @{${$make}{"=BISON_SRCS"}}, $basename; }
343 elsif ($basename =~ /\.rc$/) { push @{${$make}{"=RC_SRCS"}}, $basename; }
344 elsif ($basename =~ /\.mc$/) { push @{${$make}{"=MC_SRCS"}}, $basename; }
345 elsif ($basename =~ /\.svg$/) { push @{${$make}{"=SVG_SRCS"}}, $basename; }
349 ################################################################
350 # update the makefile list in configure.ac
352 sub update_makefiles(@)
354 my (@lines);
356 foreach my $var (sort { $makerules{$a} cmp $makerules{$b}; } keys %makerules)
358 my $file = $makerules{$var};
359 my %make = %{$makefiles{$file}};
360 my $rules = $make{"=rules"} ? ",[$make{\"=rules\"}]" : "";
361 push @lines, "WINE_CONFIG_MAKERULES([$file],[$var]$rules)\n";
363 push @lines, "\n";
365 foreach my $file (sort @_)
367 my %make = %{$makefiles{$file}};
368 my $rules = $make{"=rules"};
369 my $args = "";
370 my $is_win16 = $make{"MODULE"} && ($make{"MODULE"} =~ /16$/ || $modules16{$make{"MODULE"}});
371 if ($rules eq $makerules{"MAKE_DLL_RULES"})
373 (my $name = $file) =~ s/^dlls\/(.*)\/Makefile/$1/;
374 if ($name =~ /\./)
376 die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
378 else
380 die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.dll";
382 my $implib = $make{"IMPORTLIB"} || "";
383 my $implib_srcs = defined($make{"IMPLIB_SRCS"}) && join( " ", @{$make{"IMPLIB_SRCS"}} );
384 $args .= "," if $implib || $is_win16;
385 $args .= "enable_win16" if $is_win16;
386 $args .= ",[$implib]" if $implib;
387 $args .= ",[$implib_srcs]" if $implib_srcs;
388 push @lines, "WINE_CONFIG_DLL($name$args)\n";
390 elsif ($rules eq $makerules{"MAKE_PROG_RULES"})
392 (my $name = $file) =~ s/^programs\/(.*)\/Makefile/$1/;
393 if ($name =~ /\./)
395 die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
397 else
399 die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.exe";
401 my $install = $dont_install{$name} ? "" : "install";
402 $install .= "bin" if $bin_install{$name};
403 $args .= "," if $is_win16 || $install;
404 $args .= "$install" if $install;
405 $args .= ",enable_win16" if $is_win16;
406 push @lines, "WINE_CONFIG_PROGRAM($name$args)\n";
408 elsif ($rules eq $makerules{"MAKE_TEST_RULES"})
410 (my $dir = $file) =~ s/^(.*)\/Makefile/$1/;
411 push @lines, "WINE_CONFIG_TEST($dir)\n";
413 elsif ($rules eq $makerules{"MAKE_IMPLIB_RULES"})
415 (my $name = $file) =~ s/^dlls\/(.*)\/Makefile/$1/;
416 push @lines, "WINE_CONFIG_LIB($name)\n";
418 elsif ($file =~ /^tools.*\/Makefile$/)
420 (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
421 push @lines, "WINE_CONFIG_TOOL($name)\n";
423 elsif ($file =~ /\/Makefile$/)
425 (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
426 push @lines, "WINE_CONFIG_MAKEFILE([$name])\n";
430 # update the source variables in all the makefiles
432 foreach my $file (sort @_)
434 my %make = %{$makefiles{$file}};
436 replace_makefile_variable( $file, "LEX_SRCS" );
437 replace_makefile_variable( $file, "BISON_SRCS" );
438 replace_makefile_variable( $file, "MC_SRCS" );
439 replace_makefile_variable( $file, "SVG_SRCS" );
440 replace_makefile_variable( $file, "C_SRCS" );
441 replace_makefile_variable( $file, "RC_SRCS" );
444 push @lines, "dnl End of auto-generated output commands\n";
445 replace_in_file( "configure.ac", '^WINE_CONFIG_MAKERULES', '^dnl End of auto-generated output commands\n$', @lines);
449 ################################################################
450 # process ignore targets for generic source files
452 sub update_ignores(@)
454 my @ignores;
456 foreach my $file (sort @_)
458 my %makefile = %{$makefiles{$file}};
459 my @list;
461 foreach my $src (@ignore_srcs)
463 my @pattern = @{$src};
464 next unless defined $makefile{$pattern[0]};
465 push @list, map { (my $ret = $_) =~ s/$pattern[1]$/$pattern[2]/; $ret; } @{$makefile{$pattern[0]}};
467 foreach my $f (@list)
469 push @ignores, $makefile{"=dir"} . $f unless $f =~ /\$\(.*\)/; # skip make variables
472 if (defined $makefile{"IMPORTLIB"})
474 if ($makefile{"IMPORTLIB"} =~ /^([a-zA-Z0-9_.]+)/)
476 if ("dlls/$1/" ne $makefile{"=dir"}) { push @ignores, "dlls/lib$1.def"; }
478 else
480 die "invalid importlib name $makefile{IMPORTLIB} in $file";
484 return @ignores;
488 ################################################################
489 # update include/Makefile.in
491 sub update_includes()
493 my (@h_srcs, @private_idl_srcs, @public_idl_srcs, @tlb_srcs, %subdirs);
494 my @includes = map { (my $ret = $_) =~ s/^include\///; $ret; } grep /^include\//, @all_files;
495 foreach my $incl (@includes)
497 if ($incl =~ /(.*)\//) { $subdirs{$1} = 1; }
498 next if ($incl =~ /\.in$/);
499 if ($incl =~ /^wine\// && !$exported_wine_headers{$incl})
501 if ($private_idl_headers{$incl}) { push @private_idl_srcs, $incl; }
502 next;
504 if ($incl =~ /stdole2\.idl$/) { push @tlb_srcs, $incl; }
505 elsif ($private_idl_headers{$incl}) { push @h_srcs, $incl; }
506 elsif ($incl =~ /\.h$/) { push @h_srcs, $incl; }
507 elsif ($incl =~ /\.rh$/) { push @h_srcs, $incl; }
508 elsif ($incl =~ /\.inl$/) { push @h_srcs, $incl; }
509 elsif ($incl =~ /\.idl$/) { push @public_idl_srcs, $incl; }
510 else { die "unknown file $incl in include dir"; }
512 replace_in_file( "include/Makefile.in", '^PRIVATE_IDL_H_SRCS\s*=', '^INSTALLDIRS',
513 "PRIVATE_IDL_H_SRCS = \\\n\t",
514 join( " \\\n\t", sort @private_idl_srcs ),
515 "\n\nPUBLIC_IDL_H_SRCS = \\\n\t",
516 join( " \\\n\t", sort @public_idl_srcs ),
517 "\n\nIDL_TLB_SRCS = \\\n\t",
518 join( " \\\n\t", sort @tlb_srcs ),
519 "\n\nSRCDIR_INCLUDES = \\\n\t\$(IDL_TLB_SRCS) \\\n\t\$(PUBLIC_IDL_H_SRCS) \\\n\t",
520 join( " \\\n\t", sort @h_srcs ),
521 "\n\nEXTRASUBDIRS = ",
522 join( " ", sort keys %subdirs ),
523 "\n\nINSTALLDIRS = \\\n" );
524 return map { s/(.*)\.idl$/include\/$1.h/; $_; } @public_idl_srcs, @private_idl_srcs;
528 ################################################################
529 # update the main .gitignore
531 sub update_gitignore(@)
533 my @ignores = values %makerules;
535 foreach my $make (@makefiles)
537 my %makefile = %{$makefiles{$make}};
538 my $dir = $makefile{"=dir"};
539 if (defined $makefile{"PROGRAMS"})
541 push @ignores, map { s/\$\(EXEEXT\)//; $dir . $_; } @{$makefile{"PROGRAMS"}};
545 # prepend a slash to paths that don't have one
546 @ignores = map { $_ =~ s/^([^\/]+)$/\/$1/; $_; } @ignores;
548 # get rid of duplicates
549 my %ignores = ();
550 foreach my $i (@ignores, @_) { $ignores{$i} = 1; }
552 replace_in_file( ".gitignore", undef, undef,
553 "# Automatically generated by make_makefiles; DO NOT EDIT!!\n",
554 join("\n", sort keys %ignores), "\n" );
558 die "needs to be run from a git checkout" unless -d ".git";
560 @all_files = split /\0/, `git ls-files -c -z`;
561 @makefiles = map { my $ret = $_; $ret =~ s/\.in$//; $ret; } grep /Makefile.in$/, @all_files;
563 foreach my $file (sort values %makerules, @makefiles)
565 my %make = parse_makefile( $file );
566 $makefiles{$file} = \%make;
569 assign_sources_to_makefiles();
570 update_makefiles( @makefiles );
571 push @ignores, update_includes();
572 push @ignores, update_ignores( @makefiles );
573 update_gitignore( @ignores );