make_makefiles: Ignore IDL_H_SRCS targets in all directories.
[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 # Make rules files
23 my %makerules =
24 (
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",
30 );
31
32 # Programs that we want to install in the bin directory too
33 my %bin_install =
34 (
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,
50 );
51
52 # Programs that we don't want to install at all
53 my %dont_install =
54 (
55   "cmdlgtst" => 1,
56   "view" => 1,
57   "winetest" => 1,
58 );
59
60 # Special dlls that can be switched on or off by configure
61 my %special_dlls =
62 (
63   "glu32"    => "GLU32FILES",
64   "opengl32" => "OPENGLFILES",
65   "wined3d"  => "OPENGLFILES",
66   "winex11.drv" => "XFILES",
67   "winequartz.drv" => "QUARTZFILES"
68 );
69
70 # Default patterns for top-level .gitignore
71 my @ignores = (
72     "*.[oa]",
73     "*.so",
74     "/autom4te.cache",
75     "/config.cache",
76     "/config.log",
77     "/config.status",
78     "/TAGS",
79     "/tags",
80     "Makefile"
81 );
82
83 # Source files and their resulting target to ignore
84 my @ignore_srcs = (
85     [ 'BISON_SRCS',   '\.y',   '.tab.c' ],
86     [ 'BISON_SRCS',   '\.y',   '.tab.h' ],
87     [ 'LEX_SRCS',     '\.l',   '.yy.c' ],
88     [ 'MC_SRCS',      '\.mc',  '.mc.rc' ],
89     [ 'RC_SRCS',      '\.rc',  '.res' ],
90     [ 'RC_SRCS16',    '\.rc',  '.res' ],
91     [ 'IDL_TLB_SRCS', '\.idl', '.tlb' ],
92     [ 'IDL_H_SRCS',   '\.idl', '.h' ],
93     [ 'IDL_C_SRCS',   '\.idl', '_c.c' ],
94     [ 'IDL_I_SRCS',   '\.idl', '_i.c' ],
95     [ 'IDL_P_SRCS',   '\.idl', '_p.c' ],
96     [ 'IDL_S_SRCS',   '\.idl', '_s.c' ],
97 );
98
99 my (@makefiles, %makefiles);
100
101 # update a file if changed
102 sub update_file($)
103 {
104     my $file = shift;
105     my $ret = !(-f $file) || system "cmp $file $file.new >/dev/null";
106     if (!$ret)
107     {
108         unlink "$file.new";
109     }
110     else
111     {
112         rename "$file.new", "$file";
113         print "$file updated\n";
114         if ($file eq "configure.ac")
115         {
116             system "autoconf";
117             print "configure updated\n";
118         }
119     }
120     return $ret;
121 }
122
123 # replace some lines in a file between two markers
124 sub replace_in_file($$$@)
125 {
126     my $file = shift;
127     my $start = shift;
128     my $end = shift;
129
130     open NEW_FILE, ">$file.new" or die "cannot create $file.new";
131
132     if (defined($start))
133     {
134         open OLD_FILE, "$file" or die "cannot open $file";
135         while (<OLD_FILE>)
136         {
137             last if /$start/;
138             print NEW_FILE $_;
139         }
140     }
141
142     print NEW_FILE @_;
143
144     if (defined($end))
145     {
146         my $skip=1;
147         while (<OLD_FILE>)
148         {
149             print NEW_FILE $_ unless $skip;
150             $skip = 0 if /$end/;
151         }
152     }
153
154     close OLD_FILE if defined($start);
155     close NEW_FILE;
156     return update_file($file);
157 }
158
159 # parse the specified makefile to identify the rules file
160 sub parse_makefile($)
161 {
162     my $file = shift;
163     my %make;
164
165     ($make{"=dir"} = $file) =~ s/[^\/]+$//;
166
167     open MAKE, "$file.in" or die "cannot open $file.in\n";
168
169     while (<MAKE>)
170     {
171         chomp;
172         while (/\\$/) { chop; $_ .= <MAKE>; chomp; }  # merge continued lines
173
174         if (/^\@(MAKE.*RULES)\@/)
175         {
176             my $var = $1;
177             $make{"=rules"} = $makerules{$var};
178             next;
179         }
180         if (/^(MODULE|IMPORTLIB|TESTDLL)\s*=\s*(.*)/)
181         {
182             $make{$1} = $2;
183             next;
184         }
185         if (/^(BISON_SRCS|LEX_SRCS|IDL_[CHIPS]_SRCS|IDL_TLB_SRCS|IMPLIB_SRCS|MC_SRCS|RC_SRCS|RC_SRCS16|RC_BINARIES|SPEC_SRCS16|MANPAGES|PROGRAMS)\s*=\s*(.*)/)
186         {
187             my @list = split(/\s+/, $2);
188             $make{$1} = \@list;
189             next;
190         }
191         if (/^\#\s*MKDLL_SKIP/ || /^\#\s*MKPROG_SKIP/)
192         {
193             $make{"=skip"} = 1;
194             next;
195         }
196     }
197     return %make;
198 }
199
200 if (-d ".git")
201 {
202     @makefiles = map { s/\.in$//; $_; } split /\s/, `git ls-files -c Makefile.in \\*/Makefile.in`;
203 }
204 else
205 {
206     @makefiles = map { s/^\.\/(.*)\.in/$1/; $_; } split(/\s/,`find . -name Makefile.in -print`);
207 }
208
209 foreach my $file (sort values %makerules, @makefiles)
210 {
211     my %make = parse_makefile( $file );
212     $makefiles{$file} = \%make;
213 }
214
215 ################################################################
216 # update the makefile list in configure.ac
217
218 my @lines = ();
219
220 foreach my $var (sort { $makerules{$a} cmp $makerules{$b}; } keys %makerules)
221 {
222     push @lines, "$var=$makerules{$var}\n";
223     push @lines, "AC_SUBST_FILE($var)\n\n";
224 }
225
226 replace_in_file( "configure.ac", '^MAKE_RULES', '\]\)$',
227                  @lines,
228                  "AC_CONFIG_FILES([\n",
229                  join ("\n", (sort values %makerules), (sort @makefiles) ), "])\n" );
230
231
232 ################################################################
233 # update the tests list in programs/winetest/Makefile.in and programs/winetest/winetest.rc
234
235 sub update_winetest(@)
236 {
237     my (@tests, @lines);
238
239     foreach my $file (@_)
240     {
241         if ($file =~ /^dlls\/(.*)\/tests\/Makefile/) { push @tests, $1; }
242     }
243     push @lines, "TESTBINS =";
244     push @lines, map { " \\\n\t" . $_ . "_test.exe"; } sort @tests;
245     push @lines, "\n\n";
246
247     foreach my $test (sort @tests)
248     {
249         push @lines, "${test}_test.exe: \$(DLLDIR)/$test/tests/${test}_test.exe\$(DLLEXT)\n";
250         push @lines, "\tcp \$(DLLDIR)/$test/tests/${test}_test.exe\$(DLLEXT) \$\@ && \$(STRIP) \$\@\n";
251     }
252     push @lines, "\n# Special rules\n";
253
254     replace_in_file( "programs/winetest/Makefile.in", '^TESTBINS\s*=', '^# Special rules', @lines );
255
256     replace_in_file( "programs/winetest/winetest.rc", ' TESTRES ', undef,
257                      map { $_ . "_test.exe TESTRES \"" . $_ . "_test.exe\"\n"; } sort @tests );
258
259     # return a list of test exe files for .gitignore
260     return map { "programs/winetest/" . $_ . "_test.exe"; } sort @tests;
261 }
262
263
264 ################################################################
265 # update the makefile list in Makefile.in
266
267 sub update_makefiles(@)
268 {
269     my (@targets, @depends);
270
271     foreach my $file (sort values %makerules)
272     {
273         push @targets, $file;
274         my %make = %{$makefiles{$file}};
275         if (!defined($make{"=rules"})) { push @depends, "$file: $file.in"; }
276         else { push @depends, "$file: $file.in Make.rules"; }
277     }
278
279     foreach my $file (sort @_)
280     {
281         push @targets, $file unless $file eq "Makefile";
282         my %makefile = %{$makefiles{$file}};
283         my $dep = $makefile{"=rules"};
284         push @depends, "$file: $file.in $dep";
285     }
286
287
288     @lines = ();
289     push @lines, "ALL_MAKEFILES = \\\n\t";
290     push @lines, join (" \\\n\t", @targets ), "\n\n";
291     push @lines, "Makefile \$(ALL_MAKEFILES): config.status\n";
292     push @lines, "\t\@./config.status \$\@\n\n";
293     push @lines, "\$(RECURSE_TARGETS) \$(MAKEDEP): \$(ALL_MAKEFILES)\n\n";
294     push @lines, "distclean::\n";
295     push @lines, "\t\$(RM) Makefile \$(ALL_MAKEFILES)\n\n";
296     push @lines, join ("\n", @depends ), "\n";
297
298     replace_in_file( "Makefile.in", '^ALL_MAKEFILES\s*=', undef, @lines );
299 }
300
301
302 ################################################################
303 # process ignore targets for generic source files
304
305 sub update_ignores(@)
306 {
307     my @ignores;
308
309     foreach my $file (sort @_)
310     {
311         my %makefile = %{$makefiles{$file}};
312         my @list;
313
314         foreach my $src (@ignore_srcs)
315         {
316             my @pattern = @{$src};
317             next unless defined $makefile{$pattern[0]};
318             push @list, map { (my $ret = $_) =~ s/$pattern[1]$/$pattern[2]/; $ret; } @{$makefile{$pattern[0]}};
319         }
320         push @list, @{$makefile{"RC_BINARIES"}} if defined $makefile{"RC_BINARIES"};
321         foreach my $f (@list)
322         {
323             push @ignores, $makefile{"=dir"} . $f unless $f =~ /\$\(.*\)/;  # skip make variables
324         }
325     }
326     return @ignores;
327 }
328
329 ################################################################
330 # update dlls/Makefile.in
331
332 sub update_dlls(@)
333 {
334     my (%directories, %testdirs, %importlibs, %static_implibs, %staticlib_dirs, %altnames);
335     my $text = "";
336     my @ignores = ();
337
338     foreach my $make (@_)
339     {
340         my %makefile = %{$makefiles{$make}};
341         next if defined $makefile{"=skip"};
342
343         if ($make =~ /dlls\/(.*)\/tests\/Makefile/)
344         {
345             $testdirs{$1} = "$1/tests";
346             (my $crosstest = $makefile{"TESTDLL"}) =~ s/\.dll$//;
347             push @ignores, $makefile{"=dir"} . $crosstest . "_crosstest.exe";
348             push @ignores, $makefile{"=dir"} . "testlist.c";
349             push @ignores, $makefile{"=dir"} . "*.ok";
350             next;
351         }
352
353         next unless defined $makefile{"MODULE"};
354         my $module = $makefile{"MODULE"};
355         (my $dir = $makefile{"=dir"}) =~ s/^dlls\/(.*)\//$1/;
356
357         if ($module =~ /^lib.*\.a$/)
358         {
359             $staticlib_dirs{$module} = $dir;
360             die "invalid module $module in dir $staticlib_dirs{$module}\n" if "lib$staticlib_dirs{$module}.a" ne $module;
361         }
362         else
363         {
364             (my $mod = $module) =~ s/\.dll$//;
365             die "invalid directory $dir for module $module\n" unless $mod eq $dir;
366             $directories{$module} = $dir;
367         }
368
369         if (defined $makefile{"IMPORTLIB"})
370         {
371             if ($makefile{"IMPORTLIB"} =~ /^([a-zA-Z0-9_.]+)\.\$\(IMPLIBEXT\)/)
372             {
373                 $importlibs{$module} = $1;
374             }
375             else
376             {
377                 die "invalid importlib name $makefile{IMPORTLIB} in $make";
378             }
379         }
380
381         $static_implibs{$module} = 1 if defined $makefile{"IMPLIB_SRCS"};
382
383         if (defined $makefile{"SPEC_SRCS16"})
384         {
385             my @list = map { $_ =~ s/\.spec$//; $_ .= ".dll" unless $_ =~ /\./; $_; } @{$makefile{"SPEC_SRCS16"}};
386             $altnames{$module} = \@list;
387         }
388     }
389
390     # output special dlls configure definitions
391
392     $text .= "# special configure-dependent targets\n\n";
393     my %specials = ();
394     foreach my $mod (sort keys %special_dlls)
395     {
396         $specials{$special_dlls{$mod}} .= " " . $mod;
397     }
398     foreach my $i (sort keys %specials)
399     {
400         $text .= $i . " =" . $specials{$i} . "\n";
401     }
402     $text .= "EXTRADIRS =";
403     foreach my $i (sort keys %specials) { $text .= sprintf " \@%s\@", $i; }
404     $text .= "\n\n";
405
406     # output the subdirs list
407
408     $text .= "# Subdir list\n\n";
409     $text .= "BASEDIRS =";
410     foreach my $dir (sort values %directories)
411     {
412         next if defined($special_dlls{$dir});  # skip special dlls
413         $text .= " \\\n\t" . $dir;
414     }
415
416     $text .= "\n\nIMPLIBSUBDIRS = \\\n\t";
417     $text .=  join " \\\n\t", sort values %staticlib_dirs;
418
419     $text .= "\n\nTESTSUBDIRS = \\\n\t";
420     $text .= join " \\\n\t", sort values %testdirs;
421
422     $text .=  "\n\nSUBDIRS = \\\n\t";
423     $text .= join " \\\n\t", "\$(BASEDIRS)", "\$(IMPLIBSUBDIRS)", "\$(TESTSUBDIRS)", sort keys %special_dlls;
424
425     $text .= "\n\nBUILDSUBDIRS   = \$(BASEDIRS) \$(EXTRADIRS) \$(TESTSUBDIRS)\n";
426     $text .= "INSTALLSUBDIRS = \$(BASEDIRS) \$(EXTRADIRS) \$(IMPLIBSUBDIRS)\n";
427     $text .= "DOCSUBDIRS     = \$(BASEDIRS) \$(EXTRADIRS)\n";
428
429     # output the list of 16-bit files
430
431     my @targets16 = ();
432     foreach my $mod (sort keys %directories)
433     {
434         next unless defined $altnames{$mod};
435         foreach my $i (sort @{$altnames{$mod}})
436         {
437             push @targets16, $i . "16";
438         }
439     }
440     $text .= "\n# 16-bit dlls\n\n";
441     $text .= "WIN16_FILES = \\\n";
442     $text .=  "\t" . join( " \\\n\t", sort @targets16 ) . "\n\n";
443     $text .= "\@MAKE_RULES\@\n\n";
444
445     # output the all: target
446
447     $text .= "# Main target\n\n";
448     $text .= "all: \$(BUILDSUBDIRS) \@WIN16_FILES\@\n\n";
449
450     # output the lib name -> directory rules
451
452     $text .= "# Placeholders for 16-bit libraries\n\n";
453     foreach my $mod (sort keys %directories)
454     {
455         next unless defined $altnames{$mod};
456         $text .= sprintf "%s:\n", join(" ", map { $_ . "16"; } sort @{$altnames{$mod}});
457         $text .= sprintf "\techo \"%s\" >\$\@\n\n", $mod;
458     }
459
460     # output the import libraries rules
461
462     $text .= "# Import libraries\n\n";
463     $text .= "STATIC_IMPLIBEXT = \$(IMPLIBEXT:def=def.a)\n\n";
464
465     my @lib_symlinks = ();
466     foreach my $mod (sort keys %importlibs)
467     {
468         my $dir = $directories{$mod};
469         my $lib = $importlibs{$mod};
470         if ($lib ne "lib" . $dir) { push @lib_symlinks, $mod; }
471     }
472     $text .= "IMPORT_SYMLINKS =";
473     foreach my $mod (sort @lib_symlinks)
474     {
475         $text .= sprintf " \\\n\t%s.\$(IMPLIBEXT)", $importlibs{$mod};
476     }
477
478     $text .= "\n\nIMPORT_LIBS = \\\n\t\$(IMPORT_SYMLINKS)";
479     foreach my $mod (sort keys %staticlib_dirs)
480     {
481         $text .= sprintf " \\\n\t%s/%s", $staticlib_dirs{$mod}, $mod;
482     }
483     foreach my $mod (sort keys %importlibs)
484     {
485         my $dir = $directories{$mod};
486         my $def = $mod;
487         $def =~ s/\.(dll|drv)$//;
488         $text .= sprintf " \\\n\t%s/lib%s.\$(IMPLIBEXT)", $dir, $def;
489         next unless defined $static_implibs{$mod};
490         $text .= sprintf " \\\n\t%s/lib%s.\$(STATIC_IMPLIBEXT)", $dir, $def
491     }
492     $text .= "\n\n";
493     $text .= "implib: \$(IMPORT_LIBS)\n\n";
494     $text .= ".PHONY: implib\n\n";
495
496     foreach my $mod (sort keys %importlibs)
497     {
498         my $dir = $directories{$mod};
499         my $lib = $importlibs{$mod};
500         my $spec = $mod;
501         $spec =~ s/\.dll$//;
502         $text .= sprintf "%s/%s.\$(IMPLIBEXT): %s/%s.spec \$(WINEBUILD)\n", $dir, $lib, $dir, $spec;
503         $text .= sprintf "\t\@cd %s && \$(MAKE) %s.\$(IMPLIBEXT)\n\n", $dir, $lib;
504         next unless $static_implibs{$mod};
505         $text .= sprintf "%s/%s.\$(STATIC_IMPLIBEXT): dummy\n", $dir, $lib, $dir, $spec;
506         $text .= sprintf "\t\@cd %s && \$(MAKE) %s.\$(STATIC_IMPLIBEXT)\n\n", $dir, $lib;
507     }
508     foreach my $mod (sort @lib_symlinks)
509     {
510         my $dir = $directories{$mod};
511         my $lib = $importlibs{$mod} . ".\$(IMPLIBEXT)";
512         $text .= sprintf "%s: %s/%s\n", $lib, $dir, $lib;
513         $text .= sprintf "\t\$(RM) \$@ && \$(LN_S) %s/%s \$@\n\n", $dir, $lib;
514     }
515
516     $text .= "\$(BUILDSUBDIRS): \$(IMPORT_LIBS)\n";
517     $text .= "\$(INSTALLSUBDIRS:%=%/__install__) \$(INSTALLSUBDIRS:%=%/__install-lib__): \$(IMPORT_LIBS)\n\n";
518
519     # output the inter-dll dependencies and rules
520
521     $text .= "# Map library name to the corresponding directory\n\n";
522
523     foreach my $mod (sort keys %staticlib_dirs)
524     {
525         $text .= sprintf "%s/%s: %s\n", $staticlib_dirs{$mod}, $mod, $staticlib_dirs{$mod};
526     }
527     $text .= "\n# Misc rules\n";
528
529     replace_in_file( "dlls/Makefile.in",
530                      '^# special configure-dependent targets',
531                      '^# Misc rules',
532                      $text );
533
534     # .gitignore file
535
536     foreach my $mod (sort @lib_symlinks)
537     {
538         push @ignores, "dlls/$importlibs{$mod}.def";
539     }
540     foreach my $mod (sort keys %directories)
541     {
542         next unless defined $altnames{$mod};
543         push @ignores, map { "dlls/" . $_ . "16"; } @{$altnames{$mod}};
544     }
545     foreach my $mod (sort keys %importlibs)
546     {
547         my $dir = $directories{$mod};
548         my $def = $mod;
549         $def =~ s/\.(dll|drv)$//;
550         push @ignores, "dlls/$dir/lib$def.def";
551     }
552
553     return @ignores;
554 }
555
556
557 ################################################################
558 # update programs/Makefile.in
559
560 sub update_progs(@)
561 {
562     my (@subdirs, @install_subdirs, @install_progs);
563
564     my @ignores = ();
565
566     foreach my $make (@_)
567     {
568         my %makefile = %{$makefiles{$make}};
569         my $module = $makefile{"MODULE"};
570         (my $dir = $make) =~ s/^programs\/(.*)\/Makefile$/$1/;
571         die "Invalid module $module in $make" unless "$dir.exe" eq $module;
572         next if defined $makefile{"=skip"};
573         push @subdirs, $dir;
574         push @ignores, "programs/$dir/$dir";
575         push @install_subdirs, $dir unless $dont_install{$dir};
576         push @install_progs, $dir if $bin_install{$dir};
577     }
578
579     replace_in_file( "programs/Makefile.in", '^SUBDIRS\s*=', '^INSTALLDIRS',
580                      "SUBDIRS = \\\n\t",
581                      join( " \\\n\t", @subdirs ),
582                      "\n\n# Sub-directories to run make install into\nINSTALLSUBDIRS = \\\n\t",
583                      join( " \\\n\t", @install_subdirs ),
584                      "\n\n# Programs to install in bin directory\nINSTALLPROGS = \\\n\t",
585                      join( " \\\n\t", @install_progs ),
586                      "\n\nINSTALLDIRS = \$(DESTDIR)\$(bindir)\n" );
587
588     return @ignores;
589 }
590
591
592 ################################################################
593 # update the main .gitignore
594
595 sub update_gitignore(@)
596 {
597     my @ignores = values %makerules;
598
599     foreach my $make (@makefiles)
600     {
601         my %makefile = %{$makefiles{$make}};
602         my $dir = $makefile{"=dir"};
603         if (defined $makefile{"MANPAGES"})
604         {
605             push @ignores, map { $dir . $_; } @{$makefile{"MANPAGES"}};
606         }
607         if (defined $makefile{"PROGRAMS"})
608         {
609             push @ignores, map { s/\$\(EXEEXT\)//; $dir . $_; } @{$makefile{"PROGRAMS"}};
610         }
611     }
612
613     # prepend a slash to paths that don't have one
614     @ignores = map { $_ =~ s/^([^\/]+)$/\/$1/; $_; } @ignores;
615
616     push @ignores, @_;
617
618     replace_in_file( ".gitignore", undef, undef,
619                      "# Automatically generated by make_makefiles; DO NOT EDIT!!\n",
620                      join("\n", sort @ignores), "\n" );
621 }
622
623
624 update_makefiles( @makefiles );
625 push @ignores, update_ignores( @makefiles );
626 push @ignores, update_winetest( @makefiles );
627 push @ignores, update_dlls( sort grep /^dlls\//, @makefiles );
628 push @ignores, update_progs( sort grep /^programs\/.*\/Makefile$/, @makefiles );
629 update_gitignore( @ignores );