make_makefiles 17.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#!/usr/bin/perl -w
#
# Build the auto-generated parts of the Wine makefiles.
#
# Copyright 2006 Alexandre Julliard
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
#

22 23
use strict;

24
# Make rules files
25 26 27 28 29
my %makerules =
(
 "MAKE_RULES" => "Make.rules",
 "MAKE_DLL_RULES" => "dlls/Makedll.rules",
 "MAKE_IMPLIB_RULES" => "dlls/Makeimplib.rules",
30
 "MAKE_TEST_RULES" => "Maketest.rules",
31 32 33
 "MAKE_PROG_RULES" => "programs/Makeprog.rules",
);

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
# Programs that we want to install in the bin directory too
my %bin_install =
(
  "msiexec" => 1,
  "notepad" => 1,
  "regedit" => 1,
  "regsvr32" => 1,
  "wineboot" => 1,
  "winecfg" => 1,
  "wineconsole" => 1,
  "winedbg" => 1,
  "winefile" => 1,
  "winemine" => 1,
  "winepath" => 1,
);

# Programs that we don't want to install at all
my %dont_install =
(
  "winetest" => 1,
);

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
# Dlls and programs that are 16-bit specific
my %modules16 =
(
  "ifsmgr.vxd" => 1,
  "mmdevldr.vxd" => 1,
  "monodebg.vxd" => 1,
  "vdhcp.vxd" => 1,
  "vmm.vxd" => 1,
  "vnbt.vxd" => 1,
  "vnetbios.vxd" => 1,
  "vtdapi.vxd" => 1,
  "vwin32.vxd" => 1,
  "w32skrnl.dll" => 1,
  "winevdm.exe" => 1,
  "wow32.dll" => 1,
);

73 74 75
# Default patterns for top-level .gitignore
my @ignores = (
    "*.[oa]",
76
    "*.exe",
77
    "*.fake",
78
    "*.man",
79
    "*.ok",
80
    "*.res",
81 82 83 84 85
    "*.so",
    "/autom4te.cache",
    "/config.cache",
    "/config.log",
    "/config.status",
86
    "/configure.lineno",
87 88
    "/TAGS",
    "/tags",
89
    "/wine",
90
    "/wine64",
91
    "Makefile",
92
    "dlldata.c",
93
    "dlls/*/*.def",
94
    "dlls/shell32/AUTHORS",
95
    "*/*/tests/testlist.c",
96
    "include/config.h",
97
    "include/stamp-h",
98
    "msg.pot",
99
    "po/*.mo",
100
    "programs/winetest/build.nfo",
101
    "programs/winetest/build.rc",
102
    "rsrc.pot",
103
    "tools/makedep",
104 105
);

106 107 108 109 110 111
# Source files and their resulting target to ignore
my @ignore_srcs = (
    [ 'BISON_SRCS',   '\.y',   '.tab.c' ],
    [ 'BISON_SRCS',   '\.y',   '.tab.h' ],
    [ 'LEX_SRCS',     '\.l',   '.yy.c' ],
    [ 'IDL_TLB_SRCS', '\.idl', '.tlb' ],
112
    [ 'IDL_H_SRCS',   '\.idl', '.h' ],
113 114 115 116
    [ 'IDL_C_SRCS',   '\.idl', '.h' ],
    [ 'IDL_I_SRCS',   '\.idl', '.h' ],
    [ 'IDL_P_SRCS',   '\.idl', '.h' ],
    [ 'IDL_S_SRCS',   '\.idl', '.h' ],
117 118 119 120
    [ 'IDL_C_SRCS',   '\.idl', '_c.c' ],
    [ 'IDL_I_SRCS',   '\.idl', '_i.c' ],
    [ 'IDL_P_SRCS',   '\.idl', '_p.c' ],
    [ 'IDL_S_SRCS',   '\.idl', '_s.c' ],
121 122
    [ 'PUBLIC_IDL_H_SRCS',  '\.idl', '.h' ],
    [ 'PRIVATE_IDL_H_SRCS', '\.idl', '.h' ],
123
    [ 'XTEMPLATE_SRCS',     '\.x',   '.h' ],
124 125
);

