include: Add binres.idl.
[wine] / tools / make_makefiles
1 #!/usr/bin/perl -w
2 #
3 # Build the auto-generated parts of the Wine makefiles.
4 #
5 # Copyright 2006 Alexandre Julliard
6 #
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.
11 #
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.
16 #
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
20 #
21
22 use strict;
23
24 # Make rules files
25 my %makerules =
26 (
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",
32 );
33
34 # Programs that we want to install in the bin directory too
35 my %bin_install =
36 (
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,
48 );
49
50 # Programs that we don't want to install at all
51 my %dont_install =
52 (
53   "cmdlgtst" => 1,
54   "view" => 1,
55   "winetest" => 1,
56 );
57
58 # Default patterns for top-level .gitignore
59 my @ignores = (
60     "*.[oa]",
61     "*.ok",
62     "*.res",
63     "*.so",
64     "/autom4te.cache",
65     "/config.cache",
66     "/config.log",
67     "/config.status",
68     "/TAGS",
69     "/tags",
70     "Makefile",
71     "dlldata.c",
72     "dlls/*/*.def",
73     "dlls/*/tests/*crosstest.exe",
74     "dlls/*/tests/testlist.c",
75     "include/config.h",
76     "include/stamp-h",
77     "programs/winetest/*_test.exe",
78     "programs/winetest/*_test.rc",
79     "programs/winetest/build.rc",
80 );
81
82 # Source files and their resulting target to ignore
83 my @ignore_srcs = (
84     [ 'BISON_SRCS',   '\.y',   '.tab.c' ],
85     [ 'BISON_SRCS',   '\.y',   '.tab.h' ],
86     [ 'LEX_SRCS',     '\.l',   '.yy.c' ],
87     [ 'MC_SRCS',      '\.mc',  '.mc.rc' ],
88     [ 'IDL_TLB_SRCS', '\.idl', '.tlb' ],
89     [ 'IDL_H_SRCS',   '\.idl', '.h' ],
90     [ 'IDL_C_SRCS',   '\.idl', '.h' ],
91     [ 'IDL_I_SRCS',   '\.idl', '.h' ],
92     [ 'IDL_P_SRCS',   '\.idl', '.h' ],
93     [ 'IDL_S_SRCS',   '\.idl', '.h' ],
94     [ 'IDL_C_SRCS',   '\.idl', '_c.c' ],
95     [ 'IDL_I_SRCS',   '\.idl', '_i.c' ],
96     [ 'IDL_P_SRCS',   '\.idl', '_p.c' ],
97     [ 'IDL_S_SRCS',   '\.idl', '_s.c' ],
98 );
99
100 my %exported_wine_headers = (
101     "wine/debug.h" => 1,
102     "wine/exception.h" => 1,
103     "wine/library.h" => 1,
104     "wine/unicode.h" => 1,
105     "wine/itss.idl" => 1,
106     "wine/svcctl.idl" => 1,
107 );
108
109 my %private_idl_headers = (
110     "axcore.idl" => 1,
111     "axextend.idl" => 1,
112     "binres.idl" => 1,
113     "dbccmd.idl" => 1,
114     "dbcses.idl" => 1,
115     "dbdsad.idl" => 1,
116     "dbinit.idl" => 1,
117     "dbprop.idl" => 1,
118     "dbs.idl" => 1,
119     "devenum.idl" => 1,
120     "dyngraph.idl" => 1,
121     "opnrst.idl" => 1,
122     "sesprp.idl" => 1,
123     "vmrender.idl" => 1,
124     "wine/wined3d.idl" => 1,
125     "wine/winedxgi.idl" => 1,
126 );
127
128 my %ignored_source_files = (
129     "dlls/wineps.drv/afm2c.c" => 1,
130     "dlls/wineps.drv/mkagl.c" => 1,
131     "programs/winetest/dist.rc" => 1,
132 );
133
134 my (@all_files, @makefiles, %makefiles);
135
136 sub dirname($)
137 {
138     my $ret = shift;
139     return "" unless $ret =~ /\//;
140     $ret =~ s!/[^/]*$!!;
141     return $ret;
142 }
143
144 # update a file if changed
145 sub update_file($)
146 {
147     my $file = shift;
148     my $ret = !(-f $file) || system "cmp $file $file.new >/dev/null";
149     if (!$ret)
150     {
151         unlink "$file.new";
152     }
153     else
154     {
155         rename "$file.new", "$file";
156         print "$file updated\n";
157         if ($file eq "configure.ac")
158         {
159             system "autoconf";
160             print "configure updated\n";
161         }
162     }
163     return $ret;
164 }
165
166 # replace some lines in a file between two markers
167 sub replace_in_file($$$@)
168 {
169     my $file = shift;
170     my $start = shift;
171     my $end = shift;
172
173     open NEW_FILE, ">$file.new" or die "cannot create $file.new";
174
175     if (defined($start))
176     {
177         open OLD_FILE, "$file" or die "cannot open $file";
178         while (<OLD_FILE>)
179         {
180             last if /$start/;
181             print NEW_FILE $_;
182         }
183     }
184
185     print NEW_FILE @_;
186
187     if (defined($end))
188     {
189         my $skip=1;
190         while (<OLD_FILE>)
191         {
192             print NEW_FILE $_ unless $skip;
193             $skip = 0 if /$end/;
194         }
195     }
196
197     close OLD_FILE if defined($start);
198     close NEW_FILE;
199     return update_file($file);
200 }
201
202 # replace a variable in a makefile
203 sub replace_makefile_variable($$)
204 {
205     my ($file, $var) = @_;
206     my $make = $makefiles{$file};
207
208     return unless defined ${$make}{"=$var"};
209
210     my @values = @{${$make}{"=$var"}};
211     ${$make}{$var} = \@values;
212
213     open NEW_FILE, ">$file.in.new" or die "cannot create $file.in.new";
214
215     open OLD_FILE, "$file.in" or die "cannot open $file.in";
216     while (<OLD_FILE>)
217     {
218         if (/^\s*($var\s+)=/)
219         {
220             # try to preserve formatting
221             my $prefix = $1;
222             my $multiline = /\\$/ || (@values > 1);
223             while (/\\$/)
224             {
225                 $_ = <OLD_FILE>;
226                 last unless $_;
227             }
228             if ($multiline)
229             {
230                 print NEW_FILE "$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
231             }
232             else
233             {
234                 print NEW_FILE "$prefix= @values\n";
235             }
236             next;
237         }
238         print NEW_FILE $_;
239     }
240     close OLD_FILE;
241     close NEW_FILE;
242     return update_file("$file.in");
243 }
244
245 # parse the specified makefile to identify the rules file
246 sub parse_makefile($)
247 {
248     my $file = shift;
249     my %make;
250
251     ($make{"=dir"} = $file) =~ s/[^\/]+$//;
252
253     open MAKE, "$file.in" or die "cannot open $file.in\n";
254
255     while (<MAKE>)
256     {
257         chomp;
258         next if (/^\s*#/);
259         while (/\\$/) { chop; $_ .= <MAKE>; chomp; }  # merge continued lines
260         next if (/^\s*$/);
261
262         if (/^\@(MAKE.*RULES)\@/)
263         {
264             my $var = $1;
265             $make{"=rules"} = $makerules{$var};
266             next;
267         }
268         if (/^\s*(MODULE|IMPORTLIB|TESTDLL)\s*=\s*(.*)/)
269         {
270             $make{$1} = $2;
271             next;
272         }
273         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*(.*)/)
274         {
275             my @list = split(/\s+/, $2);
276             $make{$1} = \@list;
277             next;
278         }
279     }
280     return %make;
281 }
282
283 # assign source files to their respective makefile
284 sub assign_sources_to_makefiles()
285 {
286     foreach my $file (@all_files)
287     {
288         next if defined $ignored_source_files{$file};
289         my $dir = dirname( $file );
290
291         while ($dir && !defined $makefiles{"$dir/Makefile"}) { $dir = dirname( $dir ); }
292         next unless $dir;
293
294         die "no makefile found for $file\n" unless defined $makefiles{"$dir/Makefile"};
295
296         my $make = $makefiles{"$dir/Makefile"};
297         my $basename = substr( $file, length($dir) + 1 );
298
299         if ($basename =~ /\.c$/) { push @{${$make}{"=C_SRCS"}}, $basename; }
300         elsif ($basename =~ /\.l$/) { push @{${$make}{"=LEX_SRCS"}}, $basename; }
301         elsif ($basename =~ /\.y$/) { push @{${$make}{"=BISON_SRCS"}}, $basename; }
302         elsif ($basename =~ /\.rc$/) { push @{${$make}{"=RC_SRCS"}}, $basename; }
303         elsif ($basename =~ /\.rc$/) { push @{${$make}{"=RC_SRCS"}}, $basename; }
304         elsif ($basename =~ /\.svg$/) { push @{${$make}{"=SVG_SRCS"}}, $basename; }
305     }
306 }
307
308 ################################################################
309 # update the makefile list in configure.ac
310
311 sub update_makefiles(@)
312 {
313     my (@lines);
314
315     foreach my $var (sort { $makerules{$a} cmp $makerules{$b}; } keys %makerules)
316     {
317         my $file = $makerules{$var};
318         my %make = %{$makefiles{$file}};
319         my $rules = $make{"=rules"} ? ",[$make{\"=rules\"}]" : "";
320         push @lines, "WINE_CONFIG_MAKERULES([$file],[$var]$rules)\n";
321     }
322     push @lines, "\n";
323
324     foreach my $file (sort @_)
325     {
326         my %make = %{$makefiles{$file}};
327         my $rules = $make{"=rules"};
328         my $args = "";
329         if ($rules eq $makerules{"MAKE_DLL_RULES"})
330         {
331             $args = ",[dlls],[ALL_DLL_DIRS]";
332             $args .= ",[enable_win16]" if $make{"MODULE"} =~ /(16|\.vxd)$/;
333         }
334         elsif ($rules eq $makerules{"MAKE_IMPLIB_RULES"}) { $args = ",[dlls],[ALL_IMPLIB_DIRS]"; }
335         elsif ($rules eq $makerules{"MAKE_TEST_RULES"}) { $args = ",[dlls],[ALL_TEST_DIRS],[enable_tests]"; }
336         elsif ($rules eq $makerules{"MAKE_PROG_RULES"})
337         {
338             (my $name = $file) =~ s/^programs\/(.*)\/Makefile/$1/;
339             $args = ",[programs],[ALL_PROGRAM_DIRS";
340             $args .= ",ALL_PROGRAM_INSTALL_DIRS" unless $dont_install{$name};
341             $args .= ",ALL_PROGRAM_BIN_INSTALL_DIRS" if $bin_install{$name};
342             $args .= "]";
343             $args .= ",[enable_win16]" if $make{"MODULE"} =~ /16$/;
344         }
345         elsif ($file =~ /^[^\/]*\/Makefile$/) { $args = ",[],[ALL_TOP_DIRS]"; }
346         push @lines, "WINE_CONFIG_MAKEFILE([$file],[$rules]$args)\n";
347     }
348
349     # update the source variables in all the makefiles
350
351     foreach my $file (sort @_)
352     {
353         my %make = %{$makefiles{$file}};
354
355         replace_makefile_variable( $file, "LEX_SRCS" );
356         replace_makefile_variable( $file, "BISON_SRCS" );
357         replace_makefile_variable( $file, "MC_SRCS" );
358         replace_makefile_variable( $file, "SVG_SRCS" );
359         replace_makefile_variable( $file, "C_SRCS" ) unless defined $make{"C_SRCS16"};
360         replace_makefile_variable( $file, "RC_SRCS" ) unless defined $make{"RC_SRCS16"};
361     }
362
363     push @lines, "\ndnl Build dependencies for test files compiled into winetest\n";
364     replace_in_file( "configure.ac", '^WINE_CONFIG_MAKERULES', '^dnl Build dependencies for test files compiled into winetest$', @lines);
365 }
366
367
368 ################################################################
369 # process ignore targets for generic source files
370
371 sub update_ignores(@)
372 {
373     my @ignores;
374
375     foreach my $file (sort @_)
376     {
377         my %makefile = %{$makefiles{$file}};
378         my @list;
379
380         foreach my $src (@ignore_srcs)
381         {
382             my @pattern = @{$src};
383             next unless defined $makefile{$pattern[0]};
384             push @list, map { (my $ret = $_) =~ s/$pattern[1]$/$pattern[2]/; $ret; } @{$makefile{$pattern[0]}};
385         }
386         foreach my $f (@list)
387         {
388             push @ignores, $makefile{"=dir"} . $f unless $f =~ /\$\(.*\)/;  # skip make variables
389         }
390     }
391     return @ignores;
392 }
393
394 ################################################################
395 # update dlls/Makefile.in
396
397 sub update_dlls(@)
398 {
399     my (%directories, %importlibs, %static_implibs, %staticlib_dirs, %altnames);
400     my $text = "";
401     my @ignores = ();
402
403     foreach my $make (@_)
404     {
405         my %makefile = %{$makefiles{$make}};
406         next if ($makefile{"=rules"} eq $makerules{"MAKE_TEST_RULES"});
407
408         next unless defined $makefile{"MODULE"};
409         my $module = $makefile{"MODULE"};
410         (my $dir = $makefile{"=dir"}) =~ s/^dlls\/(.*)\//$1/;
411
412         if ($makefile{"=rules"} eq $makerules{"MAKE_IMPLIB_RULES"})
413         {
414             $staticlib_dirs{$module} = $dir;
415             die "invalid module $module in dir $staticlib_dirs{$module}\n" if "$staticlib_dirs{$module}" ne $module;
416         }
417         else
418         {
419             die "invalid module $module" unless $module =~ /\./;
420             (my $mod = $module) =~ s/\.dll$//;
421             die "invalid directory $dir for module $module\n" unless $mod eq $dir;
422             $directories{$module} = $dir;
423         }
424
425         if (defined $makefile{"IMPORTLIB"})
426         {
427             if ($makefile{"IMPORTLIB"} =~ /^([a-zA-Z0-9_.]+)/)
428             {
429                 $importlibs{$module} = $1;
430             }
431             else
432             {
433                 die "invalid importlib name $makefile{IMPORTLIB} in $make";
434             }
435         }
436
437         $static_implibs{$module} = 1 if defined $makefile{"IMPLIB_SRCS"};
438
439         if (defined $makefile{"SPEC_SRCS16"})
440         {
441             my @list = map { $_ =~ s/\.spec$//; $_ .= ".dll" unless $_ =~ /\./; $_; } @{$makefile{"SPEC_SRCS16"}};
442             $altnames{$module} = \@list;
443         }
444         if (defined $makefile{"EXTRA_OBJS16"})
445         {
446             foreach my $obj (@{$makefile{"EXTRA_OBJS16"}})
447             {
448                 if ($obj =~ /^(.*\.(exe|mod))\.o/) { push @{$altnames{$module}}, $1; }
449             }
450         }
451     }
452
453     # output the list of 16-bit files
454
455     my @targets16 = ();
456     foreach my $mod (sort keys %directories)
457     {
458         next unless defined $altnames{$mod};
459         foreach my $i (sort @{$altnames{$mod}})
460         {
461             push @targets16, $i . "16";
462         }
463     }
464     $text .= "# 16-bit dlls\n\n";
465     $text .= "WIN16_FILES = \\\n";
466     $text .=  "\t" . join( " \\\n\t", sort @targets16 ) . "\n\n";
467     $text .= "\@MAKE_RULES\@\n\n";
468
469     # output the all: target
470
471     $text .= "# Main target\n\n";
472     $text .= "all: \$(BUILDSUBDIRS) \@WIN16_FILES\@\n\n";
473
474     # output the lib name -> directory rules
475
476     $text .= "# Placeholders for 16-bit libraries\n\n";
477     foreach my $mod (sort keys %directories)
478     {
479         next unless defined $altnames{$mod};
480         $text .= sprintf "%s:\n", join(" ", map { $_ . "16"; } sort @{$altnames{$mod}});
481         $text .= sprintf "\techo \"%s\" >\$\@\n\n", $mod;
482     }
483
484     # output the import libraries rules
485
486     $text .= "# Import libraries\n\n";
487     $text .= "STATIC_IMPLIBEXT = \$(IMPLIBEXT:def=def.a)\n\n";
488
489     my @lib_symlinks = ();
490     foreach my $mod (sort keys %importlibs)
491     {
492         my $dir = $directories{$mod};
493         my $lib = $importlibs{$mod};
494         if ($lib ne $dir) { push @lib_symlinks, $mod; }
495     }
496     $text .= "IMPORT_SYMLINKS =";
497     foreach my $mod (sort @lib_symlinks)
498     {
499         $text .= sprintf " \\\n\tlib%s.\$(IMPLIBEXT)", $importlibs{$mod};
500     }
501
502     $text .= "\n\nIMPORT_LIBS = \\\n\t\$(IMPORT_SYMLINKS)";
503     foreach my $mod (sort keys %staticlib_dirs)
504     {
505         $text .= sprintf " \\\n\t%s/lib%s.a", $staticlib_dirs{$mod}, $mod;
506     }
507     foreach my $mod (sort keys %importlibs)
508     {
509         $text .= " \\\n\t$directories{$mod}/lib$importlibs{$mod}.\$(IMPLIBEXT)";
510         next unless defined $static_implibs{$mod};
511         $text .= " \\\n\t$directories{$mod}/lib$importlibs{$mod}.\$(STATIC_IMPLIBEXT)";
512     }
513     $text .= "\n\nCROSS_IMPLIBS =";
514     foreach my $mod (sort @lib_symlinks)
515     {
516         $text .= sprintf " \\\n\tlib%s.a", $importlibs{$mod};
517     }
518     foreach my $mod (sort keys %importlibs)
519     {
520         next if defined $static_implibs{$mod};
521         $text .= " \\\n\t$directories{$mod}/lib$importlibs{$mod}.a";
522     }
523     $text .= "\n\n";
524     $text .= "\$(TESTSUBDIRS:%=%/__crosstest__): \$(CROSS_IMPLIBS)\n\n";
525     $text .= "implib: \$(IMPORT_LIBS)\n\n";
526     $text .= "testsubdirs: \$(TESTSUBDIRS)\n\n";
527     $text .= ".PHONY: implib testsubdirs\n\n";
528
529     foreach my $mod (sort keys %importlibs)
530     {
531         my $dir = $directories{$mod};
532         my $lib = $importlibs{$mod};
533         my $spec = $mod;
534         $spec =~ s/\.dll$//;
535         if (defined($static_implibs{$mod}))
536         {
537             $text .= sprintf "%s/lib%s.def: %s/%s.spec \$(WINEBUILD)\n", $dir, $lib, $dir, $spec;
538             $text .= sprintf "\t\@cd %s && \$(MAKE) lib%s.def\n\n", $dir, $lib;
539             $text .= sprintf "%s/lib%s.\$(STATIC_IMPLIBEXT): dummy\n", $dir, $lib, $dir, $spec;
540             $text .= sprintf "\t\@cd %s && \$(MAKE) lib%s.\$(STATIC_IMPLIBEXT)\n\n", $dir, $lib;
541         }
542         else
543         {
544             $text .= sprintf "%s/lib%s.def %s/lib%s.a: %s/%s.spec \$(WINEBUILD)\n",
545                              $dir, $lib, $dir, $lib, $dir, $spec;
546             $text .= sprintf "\t\@cd %s && \$(MAKE) `basename \$\@`\n\n", $dir;
547         }
548     }
549     foreach my $mod (sort @lib_symlinks)
550     {
551         my $dir = $directories{$mod};
552         my $lib = "lib" . $importlibs{$mod};
553         $text .= sprintf "%s.a: %s/%s.a\n", $lib, $dir, $lib;
554         $text .= sprintf "\t\$(RM) \$@ && \$(LN_S) %s/%s.a \$@\n\n", $dir, $lib;
555         $text .= sprintf "%s.def: %s/%s.def\n", $lib, $dir, $lib;
556         $text .= sprintf "\t\$(RM) \$@ && \$(LN_S) %s/%s.def \$@\n\n", $dir, $lib;
557     }
558
559     $text .= "\$(BUILDSUBDIRS): \$(IMPORT_LIBS)\n";
560     $text .= "\$(INSTALLSUBDIRS:%=%/__install__) \$(INSTALLSUBDIRS:%=%/__install-lib__): \$(IMPORT_LIBS)\n\n";
561
562     # output the inter-dll dependencies and rules
563
564     $text .= "# Map library name to the corresponding directory\n\n";
565
566     foreach my $mod (sort keys %staticlib_dirs)
567     {
568         $text .= sprintf "%s/lib%s.a: %s\n", $staticlib_dirs{$mod}, $mod, $staticlib_dirs{$mod};
569     }
570     $text .= "\n# Misc rules\n";
571
572     replace_in_file( "dlls/Makefile.in",
573                      '^# 16-bit dlls',
574                      '^# Misc rules',
575                      $text );
576
577     # .gitignore file
578
579     foreach my $mod (sort @lib_symlinks)
580     {
581         push @ignores, "dlls/lib$importlibs{$mod}.def";
582     }
583     foreach my $mod (sort keys %directories)
584     {
585         next unless defined $altnames{$mod};
586         push @ignores, map { "dlls/" . $_ . "16"; } @{$altnames{$mod}};
587     }
588
589     return @ignores;
590 }
591
592
593 ################################################################
594 # update include/Makefile.in
595
596 sub update_includes()
597 {
598     my (@h_srcs, @private_idl_srcs, @public_idl_srcs, @tlb_srcs, %subdirs);
599     my @includes = map { (my $ret = $_) =~ s/^include\///; $ret; } grep /^include\//, @all_files;
600     foreach my $incl (@includes)
601     {
602         if ($incl =~ /(.*)\//) { $subdirs{$1} = 1; }
603         next if ($incl =~ /\.in$/);
604         if ($incl =~ /^wine\// && !$exported_wine_headers{$incl})
605         {
606             if ($private_idl_headers{$incl}) { push @private_idl_srcs, $incl; }
607             next;
608         }
609         if ($incl =~ /stdole2\.idl$/) { push @tlb_srcs, $incl; }
610         elsif ($private_idl_headers{$incl}) { push @h_srcs, $incl; }
611         elsif ($incl =~ /\.h$/) { push @h_srcs, $incl; }
612         elsif ($incl =~ /\.rh$/) { push @h_srcs, $incl; }
613         elsif ($incl =~ /\.inl$/) { push @h_srcs, $incl; }
614         elsif ($incl =~ /\.idl$/) { push @public_idl_srcs, $incl; }
615         else { die "unknown file $incl in include dir"; }
616     }
617     replace_in_file( "include/Makefile.in", '^PRIVATE_IDL_H_SRCS\s*=', '^INSTALLDIRS',
618                      "PRIVATE_IDL_H_SRCS = \\\n\t",
619                      join( " \\\n\t", sort @private_idl_srcs ),
620                      "\n\nPUBLIC_IDL_H_SRCS = \\\n\t",
621                      join( " \\\n\t", sort @public_idl_srcs ),
622                      "\n\nIDL_TLB_SRCS = \\\n\t",
623                      join( " \\\n\t", sort @tlb_srcs ),
624                      "\n\nSRCDIR_INCLUDES = \\\n\t\$(IDL_TLB_SRCS) \\\n\t\$(PUBLIC_IDL_H_SRCS) \\\n\t",
625                      join( " \\\n\t", sort @h_srcs ),
626                      "\n\nEXTRASUBDIRS = ",
627                      join( " ", sort keys %subdirs ),
628                      "\n\nINSTALLDIRS = \\\n" );
629     return map { s/(.*)\.idl$/include\/$1.h/; $_; } @public_idl_srcs, @private_idl_srcs;
630 }
631
632
633 ################################################################
634 # update the main .gitignore
635
636 sub update_gitignore(@)
637 {
638     my @ignores = values %makerules;
639
640     foreach my $make (@makefiles)
641     {
642         my %makefile = %{$makefiles{$make}};
643         my $dir = $makefile{"=dir"};
644         if (defined $makefile{"MANPAGES"})
645         {
646             push @ignores, map { $dir . $_; } @{$makefile{"MANPAGES"}};
647         }
648         if (defined $makefile{"PROGRAMS"})
649         {
650             push @ignores, map { s/\$\(EXEEXT\)//; $dir . $_; } @{$makefile{"PROGRAMS"}};
651         }
652     }
653
654     # prepend a slash to paths that don't have one
655     @ignores = map { $_ =~ s/^([^\/]+)$/\/$1/; $_; } @ignores;
656
657     # get rid of duplicates
658     my %ignores = ();
659     foreach my $i (@ignores, @_) { $ignores{$i} = 1; }
660
661     replace_in_file( ".gitignore", undef, undef,
662                      "# Automatically generated by make_makefiles; DO NOT EDIT!!\n",
663                      join("\n", sort keys %ignores), "\n" );
664 }
665
666
667 die "needs to be run from a git checkout" unless -d ".git";
668
669 @all_files = split /\0/, `git ls-files -c -z`;
670 @makefiles = map { my $ret = $_; $ret =~ s/\.in$//; $ret; } grep /Makefile.in$/, @all_files;
671
672 foreach my $file (sort values %makerules, @makefiles)
673 {
674     my %make = parse_makefile( $file );
675     $makefiles{$file} = \%make;
676 }
677
678 assign_sources_to_makefiles();
679 update_makefiles( @makefiles );
680 push @ignores, update_includes();
681 push @ignores, update_ignores( @makefiles );
682 push @ignores, update_dlls( sort grep /^dlls\//, @makefiles );
683 update_gitignore( @ignores );