qmgr: Implement IEnumBackgroundCopyJobs_GetCount.
[wine/wine64.git] / tools / make_makefiles
blob98700dbcda7fc48fed13938102e9b63ab8b1b740
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 # Make rules files
23 my %makerules =
25 "MAKE_RULES" => "Make.rules",
26 "MAKE_DLL_RULES" => "dlls/Makedll.rules",
27 "MAKE_IMPLIB_RULES" => "dlls/Makeimplib.rules",
28 "MAKE_TEST_RULES" => "dlls/Maketest.rules",
29 "MAKE_PROG_RULES" => "programs/Makeprog.rules",
32 # Programs that we want to install in the bin directory too
33 my %bin_install =
35 "msiexec" => 1,
36 "notepad" => 1,
37 "progman" => 1,
38 "regedit" => 1,
39 "regsvr32" => 1,
40 "uninstaller" => 1,
41 "wineboot" => 1,
42 "winebrowser" => 1,
43 "winecfg" => 1,
44 "wineconsole" => 1,
45 "winedbg" => 1,
46 "winefile" => 1,
47 "winemine" => 1,
48 "winepath" => 1,
49 "winhelp" => 1,
52 # Programs that we don't want to install at all
53 my %dont_install =
55 "cmdlgtst" => 1,
56 "view" => 1,
57 "winetest" => 1,
60 # Special dlls that can be switched on or off by configure
61 my %special_dlls =
63 "glu32" => "GLU32FILES",
64 "opengl32" => "OPENGLFILES",
65 "winex11.drv" => "XFILES",
66 "winequartz.drv" => "QUARTZFILES"
69 # Default patterns for top-level .gitignore
70 my @ignores = (
71 "*.[oa]",
72 "*.so",
73 "/autom4te.cache",
74 "/config.cache",
75 "/config.log",
76 "/config.status",
77 "/TAGS",
78 "/tags",
79 "Makefile",
80 "dlldata.c",
81 "include/config.h",
82 "include/stamp-h"
85 # Source files and their resulting target to ignore
86 my @ignore_srcs = (
87 [ 'BISON_SRCS', '\.y', '.tab.c' ],
88 [ 'BISON_SRCS', '\.y', '.tab.h' ],
89 [ 'LEX_SRCS', '\.l', '.yy.c' ],
90 [ 'MC_SRCS', '\.mc', '.mc.rc' ],
91 [ 'RC_SRCS', '\.rc', '.res' ],
92 [ 'RC_SRCS16', '\.rc', '.res' ],
93 [ 'IDL_TLB_SRCS', '\.idl', '.tlb' ],
94 [ 'IDL_H_SRCS', '\.idl', '.h' ],
95 [ 'IDL_C_SRCS', '\.idl', '.h' ],
96 [ 'IDL_I_SRCS', '\.idl', '.h' ],
97 [ 'IDL_P_SRCS', '\.idl', '.h' ],
98 [ 'IDL_S_SRCS', '\.idl', '.h' ],
99 [ 'IDL_C_SRCS', '\.idl', '_c.c' ],
100 [ 'IDL_I_SRCS', '\.idl', '_i.c' ],
101 [ 'IDL_P_SRCS', '\.idl', '_p.c' ],
102 [ 'IDL_S_SRCS', '\.idl', '_s.c' ],
105 my %private_headers = (
106 "wine/irot.idl" => 1,
107 "wine/list.h" => 1,
108 "wine/mmsystem16.h" => 1,
109 "wine/mscvpdb.h" => 1,
110 "wine/port.h" => 1,
111 "wine/pthread.h" => 1,
112 "wine/rpcfc.h" => 1,
113 "wine/rpcss_shared.h" => 1,
114 "wine/server.h" => 1,
115 "wine/server_protocol.h" => 1,
116 "wine/test.h" => 1,
117 "wine/wgl.h" => 1,
118 "wine/winaspi.h" => 1,
119 "wine/winbase16.h" => 1,
120 "wine/windef16.h" => 1,
121 "wine/wined3d_caps.h" => 1,
122 "wine/wined3d_gl.h" => 1,
123 "wine/wined3d_interface.h" => 1,
124 "wine/wined3d_types.h" => 1,
125 "wine/wingdi16.h" => 1,
126 "wine/winnet16.h" => 1,
127 "wine/winsock16.h" => 1,
128 "wine/winuser16.h" => 1,
129 "wine/wpp.h" => 1
132 my %private_idl_headers = (
133 "axcore.idl" => 1,
134 "axextend.idl" => 1,
135 "dbinit.idl" => 1,
136 "dbprop.idl" => 1,
137 "dbs.idl" => 1,
138 "devenum.idl" => 1,
139 "dyngraph.idl" => 1
142 my (@makefiles, %makefiles);
144 # update a file if changed
145 sub update_file($)
147 my $file = shift;
148 my $ret = !(-f $file) || system "cmp $file $file.new >/dev/null";
149 if (!$ret)
151 unlink "$file.new";
153 else
155 rename "$file.new", "$file";
156 print "$file updated\n";
157 if ($file eq "configure.ac")
159 system "autoconf";
160 print "configure updated\n";
163 return $ret;
166 # replace some lines in a file between two markers
167 sub replace_in_file($$$@)
169 my $file = shift;
170 my $start = shift;
171 my $end = shift;
173 open NEW_FILE, ">$file.new" or die "cannot create $file.new";
175 if (defined($start))
177 open OLD_FILE, "$file" or die "cannot open $file";
178 while (<OLD_FILE>)
180 last if /$start/;
181 print NEW_FILE $_;
185 print NEW_FILE @_;
187 if (defined($end))
189 my $skip=1;
190 while (<OLD_FILE>)
192 print NEW_FILE $_ unless $skip;
193 $skip = 0 if /$end/;
197 close OLD_FILE if defined($start);
198 close NEW_FILE;
199 return update_file($file);
202 # parse the specified makefile to identify the rules file
203 sub parse_makefile($)
205 my $file = shift;
206 my %make;
208 ($make{"=dir"} = $file) =~ s/[^\/]+$//;
210 open MAKE, "$file.in" or die "cannot open $file.in\n";
212 while (<MAKE>)
214 chomp;
215 while (/\\$/) { chop; $_ .= <MAKE>; chomp; } # merge continued lines
217 if (/^\@(MAKE.*RULES)\@/)
219 my $var = $1;
220 $make{"=rules"} = $makerules{$var};
221 next;
223 if (/^(MODULE|IMPORTLIB|TESTDLL)\s*=\s*(.*)/)
225 $make{$1} = $2;
226 next;
228 if (/^(BISON_SRCS|LEX_SRCS|IDL_[CHIPS]_SRCS|IDL_TLB_SRCS|IMPLIB_SRCS|MC_SRCS|RC_SRCS|RC_SRCS16|RC_BINARIES|SPEC_SRCS16|EXTRA_OBJS16|MANPAGES|PROGRAMS)\s*=\s*(.*)/)
230 my @list = split(/\s+/, $2);
231 $make{$1} = \@list;
232 next;
234 if (/^\#\s*MKDLL_SKIP/ || /^\#\s*MKPROG_SKIP/)
236 $make{"=skip"} = 1;
237 next;
240 return %make;
244 ################################################################
245 # update the makefile list in configure.ac
247 sub update_makerules(@)
252 ################################################################
253 # update the tests list in programs/winetest/Makefile.in and programs/winetest/winetest.rc
255 sub update_winetest(@)
257 my (@tests, @lines);
259 foreach my $file (@_)
261 if ($file =~ /^dlls\/(.*)\/tests\/Makefile/) { push @tests, $1; }
263 push @lines, "TESTBINS =";
264 push @lines, map { " \\\n\t" . $_ . "_test.exe"; } sort @tests;
265 push @lines, "\n\n";
267 foreach my $test (sort @tests)
269 push @lines, "${test}_test.exe: \$(DLLDIR)/$test/tests/${test}_test.exe\$(DLLEXT)\n";
270 push @lines, "\tcp \$(DLLDIR)/$test/tests/${test}_test.exe\$(DLLEXT) \$\@ && \$(STRIP) \$\@\n";
272 push @lines, "\n# Special rules\n";
274 replace_in_file( "programs/winetest/Makefile.in", '^TESTBINS\s*=', '^# Special rules', @lines );
276 replace_in_file( "programs/winetest/winetest.rc", ' TESTRES ', undef,
277 map { $_ . "_test.exe TESTRES \"" . $_ . "_test.exe\"\n"; } sort @tests );
279 # return a list of test exe files for .gitignore
280 return map { "programs/winetest/" . $_ . "_test.exe"; } sort @tests;
284 ################################################################
285 # update the makefile list in configure.ac and Makefile.in
287 sub update_makefiles(@)
289 my (@targets, @depends, @lines);
291 foreach my $var (sort { $makerules{$a} cmp $makerules{$b}; } keys %makerules)
293 push @lines, "$var=$makerules{$var}\n";
294 push @lines, "AC_SUBST_FILE($var)\n\n";
297 foreach my $var ((sort values %makerules), (sort @_))
299 push @lines, "AC_CONFIG_FILES([$var])\n";
302 push @lines, "\nAC_OUTPUT\n";
303 replace_in_file( "configure.ac", '^MAKE_RULES', '^AC_OUTPUT$', @lines);
305 foreach my $file (sort values %makerules)
307 push @targets, $file;
308 my %make = %{$makefiles{$file}};
309 if (!defined($make{"=rules"})) { push @depends, "$file: $file.in"; }
310 else { push @depends, "$file: $file.in Make.rules"; }
313 foreach my $file (sort @_)
315 push @targets, $file unless $file eq "Makefile";
316 my %makefile = %{$makefiles{$file}};
317 my $dep = $makefile{"=rules"};
318 push @depends, "$file: $file.in $dep";
322 @lines = ();
323 push @lines, "ALL_MAKEFILES = \\\n\t";
324 push @lines, join (" \\\n\t", @targets ), "\n\n";
325 push @lines, "Makefile \$(ALL_MAKEFILES): config.status\n";
326 push @lines, "\t\@./config.status \$\@\n";
327 push @lines, ".INIT: Makefile\n";
328 push @lines, ".BEGIN: Makefile\n\n";
329 push @lines, "\$(RECURSE_TARGETS) \$(MAKEDEP): \$(ALL_MAKEFILES)\n\n";
330 push @lines, "distclean::\n";
331 push @lines, "\t\$(RM) Makefile \$(ALL_MAKEFILES)\n\n";
332 push @lines, join ("\n", @depends ), "\n";
334 replace_in_file( "Makefile.in", '^ALL_MAKEFILES\s*=', undef, @lines );
338 ################################################################
339 # process ignore targets for generic source files
341 sub update_ignores(@)
343 my @ignores;
345 foreach my $file (sort @_)
347 my %makefile = %{$makefiles{$file}};
348 my @list;
350 foreach my $src (@ignore_srcs)
352 my @pattern = @{$src};
353 next unless defined $makefile{$pattern[0]};
354 push @list, map { (my $ret = $_) =~ s/$pattern[1]$/$pattern[2]/; $ret; } @{$makefile{$pattern[0]}};
356 push @list, @{$makefile{"RC_BINARIES"}} if defined $makefile{"RC_BINARIES"};
357 foreach my $f (@list)
359 push @ignores, $makefile{"=dir"} . $f unless $f =~ /\$\(.*\)/; # skip make variables
362 return @ignores;
365 ################################################################
366 # update dlls/Makefile.in
368 sub update_dlls(@)
370 my (%directories, %testdirs, %importlibs, %static_implibs, %staticlib_dirs, %altnames);
371 my $text = "";
372 my @ignores = ();
374 foreach my $make (@_)
376 my %makefile = %{$makefiles{$make}};
377 next if defined $makefile{"=skip"};
379 if ($make =~ /dlls\/(.*)\/tests\/Makefile/)
381 $testdirs{$1} = "$1/tests";
382 (my $crosstest = $makefile{"TESTDLL"}) =~ s/\.dll$//;
383 push @ignores, $makefile{"=dir"} . $crosstest . "_crosstest.exe";
384 push @ignores, $makefile{"=dir"} . "testlist.c";
385 push @ignores, $makefile{"=dir"} . "*.ok";
386 next;
389 next unless defined $makefile{"MODULE"};
390 my $module = $makefile{"MODULE"};
391 (my $dir = $makefile{"=dir"}) =~ s/^dlls\/(.*)\//$1/;
393 if ($module =~ /^lib.*\.a$/)
395 $staticlib_dirs{$module} = $dir;
396 die "invalid module $module in dir $staticlib_dirs{$module}\n" if "lib$staticlib_dirs{$module}.a" ne $module;
398 else
400 die "invalid module $module" unless $module =~ /\./;
401 (my $mod = $module) =~ s/\.dll$//;
402 die "invalid directory $dir for module $module\n" unless $mod eq $dir;
403 $directories{$module} = $dir;
406 if (defined $makefile{"IMPORTLIB"})
408 if ($makefile{"IMPORTLIB"} =~ /^([a-zA-Z0-9_.]+)\.\$\(IMPLIBEXT\)/)
410 $importlibs{$module} = $1;
412 else
414 die "invalid importlib name $makefile{IMPORTLIB} in $make";
418 $static_implibs{$module} = 1 if defined $makefile{"IMPLIB_SRCS"};
420 if (defined $makefile{"SPEC_SRCS16"})
422 my @list = map { $_ =~ s/\.spec$//; $_ .= ".dll" unless $_ =~ /\./; $_; } @{$makefile{"SPEC_SRCS16"}};
423 $altnames{$module} = \@list;
425 if (defined $makefile{"EXTRA_OBJS16"})
427 foreach my $obj (@{$makefile{"EXTRA_OBJS16"}})
429 if ($obj =~ /^(.*\.(exe|mod))\.o/) { push @{$altnames{$module}}, $1; }
434 # output special dlls configure definitions
436 $text .= "# special configure-dependent targets\n\n";
437 my %specials = ();
438 foreach my $mod (sort keys %special_dlls)
440 $specials{$special_dlls{$mod}} .= " " . $mod;
442 foreach my $i (sort keys %specials)
444 $text .= $i . " =" . $specials{$i} . "\n";
446 $text .= "EXTRADIRS =";
447 foreach my $i (sort keys %specials) { $text .= sprintf " \@%s\@", $i; }
448 $text .= "\n\n";
450 # output the subdirs list
452 $text .= "# Subdir list\n\n";
453 $text .= "BASEDIRS =";
454 foreach my $dir (sort values %directories)
456 next if defined($special_dlls{$dir}); # skip special dlls
457 $text .= " \\\n\t" . $dir;
460 $text .= "\n\nIMPLIBSUBDIRS = \\\n\t";
461 $text .= join " \\\n\t", sort values %staticlib_dirs;
463 $text .= "\n\nTESTSUBDIRS = \\\n\t";
464 $text .= join " \\\n\t", sort values %testdirs;
466 $text .= "\n\nSUBDIRS = \\\n\t";
467 $text .= join " \\\n\t", "\$(BASEDIRS)", "\$(IMPLIBSUBDIRS)", "\$(TESTSUBDIRS)", sort keys %special_dlls;
469 $text .= "\n\nBUILDSUBDIRS = \$(BASEDIRS) \$(EXTRADIRS) \$(TESTSUBDIRS)\n";
470 $text .= "INSTALLSUBDIRS = \$(BASEDIRS) \$(EXTRADIRS) \$(IMPLIBSUBDIRS)\n";
471 $text .= "DOCSUBDIRS = \$(BASEDIRS) \$(EXTRADIRS)\n";
473 # output the list of 16-bit files
475 my @targets16 = ();
476 foreach my $mod (sort keys %directories)
478 next unless defined $altnames{$mod};
479 foreach my $i (sort @{$altnames{$mod}})
481 push @targets16, $i . "16";
484 $text .= "\n# 16-bit dlls\n\n";
485 $text .= "WIN16_FILES = \\\n";
486 $text .= "\t" . join( " \\\n\t", sort @targets16 ) . "\n\n";
487 $text .= "\@MAKE_RULES\@\n\n";
489 # output the all: target
491 $text .= "# Main target\n\n";
492 $text .= "all: \$(BUILDSUBDIRS) \@WIN16_FILES\@\n\n";
494 # output the lib name -> directory rules
496 $text .= "# Placeholders for 16-bit libraries\n\n";
497 foreach my $mod (sort keys %directories)
499 next unless defined $altnames{$mod};
500 $text .= sprintf "%s:\n", join(" ", map { $_ . "16"; } sort @{$altnames{$mod}});
501 $text .= sprintf "\techo \"%s\" >\$\@\n\n", $mod;
504 # output the import libraries rules
506 $text .= "# Import libraries\n\n";
507 $text .= "STATIC_IMPLIBEXT = \$(IMPLIBEXT:def=def.a)\n\n";
509 my @lib_symlinks = ();
510 foreach my $mod (sort keys %importlibs)
512 my $dir = $directories{$mod};
513 my $lib = $importlibs{$mod};
514 if ($lib ne "lib" . $dir) { push @lib_symlinks, $mod; }
516 $text .= "IMPORT_SYMLINKS =";
517 foreach my $mod (sort @lib_symlinks)
519 $text .= sprintf " \\\n\t%s.\$(IMPLIBEXT)", $importlibs{$mod};
522 $text .= "\n\nIMPORT_LIBS = \\\n\t\$(IMPORT_SYMLINKS)";
523 foreach my $mod (sort keys %staticlib_dirs)
525 $text .= sprintf " \\\n\t%s/%s", $staticlib_dirs{$mod}, $mod;
527 foreach my $mod (sort keys %importlibs)
529 my $dir = $directories{$mod};
530 my $def = $mod;
531 $def =~ s/\.(dll|drv)$//;
532 $text .= sprintf " \\\n\t%s/lib%s.\$(IMPLIBEXT)", $dir, $def;
533 next unless defined $static_implibs{$mod};
534 $text .= sprintf " \\\n\t%s/lib%s.\$(STATIC_IMPLIBEXT)", $dir, $def
536 $text .= "\n\n";
537 $text .= "implib: \$(IMPORT_LIBS)\n\n";
538 $text .= ".PHONY: implib\n\n";
540 foreach my $mod (sort keys %importlibs)
542 my $dir = $directories{$mod};
543 my $lib = $importlibs{$mod};
544 my $spec = $mod;
545 $spec =~ s/\.dll$//;
546 $text .= sprintf "%s/%s.\$(IMPLIBEXT): %s/%s.spec \$(WINEBUILD)\n", $dir, $lib, $dir, $spec;
547 $text .= sprintf "\t\@cd %s && \$(MAKE) %s.\$(IMPLIBEXT)\n\n", $dir, $lib;
548 next unless $static_implibs{$mod};
549 $text .= sprintf "%s/%s.\$(STATIC_IMPLIBEXT): dummy\n", $dir, $lib, $dir, $spec;
550 $text .= sprintf "\t\@cd %s && \$(MAKE) %s.\$(STATIC_IMPLIBEXT)\n\n", $dir, $lib;
552 foreach my $mod (sort @lib_symlinks)
554 my $dir = $directories{$mod};
555 my $lib = $importlibs{$mod} . ".\$(IMPLIBEXT)";
556 $text .= sprintf "%s: %s/%s\n", $lib, $dir, $lib;
557 $text .= sprintf "\t\$(RM) \$@ && \$(LN_S) %s/%s \$@\n\n", $dir, $lib;
560 $text .= "\$(BUILDSUBDIRS): \$(IMPORT_LIBS)\n";
561 $text .= "\$(INSTALLSUBDIRS:%=%/__install__) \$(INSTALLSUBDIRS:%=%/__install-lib__): \$(IMPORT_LIBS)\n\n";
563 # output the inter-dll dependencies and rules
565 $text .= "# Map library name to the corresponding directory\n\n";
567 foreach my $mod (sort keys %staticlib_dirs)
569 $text .= sprintf "%s/%s: %s\n", $staticlib_dirs{$mod}, $mod, $staticlib_dirs{$mod};
571 $text .= "\n# Misc rules\n";
573 replace_in_file( "dlls/Makefile.in",
574 '^# special configure-dependent targets',
575 '^# Misc rules',
576 $text );
578 # .gitignore file
580 foreach my $mod (sort @lib_symlinks)
582 push @ignores, "dlls/$importlibs{$mod}.def";
584 foreach my $mod (sort keys %directories)
586 next unless defined $altnames{$mod};
587 push @ignores, map { "dlls/" . $_ . "16"; } @{$altnames{$mod}};
589 foreach my $mod (sort keys %importlibs)
591 my $dir = $directories{$mod};
592 my $def = $mod;
593 $def =~ s/\.(dll|drv)$//;
594 push @ignores, "dlls/$dir/lib$def.def";
597 return @ignores;
601 ################################################################
602 # update programs/Makefile.in
604 sub update_progs(@)
606 my (@subdirs, @install_subdirs, @install_progs);
608 my @ignores = ();
610 foreach my $make (@_)
612 my %makefile = %{$makefiles{$make}};
613 my $module = $makefile{"MODULE"};
614 (my $dir = $make) =~ s/^programs\/(.*)\/Makefile$/$1/;
615 die "Invalid module $module in $make" unless "$dir.exe" eq $module;
616 next if defined $makefile{"=skip"};
617 push @subdirs, $dir;
618 push @ignores, "programs/$dir/$dir";
619 push @install_subdirs, $dir unless $dont_install{$dir};
620 push @install_progs, $dir if $bin_install{$dir};
623 replace_in_file( "programs/Makefile.in", '^SUBDIRS\s*=', '^INSTALLDIRS',
624 "SUBDIRS = \\\n\t",
625 join( " \\\n\t", @subdirs ),
626 "\n\n# Sub-directories to run make install into\nINSTALLSUBDIRS = \\\n\t",
627 join( " \\\n\t", @install_subdirs ),
628 "\n\n# Programs to install in bin directory\nINSTALLPROGS = \\\n\t",
629 join( " \\\n\t", @install_progs ),
630 "\n\nINSTALLDIRS = \$(DESTDIR)\$(bindir)\n" );
632 return @ignores;
636 ################################################################
637 # update include/Makefile.in
639 sub update_includes()
641 return unless -d ".git";
642 my (@h_srcs, @idl_srcs, @tlb_srcs, %subdirs);
643 my @includes = map { s/^include\///; $_; } split /\0/, `git ls-files -c -z include`;
644 foreach my $incl (@includes)
646 if ($incl =~ /(.*)\//) { $subdirs{$1} = 1; }
647 next if ($private_headers{$incl});
648 if ($incl =~ /stdole2\.idl$/) { push @tlb_srcs, $incl; }
649 elsif ($private_idl_headers{$incl}) { push @h_srcs, $incl; }
650 elsif ($incl =~ /\.h$/) { push @h_srcs, $incl; }
651 elsif ($incl =~ /\.inl$/) { push @h_srcs, $incl; }
652 elsif ($incl =~ /\.idl$/) { push @idl_srcs, $incl; }
654 replace_in_file( "include/Makefile.in", '^IDL_H_SRCS\s*=', '^INSTALLDIRS',
655 "IDL_H_SRCS = \\\n\t",
656 join( " \\\n\t", sort @idl_srcs ),
657 "\n\nIDL_TLB_SRCS = \\\n\t",
658 join( " \\\n\t", sort @tlb_srcs ),
659 "\n\nSRCDIR_INCLUDES = \\\n\t\$(IDL_TLB_SRCS) \\\n\t\$(IDL_H_SRCS) \\\n\t",
660 join( " \\\n\t", sort @h_srcs ),
661 "\n\nEXTRASUBDIRS = ",
662 join( " ", sort keys %subdirs ),
663 "\n\nINSTALLDIRS = \\\n" );
667 ################################################################
668 # update the main .gitignore
670 sub update_gitignore(@)
672 my @ignores = values %makerules;
674 foreach my $make (@makefiles)
676 my %makefile = %{$makefiles{$make}};
677 my $dir = $makefile{"=dir"};
678 if (defined $makefile{"MANPAGES"})
680 push @ignores, map { $dir . $_; } @{$makefile{"MANPAGES"}};
682 if (defined $makefile{"PROGRAMS"})
684 push @ignores, map { s/\$\(EXEEXT\)//; $dir . $_; } @{$makefile{"PROGRAMS"}};
688 # prepend a slash to paths that don't have one
689 @ignores = map { $_ =~ s/^([^\/]+)$/\/$1/; $_; } @ignores;
691 # get rid of duplicates
692 my %ignores = ();
693 foreach my $i (@ignores, @_) { $ignores{$i} = 1; }
695 replace_in_file( ".gitignore", undef, undef,
696 "# Automatically generated by make_makefiles; DO NOT EDIT!!\n",
697 join("\n", sort keys %ignores), "\n" );
701 if (-d ".git")
703 @makefiles = map { s/\.in$//; $_; } split /\0/, `git ls-files -c -z Makefile.in \\*/Makefile.in`;
705 else
707 @makefiles = map { s/^\.\/(.*)\.in/$1/; $_; } split(/\s/,`find . -name Makefile.in -print`);
710 update_includes();
712 foreach my $file (sort values %makerules, @makefiles)
714 my %make = parse_makefile( $file );
715 $makefiles{$file} = \%make;
718 update_makefiles( @makefiles );
719 push @ignores, update_ignores( @makefiles );
720 push @ignores, update_winetest( @makefiles );
721 push @ignores, update_dlls( sort grep /^dlls\//, @makefiles );
722 push @ignores, update_progs( sort grep /^programs\/.*\/Makefile$/, @makefiles );
723 update_gitignore( @ignores );