126 127 128 129 130 131 132
my %exported_wine_headers = (
    "wine/debug.h" => 1,
    "wine/exception.h" => 1,
    "wine/library.h" => 1,
    "wine/unicode.h" => 1,
    "wine/itss.idl" => 1,
    "wine/svcctl.idl" => 1,
133 134 135
);

my %private_idl_headers = (
Huw Davies's avatar
Huw Davies committed
136
    "access.idl" => 1,
Huw Davies's avatar
Huw Davies committed
137
    "asynot.idl" => 1,
Huw Davies's avatar
Huw Davies committed
138
    "asysta.idl" => 1,
139 140
    "axcore.idl" => 1,
    "axextend.idl" => 1,
Huw Davies's avatar
Huw Davies committed
141
    "binres.idl" => 1,
Huw Davies's avatar
Huw Davies committed
142
    "cmdbas.idl" => 1,
Huw Davies's avatar
Huw Davies committed
143
    "cmdtxt.idl" => 1,
Huw Davies's avatar
Huw Davies committed
144
    "crtrow.idl" => 1,
Huw Davies's avatar
Huw Davies committed
145
    "dbccmd.idl" => 1,
Huw Davies's avatar
Huw Davies committed
146
    "dbcses.idl" => 1,
Huw Davies's avatar
Huw Davies committed
147
    "dbdsad.idl" => 1,
148 149 150 151
    "dbinit.idl" => 1,
    "dbprop.idl" => 1,
    "dbs.idl" => 1,
    "devenum.idl" => 1,
152
    "dyngraph.idl" => 1,
Huw Davies's avatar
Huw Davies committed
153
    "opnrst.idl" => 1,
Huw Davies's avatar
Huw Davies committed
154
    "row.idl" => 1,
Huw Davies's avatar
Huw Davies committed
155
    "rowchg.idl" => 1,
Huw Davies's avatar
Huw Davies committed
156
    "rstbas.idl" => 1,
Huw Davies's avatar
Huw Davies committed
157
    "rstinf.idl" => 1,
Huw Davies's avatar
Huw Davies committed
158
    "rstloc.idl" => 1,
Huw Davies's avatar
Huw Davies committed
159
    "sesprp.idl" => 1,
160
    "vmrender.idl" => 1,
161 162
    "xmldom.idl" => 1,
    "xmldso.idl" => 1,
163
    "wine/winedxgi.idl" => 1,
164 165
);

166 167 168 169 170 171
my %ignored_source_files = (
    "dlls/wineps.drv/afm2c.c" => 1,
    "dlls/wineps.drv/mkagl.c" => 1,
    "programs/winetest/dist.rc" => 1,
);

172
my (@linguas, @makefiles, %makefiles);
173 174 175 176 177 178 179 180

sub dirname($)
{
    my $ret = shift;
    return "" unless $ret =~ /\//;
    $ret =~ s!/[^/]*$!!;
    return $ret;
}
181

182 183 184 185
# update a file if changed
sub update_file($)
{
    my $file = shift;
186
    my $ret = !(-f $file) || system "cmp $file $file.new >/dev/null";
187 188 189 190 191 192 193 194
    if (!$ret)
    {
        unlink "$file.new";
    }
    else
    {
        rename "$file.new", "$file";
        print "$file updated\n";
195 196 197 198 199
        if ($file eq "configure.ac")
        {
            system "autoconf";
            print "configure updated\n";
        }
200 201 202 203 204 205 206 207 208 209 210 211 212
    }
    return $ret;
}

# replace some lines in a file between two markers
sub replace_in_file($$$@)
{
    my $file = shift;
    my $start = shift;
    my $end = shift;

    open NEW_FILE, ">$file.new" or die "cannot create $file.new";

213
    if (defined($start))
214
    {
215 216 217 218 219 220
        open OLD_FILE, "$file" or die "cannot open $file";
        while (<OLD_FILE>)
        {
            last if /$start/;
            print NEW_FILE $_;
        }
221 222 223 224 225 226 227 228 229 230 231 232 233 234
    }

    print NEW_FILE @_;

    if (defined($end))
    {
        my $skip=1;
        while (<OLD_FILE>)
        {
            print NEW_FILE $_ unless $skip;
            $skip = 0 if /$end/;
        }
    }

235
    close OLD_FILE if defined($start);
236 237 238 239
    close NEW_FILE;
    return update_file($file);
}

