winedbg: Added missing breaks (Coverity).
[wine.git] / tools / make_makefiles
blobd24dffcfc0d34cf40b52eeb5de6f86cd95b7a503
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",
30 # Programs that we want to install in the bin directory too
31 my %bin_install =
33 "msiexec" => 1,
34 "notepad" => 1,
35 "regedit" => 1,
36 "regsvr32" => 1,
37 "wineboot" => 1,
38 "winecfg" => 1,
39 "wineconsole" => 1,
40 "winedbg" => 1,
41 "winefile" => 1,
42 "winemine" => 1,
43 "winepath" => 1,
46 # Programs that we don't want to install at all
47 my %dont_install =
49 "winetest" => 1,
52 # Dlls and programs that are 16-bit specific
53 my %modules16 =
55 "ifsmgr.vxd" => 1,
56 "mmdevldr.vxd" => 1,
57 "monodebg.vxd" => 1,
58 "vdhcp.vxd" => 1,
59 "vmm.vxd" => 1,
60 "vnbt.vxd" => 1,
61 "vnetbios.vxd" => 1,
62 "vtdapi.vxd" => 1,
63 "vwin32.vxd" => 1,
64 "w32skrnl.dll" => 1,
65 "winevdm.exe" => 1,
66 "wow32.dll" => 1,
69 # Default patterns for top-level .gitignore
70 my @ignores = (
71 "*.[oa]",
72 "*.exe",
73 "*.fake",
74 "*.man",
75 "*.ok",
76 "*.res",
77 "*.so",
78 "/autom4te.cache",
79 "/config.cache",
80 "/config.log",
81 "/config.status",
82 "/configure.lineno",
83 "/TAGS",
84 "/tags",
85 "/wine",
86 "/wine64",
87 "Makefile",
88 "dlldata.c",
89 "dlls/*/*.def",
90 "*/*/tests/testlist.c",
91 "include/config.h",
92 "include/stamp-h",
93 "msg.pot",
94 "po/*.mo",
95 "programs/winetest/build.nfo",
96 "programs/winetest/build.rc",
97 "rsrc.pot",
98 "tools/makedep",
101 # Source files and their resulting target to ignore
102 my @ignore_srcs = (
103 [ 'BISON_SRCS', '\.y', '.tab.c' ],
104 [ 'BISON_SRCS', '\.y', '.tab.h' ],
105 [ 'LEX_SRCS', '\.l', '.yy.c' ],
106 [ 'IDL_TLB_SRCS', '\.idl', '.tlb' ],
107 [ 'IDL_H_SRCS', '\.idl', '.h' ],
108 [ 'IDL_C_SRCS', '\.idl', '.h' ],
109 [ 'IDL_I_SRCS', '\.idl', '.h' ],
110 [ 'IDL_P_SRCS', '\.idl', '.h' ],
111 [ 'IDL_S_SRCS', '\.idl', '.h' ],
112 [ 'IDL_C_SRCS', '\.idl', '_c.c' ],
113 [ 'IDL_I_SRCS', '\.idl', '_i.c' ],
114 [ 'IDL_P_SRCS', '\.idl', '_p.c' ],
115 [ 'IDL_S_SRCS', '\.idl', '_s.c' ],
116 [ 'PUBLIC_IDL_H_SRCS', '\.idl', '.h' ],
117 [ 'PRIVATE_IDL_H_SRCS', '\.idl', '.h' ],
118 [ 'XTEMPLATE_SRCS', '\.x', '.h' ],
121 my %exported_wine_headers = (
122 "wine/debug.h" => 1,
123 "wine/exception.h" => 1,
124 "wine/library.h" => 1,
125 "wine/unicode.h" => 1,
126 "wine/itss.idl" => 1,
127 "wine/svcctl.idl" => 1,
130 my %private_idl_headers = (
131 "access.idl" => 1,
132 "asynot.idl" => 1,
133 "asysta.idl" => 1,
134 "axcore.idl" => 1,
135 "axextend.idl" => 1,
136 "binres.idl" => 1,
137 "chprst.idl" => 1,
138 "cmdbas.idl" => 1,
139 "cmdtxt.idl" => 1,
140 "crtrow.idl" => 1,
141 "dbccmd.idl" => 1,
142 "dbcses.idl" => 1,
143 "dbdsad.idl" => 1,
144 "dbinit.idl" => 1,
145 "dbprop.idl" => 1,
146 "dbs.idl" => 1,
147 "devenum.idl" => 1,
148 "dyngraph.idl" => 1,
149 "errrec.idl" => 1,
150 "opnrst.idl" => 1,
151 "row.idl" => 1,
152 "rowchg.idl" => 1,
153 "rowpos.idl" => 1,
154 "rowpsc.idl" => 1,
155 "rstbas.idl" => 1,
156 "rstinf.idl" => 1,
157 "rstloc.idl" => 1,
158 "rstnot.idl" => 1,
159 "srcrst.idl" => 1,
160 "sesprp.idl" => 1,
161 "vmrender.idl" => 1,
162 "xmldom.idl" => 1,
163 "xmldso.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 (@linguas, @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;
247 my @values;
249 if (defined ${$make}{"=$var"})
251 @values = @{${$make}{"=$var"}};
252 ${$make}{$var} = \@values;
254 else
256 return unless defined ${$make}{$var};
257 undef ${$make}{$var};
260 open NEW_FILE, ">$file.in.new" or die "cannot create $file.in.new";
262 open OLD_FILE, "$file.in" or die "cannot open $file.in";
263 while (<OLD_FILE>)
265 if (/^\s*($var\s*)=/)
267 # try to preserve formatting
268 my $prefix = $1;
269 my $multiline = /\\$/ || (@values > 1);
270 while (/\\$/)
272 $_ = <OLD_FILE>;
273 last unless $_;
275 if (!@values)
277 # nothing
279 elsif ($multiline)
281 print NEW_FILE "$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
283 else
285 print NEW_FILE "$prefix= @values\n";
287 $replaced = 1;
288 next;
290 if (/^\@MAKE/ && !$replaced && @values)
292 print NEW_FILE "$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
294 print NEW_FILE $_;
296 close OLD_FILE;
297 close NEW_FILE;
298 return update_file("$file.in");
301 # parse the specified makefile and load the variables
302 sub parse_makefile($)
304 my $file = shift;
305 my %make;
307 ($make{"=dir"} = $file) =~ s/[^\/]+$//;
309 open MAKE, "$file.in" or die "cannot open $file.in\n";
311 while (<MAKE>)
313 chomp;
314 next if (/^\s*#/);
315 while (/\\$/) { chop; $_ .= <MAKE>; chomp; } # merge continued lines
316 next if (/^\s*$/);
318 if (/^\@(MAKE.*RULES)\@/)
320 my $var = $1;
321 $make{"=rules"} = $makerules{$var} || $var;
322 next;
324 if (/^\s*(MODULE|IMPORTLIB|TESTDLL|PARENTSRC)\s*=\s*(.*)/)
326 my $var = $1;
327 $make{$var} = $2;
328 ${$make{"=flags"}}{"implib"} = 1 if $var eq "IMPORTLIB";
329 next;
331 if (/^\s*(BISON_SRCS|LEX_SRCS|IDL_[CHIPRS]_SRCS|IDL_TLB_SRCS|IMPLIB_SRCS|C_SRCS|OBJC_SRCS|MC_SRCS|RC_SRCS|PO_SRCS|SVG_SRCS|PROGRAMS|MANPAGES)\s*=\s*(.*)/)
333 my $var = $1;
334 my @list = split(/\s+/, $2);
335 $make{$var} = \@list;
336 ${$make{"=flags"}}{"clean"} = 1 if $var eq "PROGRAMS";
337 next;
339 if (/(install-lib|install-dev|clean)\s*:/)
341 ${$make{"=flags"}}{$1} = 1;
342 next;
344 if (/^\s*(TOPSRCDIR|TOPOBJDIR|SRCDIR|VPATH)\s*=\s*(.*)/)
346 die "Variable $1 in $file.in is obsolete";
350 if ($file =~ /^programs\/([^\/]+)\/Makefile/)
352 ${$make{"=flags"}}{"install"} = 1 unless $dont_install{$1};
353 ${$make{"=flags"}}{"installbin"} = 1 if $bin_install{$1};
356 if (defined $make{"=flags"} && defined $make{"=rules"} &&
357 ($make{"=rules"} eq "MAKE_DLL_RULES" ||
358 $make{"=rules"} eq "MAKE_PROG_RULES"))
360 die "Custom install-lib rule not allowed in $file" if defined ${$make{"=flags"}}{"install-lib"};
361 die "Custom install-dev rule not allowed in $file" if defined ${$make{"=flags"}}{"install-dev"};
364 return %make;
367 # read pragma makedep flags from a source file
368 sub get_makedep_flags($)
370 my $file = shift;
371 my %flags;
373 open FILE, $file or die "cannot open $file";
374 while (<FILE>)
376 next unless /^#\s*pragma\s+makedep\s+(.*)/;
377 foreach my $flag (split /\s+/, $1)
379 last if $flag eq "depend";
380 $flags{$flag} = 1;
383 close FILE;
384 return %flags;
387 sub get_parent_makefile($)
389 my $file = shift;
390 my %make = %{$makefiles{$file}};
391 my $reldir = $make{"PARENTSRC"} || "";
392 return "" unless $reldir;
393 (my $path = $file) =~ s/\/Makefile$/\//;
394 while ($reldir =~ /^\.\.\//)
396 $reldir =~ s/^\.\.\///;
397 $path =~ s/[^\/]+\/$//;
399 return "$path$reldir/Makefile";
402 # preserve shared source files that are listed in the existing makefile
403 sub preserve_shared_source_files($$$)
405 my ($make, $parent, $var) = @_;
406 my %srcs;
408 return unless defined ${$parent}{"=$var"};
409 foreach my $file (@{${$parent}{"=$var"}}) { $srcs{$file} = 1; }
410 foreach my $file (@{${$make}{"=$var"}}) { $srcs{$file} = 0; }
412 foreach my $file (@{${$make}{$var}})
414 next unless defined $srcs{$file} && $srcs{$file} == 1;
415 push @{${$make}{"=$var"}}, $file;
419 # assign source files to their respective makefile
420 sub assign_sources_to_makefiles(@)
422 foreach my $file (@_)
424 next if defined $ignored_source_files{$file};
425 my $dir = dirname( $file );
426 my $subdir = $dir;
428 while ($dir && !defined $makefiles{"$dir/Makefile"}) { $dir = dirname( $dir ); }
429 $subdir =~ s/^$dir\/?//;
430 next unless $dir;
432 die "no makefile found for $file\n" unless defined $makefiles{"$dir/Makefile"};
434 my $make = $makefiles{"$dir/Makefile"};
435 my $name = substr( $file, length($dir) + 1 );
437 ${$make}{"=flags"}{"clean"} = 1 if $subdir;
439 if ($dir eq "include")
441 next if ($name =~ /\.in$/);
442 if ($name =~ /^wine\// && !$exported_wine_headers{$name})
444 if ($private_idl_headers{$name}) { push @{${$make}{"=PRIVATE_IDL_H_SRCS"}}, $name; }
445 next;
447 if ($name =~ /stdole2\.idl$/) { push @{${$make}{"=IDL_TLB_SRCS"}}, $name; }
448 elsif ($private_idl_headers{$name}) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
449 elsif ($name =~ /\.h$/) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
450 elsif ($name =~ /\.x$/) { push @{${$make}{"=XTEMPLATE_SRCS"}}, $name; }
451 elsif ($name =~ /\.rh$/) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
452 elsif ($name =~ /\.inl$/) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
453 elsif ($name =~ /\.idl$/) { push @{${$make}{"=PUBLIC_IDL_H_SRCS"}}, $name; }
454 else { die "unknown file $name in include dir"; }
456 else
458 if ($name =~ /\.m$/) { push @{${$make}{"=OBJC_SRCS"}}, $name; }
459 elsif ($name =~ /\.l$/) { push @{${$make}{"=LEX_SRCS"}}, $name; }
460 elsif ($name =~ /\.y$/) { push @{${$make}{"=BISON_SRCS"}}, $name; }
461 elsif ($name =~ /\.svg$/) { push @{${$make}{"=SVG_SRCS"}}, $name; }
462 elsif ($name =~ /\.c$/)
464 my %flags = get_makedep_flags( $file );
465 if (defined $flags{"implib"})
467 push @{${$make}{"=IMPLIB_SRCS"}}, $name;
468 ${${$make}{"=flags"}}{"staticimplib"} = 1;
470 push @{${$make}{"=C_SRCS"}}, $name;
472 elsif ($name =~ /\.rc$/)
474 my %flags = get_makedep_flags( $file );
475 if (defined $flags{"po"})
477 push @{${$make}{"=PO_SRCS"}}, $name;
478 ${${$make}{"=flags"}}{"po"} = 1;
480 push @{${$make}{"=RC_SRCS"}}, $name;
482 elsif ($name =~ /\.mc$/)
484 push @{${$make}{"=MC_SRCS"}}, $name;
485 ${${$make}{"=flags"}}{"mc"} = 1;
487 elsif ($name =~ /\.idl$/)
489 my %flags = get_makedep_flags( $file );
490 push @{${$make}{"=IDL_C_SRCS"}}, $name if defined $flags{"client"};
491 push @{${$make}{"=IDL_H_SRCS"}}, $name if defined $flags{"header"};
492 push @{${$make}{"=IDL_I_SRCS"}}, $name if defined $flags{"ident"};
493 push @{${$make}{"=IDL_P_SRCS"}}, $name if defined $flags{"proxy"};
494 push @{${$make}{"=IDL_R_SRCS"}}, $name if defined $flags{"register"};
495 push @{${$make}{"=IDL_S_SRCS"}}, $name if defined $flags{"server"};
496 push @{${$make}{"=IDL_TLB_SRCS"}}, $name if defined $flags{"typelib"};
497 ${${$make}{"=flags"}}{"clean"} = 1;
499 elsif ($name =~ /\.man\.in$/)
501 push @{${$make}{"=MANPAGES"}}, $name;
502 ${${$make}{"=flags"}}{"manpage"} = 1;
507 # add extra variables to include source list
508 my $make = $makefiles{"include/Makefile"};
509 unshift @{${$make}{"=SRCDIR_INCLUDES"}}, "\$(XTEMPLATE_SRCS)";
510 unshift @{${$make}{"=SRCDIR_INCLUDES"}}, "\$(PUBLIC_IDL_H_SRCS)";
511 unshift @{${$make}{"=SRCDIR_INCLUDES"}}, "\$(IDL_TLB_SRCS)";
513 # preserve shared source files from the parent makefile
514 foreach my $file (@makefiles)
516 my %make = %{$makefiles{$file}};
517 my $parent = get_parent_makefile( $file );
518 next unless $parent;
519 preserve_shared_source_files( $makefiles{$file}, $makefiles{$parent}, "C_SRCS" );
520 preserve_shared_source_files( $makefiles{$file}, $makefiles{$parent}, "LEX_SRCS" );
521 preserve_shared_source_files( $makefiles{$file}, $makefiles{$parent}, "BISON_SRCS" );
525 ################################################################
526 # update the makefile list in configure.ac
528 sub update_makefiles(@)
530 my (@lines);
532 foreach my $var (sort { $makerules{$a} cmp $makerules{$b}; } keys %makerules)
534 my $file = $makerules{$var};
535 my %make = %{$makefiles{$file}};
536 my $rules = $make{"=rules"} ? ",[$make{\"=rules\"}]" : "";
537 push @lines, "WINE_CONFIG_MAKERULES([$file],[$var]$rules)\n";
539 push @lines, "\n";
541 foreach my $file (sort @_)
543 my %make = %{$makefiles{$file}};
544 my $rules = $make{"=rules"};
545 my $args = "";
546 my $is_win16 = $make{"MODULE"} && ($make{"MODULE"} =~ /16$/ || $modules16{$make{"MODULE"}});
547 my $flag_args = defined $make{"=flags"} ? ",[" . join(",",sort keys %{$make{"=flags"}}) ."]" : "";
548 if ($rules eq "MAKE_DLL_RULES")
550 (my $name = $file) =~ s/^dlls\/(.*)\/Makefile/$1/;
551 if ($name =~ /\./)
553 die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
555 else
557 die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.dll";
559 my $implib = $make{"IMPORTLIB"} || "";
560 $args .= "," if $is_win16 || defined $make{"=flags"};
561 $args .= "enable_win16" if $is_win16;
562 $args .= $flag_args;
563 $args .= ",[$implib]" if $implib && $implib ne $name;
564 push @lines, "WINE_CONFIG_DLL($name$args)\n";
566 elsif ($rules eq "MAKE_PROG_RULES")
568 (my $name = $file) =~ s/^programs\/(.*)\/Makefile/$1/;
569 if ($name =~ /\./)
571 die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
573 else
575 die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.exe";
577 $args .= "," if $is_win16 || defined $make{"=flags"};
578 $args .= "enable_win16" if $is_win16;
579 push @lines, "WINE_CONFIG_PROGRAM($name$args$flag_args)\n";
581 elsif ($rules eq "MAKE_TEST_RULES")
583 (my $dir = $file) =~ s/^(.*)\/Makefile/$1/;
584 push @lines, "WINE_CONFIG_TEST($dir$flag_args)\n";
586 elsif ($rules eq "MAKE_IMPLIB_RULES")
588 (my $name = $file) =~ s/^dlls\/(.*)\/Makefile/$1/;
589 push @lines, "WINE_CONFIG_LIB($name$flag_args)\n";
591 elsif ($file =~ /^tools.*\/Makefile$/)
593 (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
594 push @lines, "WINE_CONFIG_TOOL($name$flag_args)\n";
596 elsif ($file =~ /\/Makefile$/)
598 (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
599 $args = "[$name]";
600 $args .= "," if defined $make{"=flags"};
601 push @lines, "WINE_CONFIG_MAKEFILE($args$flag_args)\n";
605 push @lines, "\nAC_SUBST([LINGUAS],[\"\\\n", join( " \\\n", sort @linguas ), "\"])\n\n";
607 # update the source variables in all the makefiles
609 foreach my $file (sort @_)
611 replace_makefile_variable( $file, "LEX_SRCS" );
612 replace_makefile_variable( $file, "BISON_SRCS" );
613 replace_makefile_variable( $file, "MC_SRCS" );
614 replace_makefile_variable( $file, "SVG_SRCS" );
615 replace_makefile_variable( $file, "C_SRCS" );
616 replace_makefile_variable( $file, "OBJC_SRCS" );
617 replace_makefile_variable( $file, "RC_SRCS" );
618 replace_makefile_variable( $file, "PO_SRCS" );
619 replace_makefile_variable( $file, "PRIVATE_IDL_H_SRCS" );
620 replace_makefile_variable( $file, "PUBLIC_IDL_H_SRCS" );
621 replace_makefile_variable( $file, "IDL_C_SRCS" );
622 replace_makefile_variable( $file, "IDL_I_SRCS" );
623 replace_makefile_variable( $file, "IDL_P_SRCS" );
624 replace_makefile_variable( $file, "IDL_R_SRCS" );
625 replace_makefile_variable( $file, "IDL_S_SRCS" );
626 replace_makefile_variable( $file, "IDL_TLB_SRCS" );
627 replace_makefile_variable( $file, "XTEMPLATE_SRCS" );
628 replace_makefile_variable( $file, "IMPLIB_SRCS" );
629 replace_makefile_variable( $file, "SRCDIR_INCLUDES" );
630 replace_makefile_variable( $file, "MANPAGES" );
633 push @lines, "dnl End of auto-generated output commands\n";
634 replace_in_file( "configure.ac", '^WINE_CONFIG_MAKERULES', '^dnl End of auto-generated output commands\n$', @lines);
638 ################################################################
639 # process ignore targets for generic source files
641 sub update_ignores(@)
643 my @ignores;
645 foreach my $file (sort @_)
647 my %makefile = %{$makefiles{$file}};
648 my @list;
650 foreach my $src (@ignore_srcs)
652 my @pattern = @{$src};
653 next unless defined $makefile{$pattern[0]};
654 next if $pattern[0] eq "IDL_TLB_SRCS" && $makefile{"=rules"} eq "MAKE_DLL_RULES";
655 push @list, map { (my $ret = $_) =~ s/$pattern[1]$/$pattern[2]/; $ret; } @{$makefile{$pattern[0]}};
657 foreach my $f (@list)
659 push @ignores, $makefile{"=dir"} . $f unless $f =~ /\$\(.*\)/; # skip make variables
662 if (defined $makefile{"IMPORTLIB"})
664 if ($makefile{"IMPORTLIB"} =~ /^([a-zA-Z0-9_.]+)/)
666 if ("dlls/$1/" ne $makefile{"=dir"}) { push @ignores, "dlls/lib$1.def"; }
668 else
670 die "invalid importlib name $makefile{IMPORTLIB} in $file";
674 return @ignores;
678 ################################################################
679 # update the main .gitignore
681 sub update_gitignore(@)
683 my @ignores = values %makerules;
685 foreach my $make (@makefiles)
687 my %makefile = %{$makefiles{$make}};
688 my $dir = $makefile{"=dir"};
689 if (defined $makefile{"PROGRAMS"})
691 push @ignores, map { s/\$\(EXEEXT\)//; $dir . $_; } @{$makefile{"PROGRAMS"}};
695 # prepend a slash to paths that don't have one
696 @ignores = map { $_ =~ s/^([^\/]+)$/\/$1/; $_; } @ignores;
698 # get rid of duplicates
699 my %ignores = ();
700 foreach my $i (@ignores, @_) { $ignores{$i} = 1; }
702 replace_in_file( ".gitignore", undef, undef,
703 "# Automatically generated by make_makefiles; DO NOT EDIT!!\n",
704 join("\n", sort keys %ignores), "\n" );
708 ################################################################
709 # update the LINGUAS file
711 sub update_linguas(@)
713 replace_in_file( "po/LINGUAS", undef, undef, join("\n", sort @_), "\n" );
717 die "needs to be run from a git checkout" unless -d ".git";
719 my @all_files = split /\0/, `git ls-files -c -z`;
720 @linguas = map { (my $ret = $_) =~ s/^po\/(.*)\.po/$1/; $ret; } grep /^po\/.*\.po$/, @all_files;
721 @makefiles = map { (my $ret = $_) =~ s/\.in$//; $ret; } grep /Makefile.in$/, @all_files;
723 foreach my $file (sort values %makerules, @makefiles)
725 my %make = parse_makefile( $file );
726 $makefiles{$file} = \%make;
729 assign_sources_to_makefiles( @all_files );
730 update_linguas( @linguas );
731 update_makefiles( @makefiles );
732 push @ignores, update_ignores( @makefiles );
733 update_gitignore( @ignores );