240 241 242 243 244
# replace a variable in a makefile
sub replace_makefile_variable($$)
{
    my ($file, $var) = @_;
    my $make = $makefiles{$file};
245
    my $replaced = 0;
246 247 248 249 250 251 252 253 254 255 256

    return unless defined ${$make}{"=$var"};

    my @values = @{${$make}{"=$var"}};
    ${$make}{$var} = \@values;

    open NEW_FILE, ">$file.in.new" or die "cannot create $file.in.new";

    open OLD_FILE, "$file.in" or die "cannot open $file.in";
    while (<OLD_FILE>)
    {
257
        if (/^\s*($var\s*)=/)
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
        {
            # try to preserve formatting
            my $prefix = $1;
            my $multiline = /\\$/ || (@values > 1);
            while (/\\$/)
            {
                $_ = <OLD_FILE>;
                last unless $_;
            }
            if ($multiline)
            {
                print NEW_FILE "$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
            }
            else
            {
                print NEW_FILE "$prefix= @values\n";
            }
275
            $replaced = 1;
276 277
            next;
        }
278 279 280 281
        if (/^\@MAKE/ && !$replaced)
        {
            print NEW_FILE "$var = \\\n\t" . join(" \\\n\t", sort @values) . "\n";
        }
282 283 284 285 286 287 288
        print NEW_FILE $_;
    }
    close OLD_FILE;
    close NEW_FILE;
    return update_file("$file.in");
}

289
# parse the specified makefile and load the variables
290 291 292
sub parse_makefile($)
{
    my $file = shift;
293
    my %make;
294

295 296
    ($make{"=dir"} = $file) =~ s/[^\/]+$//;

297 298 299 300 301
    open MAKE, "$file.in" or die "cannot open $file.in\n";

    while (<MAKE>)
    {
        chomp;
302
        next if (/^\s*#/);
303
        while (/\\$/) { chop; $_ .= <MAKE>; chomp; }  # merge continued lines
304
        next if (/^\s*$/);
305 306 307 308

        if (/^\@(MAKE.*RULES)\@/)
        {
            my $var = $1;
309 310 311
            $make{"=rules"} = $makerules{$var};
            next;
        }
312
        if (/^\s*(MODULE|IMPORTLIB|TESTDLL|MANPAGE)\s*=\s*(.*)/)
313
        {
314 315 316
            my $var = $1;
            $make{$var} = $2;
            push @{$make{"=flags"}}, "implib" if $var eq "IMPORTLIB";
317
            push @{$make{"=flags"}}, "manpage" if $var eq "MANPAGE";
318 319
            next;
        }
320
        if (/^\s*(BISON_SRCS|LEX_SRCS|IDL_[CHIPRS]_SRCS|IDL_TLB_SRCS|IMPLIB_SRCS|C_SRCS|MC_SRCS|RC_SRCS|PO_SRCS|SVG_SRCS|PROGRAMS)\s*=\s*(.*)/)
321
        {
322
            my $var = $1;
323
            my @list = split(/\s+/, $2);
324 325 326 327
            $make{$var} = \@list;
            push @{$make{"=flags"}}, "mc" if $var eq "MC_SRCS";
            push @{$make{"=flags"}}, "po" if $var eq "PO_SRCS";
            push @{$make{"=flags"}}, "staticimplib" if $var eq "IMPLIB_SRCS";
328 329
            next;
        }
330 331 332 333 334
        if (/(install-lib|install-dev)\s*:/)
        {
            push @{$make{"=flags"}}, $1;
            next;
        }
335 336 337 338
        if (/^\s*(TOPSRCDIR|TOPOBJDIR|SRCDIR|VPATH)\s*=\s*(.*)/)
        {
            die "Variable $1 in $file.in is obsolete";
        }
339
    }
340 341 342 343 344 345 346

    if ($file =~ /^programs\/([^\/]+)\/Makefile/)
    {
        push @{$make{"=flags"}}, "install" unless $dont_install{$1};
        push @{$make{"=flags"}}, "installbin" if $bin_install{$1};
    }

347
    return %make;
348
}
349

350
# assign source files to their respective makefile
351
sub assign_sources_to_makefiles(@)
352
{
353 354 355
    my %subdirs;

    foreach my $file (@_)
356 357 358
    {
        next if defined $ignored_source_files{$file};
        my $dir = dirname( $file );
359
        my $subdir = $dir;
360 361

        while ($dir && !defined $makefiles{"$dir/Makefile"}) { $dir = dirname( $dir ); }
362 363
        $subdir =~ s/^$dir\/?//;
        $subdirs{"$dir/ $subdir"} = 1 if $subdir;
364 365 366 367 368
        next unless $dir;

        die "no makefile found for $file\n" unless defined $makefiles{"$dir/Makefile"};

        my $make = $makefiles{"$dir/Makefile"};
369 370 371 372 373 374 375 376 377 378 379 380 381
        my $name = substr( $file, length($dir) + 1 );

        if ($dir eq "include")
        {
            next if ($name =~ /\.in$/);
            if ($name =~ /^wine\// && !$exported_wine_headers{$name})
            {
                if ($private_idl_headers{$name}) { push @{${$make}{"=PRIVATE_IDL_H_SRCS"}}, $name; }
                next;
            }
            if ($name =~ /stdole2\.idl$/) { push @{${$make}{"=IDL_TLB_SRCS"}}, $name; }
            elsif ($private_idl_headers{$name}) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
            elsif ($name =~ /\.h$/) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
382
            elsif ($name =~ /\.x$/) { push @{${$make}{"=XTEMPLATE_SRCS"}}, $name; }
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
            elsif ($name =~ /\.rh$/) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
            elsif ($name =~ /\.inl$/) { push @{${$make}{"=SRCDIR_INCLUDES"}}, $name; }
            elsif ($name =~ /\.idl$/) { push @{${$make}{"=PUBLIC_IDL_H_SRCS"}}, $name; }
            else { die "unknown file $name in include dir"; }
        }
        else
        {
            if ($name =~ /\.c$/) { push @{${$make}{"=C_SRCS"}}, $name; }
            elsif ($name =~ /\.l$/) { push @{${$make}{"=LEX_SRCS"}}, $name; }
            elsif ($name =~ /\.y$/) { push @{${$make}{"=BISON_SRCS"}}, $name; }
            elsif ($name =~ /\.rc$/) { push @{${$make}{"=RC_SRCS"}}, $name; }
            elsif ($name =~ /\.mc$/) { push @{${$make}{"=MC_SRCS"}}, $name; }
            elsif ($name =~ /\.svg$/) { push @{${$make}{"=SVG_SRCS"}}, $name; }
        }
    }
    foreach my $key (keys %subdirs)
    {
        my ($dir, $subdir) = split " ", $key;
        if ($dir eq "/") { $dir = ""; }
        push @{${$makefiles{"${dir}Makefile"}}{"=EXTRASUBDIRS"}}, $subdir;
403
    }
404 405 406

    # add extra variables to include source list
    my $make = $makefiles{"include/Makefile"};
407
    unshift @{${$make}{"=SRCDIR_INCLUDES"}}, "\$(XTEMPLATE_SRCS)";
408 409
    unshift @{${$make}{"=SRCDIR_INCLUDES"}}, "\$(PUBLIC_IDL_H_SRCS)";
    unshift @{${$make}{"=SRCDIR_INCLUDES"}}, "\$(IDL_TLB_SRCS)";
410
}
411

412
################################################################
413
# update the makefile list in configure.ac
414

415
sub update_makefiles(@)
416
{
417
    my (@lines);
418 419 420

    foreach my $var (sort { $makerules{$a} cmp $makerules{$b}; } keys %makerules)
    {
421
        my $file = $makerules{$var};
422
        my %make = %{$makefiles{$file}};
423 424
        my $rules = $make{"=rules"} ? ",[$make{\"=rules\"}]" : "";
        push @lines, "WINE_CONFIG_MAKERULES([$file],[$var]$rules)\n";
425
    }
426
    push @lines, "\n";
427 428 429

    foreach my $file (sort @_)
    {
430 431
        my %make = %{$makefiles{$file}};
        my $rules = $make{"=rules"};
432
        my $args = "";
433
        my $is_win16 = $make{"MODULE"} && ($make{"MODULE"} =~ /16$/ || $modules16{$make{"MODULE"}});
434
        my $flag_args = defined $make{"=flags"} ? ",[" . join(",",sort @{$make{"=flags"}}) ."]" : "";
435 436
        if ($rules eq $makerules{"MAKE_DLL_RULES"})
        {
437
            (my $name = $file) =~ s/^dlls\/(.*)\/Makefile/$1/;
438 439 440 441 442 443 444 445
            if ($name =~ /\./)
            {
                die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
            }
            else
            {
                die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.dll";
            }
446
            my $implib = $make{"IMPORTLIB"} || "";
447
            $args .= "," if $is_win16 || defined $make{"=flags"};
448
            $args .= "enable_win16" if $is_win16;
449
            $args .= $flag_args;
450
            $args .= ",[$implib]" if $implib && $implib ne $name;
451
            push @lines, "WINE_CONFIG_DLL($name$args)\n";
452
        }
453 454 455
        elsif ($rules eq $makerules{"MAKE_PROG_RULES"})
        {
            (my $name = $file) =~ s/^programs\/(.*)\/Makefile/$1/;
456 457 458 459 460 461 462 463
            if ($name =~ /\./)
            {
                die "Invalid MODULE in $file" unless $make{"MODULE"} eq $name;
            }
            else
            {
                die "Invalid MODULE in $file" unless $make{"MODULE"} eq "$name.exe";
            }
464
            $args .= "," if $is_win16 || defined $make{"=flags"};
465
            $args .= "enable_win16" if $is_win16;
466
            push @lines, "WINE_CONFIG_PROGRAM($name$args$flag_args)\n";
467 468 469 470
        }
        elsif ($rules eq $makerules{"MAKE_TEST_RULES"})
        {
            (my $dir = $file) =~ s/^(.*)\/Makefile/$1/;
471
            push @lines, "WINE_CONFIG_TEST($dir$flag_args)\n";
472 473 474 475
        }
        elsif ($rules eq $makerules{"MAKE_IMPLIB_RULES"})
        {
            (my $name = $file) =~ s/^dlls\/(.*)\/Makefile/$1/;
476
            push @lines, "WINE_CONFIG_LIB($name$flag_args)\n";
477
        }
478 479
        elsif ($file =~ /^tools.*\/Makefile$/)
        {
480
            (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
481
            push @lines, "WINE_CONFIG_TOOL($name$flag_args)\n";
482
        }
483
        elsif ($file =~ /\/Makefile$/)
484
        {
485
            (my $name = $file) =~ s/^(.*)\/Makefile/$1/;
486 487 488
            $args = "[$name]";
            $args .= "," if defined $make{"=flags"};
            push @lines, "WINE_CONFIG_MAKEFILE($args$flag_args)\n";
489
        }
490 491
    }

492 493
    push @lines, "\nAC_SUBST([LINGUAS],[\"\\\n", join( " \\\n", sort @linguas ), "\"])\n\n";

494 495 496 497 498 499 500 501
    # update the source variables in all the makefiles

    foreach my $file (sort @_)
    {
        replace_makefile_variable( $file, "LEX_SRCS" );
        replace_makefile_variable( $file, "BISON_SRCS" );
        replace_makefile_variable( $file, "MC_SRCS" );
        replace_makefile_variable( $file, "SVG_SRCS" );
502 503
        replace_makefile_variable( $file, "C_SRCS" );
        replace_makefile_variable( $file, "RC_SRCS" );
504 505 506
        replace_makefile_variable( $file, "PRIVATE_IDL_H_SRCS" );
        replace_makefile_variable( $file, "PUBLIC_IDL_H_SRCS" );
        replace_makefile_variable( $file, "IDL_TLB_SRCS" );
507
        replace_makefile_variable( $file, "XTEMPLATE_SRCS" );
508 509
        replace_makefile_variable( $file, "SRCDIR_INCLUDES" );
        replace_makefile_variable( $file, "EXTRASUBDIRS" );
510 511
    }

512 513
    push @lines, "dnl End of auto-generated output commands\n";
    replace_in_file( "configure.ac", '^WINE_CONFIG_MAKERULES', '^dnl End of auto-generated output commands\n$', @lines);
514 515
}

516 517 518 519 520

################################################################
# process ignore targets for generic source files

sub update_ignores(@)
521
{
522
    my @ignores;
523

524 525 526 527
    foreach my $file (sort @_)
    {
        my %makefile = %{$makefiles{$file}};
        my @list;
528

529 530 531 532
        foreach my $src (@ignore_srcs)
        {
            my @pattern = @{$src};
            next unless defined $makefile{$pattern[0]};
533
            next if $pattern[0] eq "IDL_TLB_SRCS" && $makefile{"=rules"} eq "dlls/Makedll.rules";
534 535
            push @list, map { (my $ret = $_) =~ s/$pattern[1]$/$pattern[2]/; $ret; } @{$makefile{$pattern[0]}};
        }
536 537 538 539
        foreach my $f (@list)
        {
            push @ignores, $makefile{"=dir"} . $f unless $f =~ /\$\(.*\)/;  # skip make variables
        }
540 541 542

        if (defined $makefile{"IMPORTLIB"})
        {
543
            if ($makefile{"IMPORTLIB"} =~ /^([a-zA-Z0-9_.]+)/)
544
            {
545
                if ("dlls/$1/" ne $makefile{"=dir"}) { push @ignores, "dlls/lib$1.def"; }
546 547 548
            }
            else
            {
549
                die "invalid importlib name $makefile{IMPORTLIB} in $file";
550 551 552
            }
        }
    }
553
    return @ignores;
554 555
}

556

557 558 559
################################################################
# update the main .gitignore

560
sub update_gitignore(@)
561
{
562
    my @ignores = values %makerules;
563 564 565 566 567 568 569 570 571 572 573 574 575 576

    foreach my $make (@makefiles)
    {
        my %makefile = %{$makefiles{$make}};
        my $dir = $makefile{"=dir"};
        if (defined $makefile{"PROGRAMS"})
        {
            push @ignores, map { s/\$\(EXEEXT\)//; $dir . $_; } @{$makefile{"PROGRAMS"}};
        }
    }

    # prepend a slash to paths that don't have one
    @ignores = map { $_ =~ s/^([^\/]+)$/\/$1/; $_; } @ignores;

577 578 579
    # get rid of duplicates
    my %ignores = ();
    foreach my $i (@ignores, @_) { $ignores{$i} = 1; }
580 581 582

    replace_in_file( ".gitignore", undef, undef,
                     "# Automatically generated by make_makefiles; DO NOT EDIT!!\n",
583
                     join("\n", sort keys %ignores), "\n" );
584 585 586
}


587 588 589 590 591 592 593 594 595
################################################################
# update the LINGUAS file

sub update_linguas(@)
{
    replace_in_file( "po/LINGUAS", undef, undef, join("\n", sort @_), "\n" );
}


596 597
die "needs to be run from a git checkout" unless -d ".git";

598
my @all_files = split /\0/, `git ls-files -c -z`;
599 600
@linguas = map { (my $ret = $_) =~ s/^po\/(.*)\.po/$1/; $ret; } grep /^po\/.*\.po$/, @all_files;
@makefiles = map { (my $ret = $_) =~ s/\.in$//; $ret; } grep /Makefile.in$/, @all_files;
601 602 603 604 605 606 607

foreach my $file (sort values %makerules, @makefiles)
{
    my %make = parse_makefile( $file );
    $makefiles{$file} = \%make;
}

608
assign_sources_to_makefiles( @all_files );
609
update_linguas( @linguas );
610 611
update_makefiles( @makefiles );
push @ignores, update_ignores( @makefiles );
612
update_gitignore( @ignores );