winetest: Generate the list of test resources in make_makefiles.
[wine/wine-gecko.git] / dlls / make_dlls
blob27828e75ae36764854ddc8f0df2c4b885dd6fe15
1 #!/usr/bin/perl -w
3 # Update the dll dependencies in the dlls main Makefile.in.
5 # Copyright 2001 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 my %directories = ();
25 my %testdirs = ();
26 my %importlibs = ();
27 my %static_implibs = ();
28 my %staticlib_dirs = ();
29 my %altnames = ();
31 # list of special dlls that can be switched on or off by configure
32 my %special_dlls =
34 "glu32" => "GLU32FILES",
35 "glut32" => "GLUT32FILES",
36 "opengl32" => "OPENGLFILES",
37 "wined3d" => "OPENGLFILES",
38 "winex11.drv" => "XFILES"
41 sub needs_symlink($)
43 (my $mod = $_[0]) =~ s/\.dll$//;
44 return $mod ne $directories{$_[0]};
47 sub update_file($)
49 my $file = shift;
50 if (!system "cmp $file $file.new >/dev/null")
52 unlink "$file.new";
53 print "$file is unchanged\n";
55 else
57 rename "$file.new", "$file";
58 print "$file updated\n";
59 if (-x "./config.status" && $file =~ /(.*Makefile)\.in$/)
61 system "./config.status", $1;
66 # if we are inside the dlls dir, go up one level
67 if (! -f "configure.ac" && -f "../configure.ac") { chdir(".."); }
69 my @args = @ARGV;
70 if (!@args) { @args = map { s/^(.*)\.in/$1/; $_; } split(/\s/,`find dlls -name Makefile.in -print`); }
72 foreach my $i (@args)
74 if ($i =~ /dlls\/(.*)\/tests\/Makefile/)
76 $testdirs{$1} = "$1/tests";
77 next;
80 open MAKE, "$i.in" or die "cannot open $i.in\n";
82 my $module = undef;
83 my $dir = $i;
85 while (<MAKE>)
87 chop;
88 # EPP hack to disable this DLL... the MKDLL_SKIP comment must appear
89 # at the very top of the Makefile.in
90 last if (/^\#\s*MKDLL_SKIP/);
92 if (/^MODULE\s*=\s*([a-zA-Z0-9_.]+)/)
94 $module = $1;
95 if ($module =~ /^lib.*\.a$/)
97 ($staticlib_dirs{$module} = $i) =~ s/^dlls\/(.*)\/[^\/]+$/$1/;
98 die "invalid module $module in dir $staticlib_dirs{$module}\n" if "lib$staticlib_dirs{$module}.a" ne $module;
100 else
102 ($directories{$module} = $i) =~ s/^dlls\/(.*)\/[^\/]+$/$1/;
104 next;
106 if (/^IMPORTLIB\s*=\s*([a-zA-Z0-9_.]+)\.\$\(IMPLIBEXT\)/)
108 $importlibs{$module} = $1;
109 next;
111 if (/^IMPLIB_SRCS\s*=/)
113 $static_implibs{$module} = 1;
114 next;
116 if (/^SPEC_SRCS16\s*=\s*(.*)/)
118 my $specs = $1;
119 while ($specs =~ /\s*(.*)\\$/) { $specs = $1 . <MAKE>; }
120 my @list = split(/\s+/,$specs);
121 @list = map { $_ =~ s/\.spec$//; $_ .= ".dll" unless $_ =~ /\./; $_; } @list;
122 $altnames{$module} = \@list;
123 next;
126 close MAKE;
129 open NEWMAKE,">dlls/Makefile.in.new" or die "cannot create dlls/Makefile.in.new";
131 ################################################################
132 # makefile header
134 print NEWMAKE <<EOF;
135 # Automatically generated by make_dlls; DO NOT EDIT!!
137 TOPSRCDIR = \@top_srcdir\@
138 TOPOBJDIR = ..
139 SRCDIR = \@srcdir\@
140 VPATH = \@srcdir\@
144 ################################################################
145 # output special dlls configure definitions
147 printf NEWMAKE "# special configure-dependent targets\n\n";
148 my %specials = ();
149 foreach my $mod (sort keys %special_dlls)
151 $specials{$special_dlls{$mod}} .= " " . $mod;
153 foreach my $i (sort keys %specials)
155 printf NEWMAKE "%s =%s\n", $i, $specials{$i};
157 printf NEWMAKE "EXTRADIRS =";
158 foreach my $i (sort keys %specials) { printf NEWMAKE " \@%s\@", $i; }
159 printf NEWMAKE "\n\n";
162 ################################################################
163 # output the subdirs list
165 print NEWMAKE "# Subdir list\n\nBASEDIRS =";
166 foreach my $dir (sort values %directories)
168 next if defined($special_dlls{$dir}); # skip special dlls
169 printf NEWMAKE " \\\n\t%s", $dir;
172 print NEWMAKE "\n\nIMPLIBSUBDIRS = \\\n\t";
173 print NEWMAKE join " \\\n\t", sort values %staticlib_dirs;
175 print NEWMAKE "\n\nTESTSUBDIRS = \\\n\t";
176 print NEWMAKE join " \\\n\t", sort values %testdirs;
178 print NEWMAKE "\n\nSUBDIRS = \\\n\t";
179 print NEWMAKE join " \\\n\t", "\$(BASEDIRS)", "\$(IMPLIBSUBDIRS)", "\$(TESTSUBDIRS)",
180 sort keys %special_dlls;
181 print NEWMAKE <<EOF;
184 BUILDSUBDIRS = \$(BASEDIRS) \$(EXTRADIRS) \$(TESTSUBDIRS)
185 INSTALLSUBDIRS = \$(BASEDIRS) \$(EXTRADIRS) \$(IMPLIBSUBDIRS)
186 DOCSUBDIRS = \$(BASEDIRS) \$(EXTRADIRS)
189 ################################################################
190 # output the all: target
192 my %targets = (); # use a hash to get rid of duplicate target names
193 my %targets16 = ();
194 foreach my $mod (sort keys %directories)
196 next if defined($special_dlls{$directories{$mod}}); # skip special dlls
197 $targets{$mod . ".so"} = 1 if needs_symlink($mod);
198 next unless defined $altnames{$mod};
199 foreach my $i (sort @{$altnames{$mod}})
201 $targets16{$i . "16"} = $mod;
205 print NEWMAKE <<EOF;
207 \@MAKE_RULES\@
209 # Symbolic links
211 WIN16_FILES = \\
213 printf NEWMAKE "\t%s\n", join( " \\\n\t", sort keys %targets16 );
215 print NEWMAKE <<EOF;
217 SYMLINKS_SO = \\
218 \@WIN16_FILES\@ \\
220 printf NEWMAKE "\t%s\n", join( " \\\n\t", sort keys %targets );
222 print NEWMAKE <<EOF;
224 # Main target
226 all: \$(BUILDSUBDIRS) symlinks\$(DLLEXT)
228 .PHONY: symlinks symlinks.so implib
230 symlinks.so: \$(SYMLINKS_SO)
232 symlinks: \$(BUILDSUBDIRS)
236 ################################################################
237 # output the lib name -> directory rules
239 print NEWMAKE "# Map symlink name to the corresponding library\n\n";
240 foreach my $mod (sort keys %directories)
242 next unless needs_symlink($mod);
243 printf NEWMAKE "%s.so: %s/%s.so\n", $mod, $directories{$mod}, $mod;
244 printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s/%s.so \$@\n\n", $directories{$mod}, $mod;
247 print NEWMAKE "# Placeholders for 16-bit libraries\n\n";
248 foreach my $mod (sort keys %directories)
250 next unless defined $altnames{$mod};
251 printf NEWMAKE "%s:\n", join(" ", map { $_ . "16"; } sort @{$altnames{$mod}});
252 printf NEWMAKE "\techo \"%s\" >\$\@\n\n", $mod;
255 ################################################################
256 # output the import libraries rules
258 print NEWMAKE "# Import libraries\n\n";
259 print NEWMAKE "STATIC_IMPLIBEXT = \$(IMPLIBEXT:def=def.a)\n\n";
261 my @lib_symlinks = ();
262 foreach my $mod (sort keys %importlibs)
264 my $dir = $directories{$mod};
265 my $lib = $importlibs{$mod};
266 if ($lib ne "lib" . $dir) { push @lib_symlinks, $mod; }
268 print NEWMAKE "IMPORT_SYMLINKS =";
269 foreach my $mod (sort @lib_symlinks)
271 printf NEWMAKE " \\\n\t%s.\$(IMPLIBEXT)", $importlibs{$mod};
274 print NEWMAKE "\n\nIMPORT_LIBS = \\\n\t\$(IMPORT_SYMLINKS)";
275 foreach my $mod (sort keys %staticlib_dirs)
277 printf NEWMAKE " \\\n\t%s/%s", $staticlib_dirs{$mod}, $mod;
279 foreach my $mod (sort keys %importlibs)
281 my $dir = $directories{$mod};
282 my $def = $mod;
283 $def =~ s/\.(dll|drv)$//;
284 printf NEWMAKE " \\\n\t%s/lib%s.\$(IMPLIBEXT)", $dir, $def;
285 printf NEWMAKE " \\\n\t%s/lib%s.\$(STATIC_IMPLIBEXT)", $dir, $def if $static_implibs{$mod};
287 print NEWMAKE "\n\n";
288 print NEWMAKE "implib: \$(IMPORT_LIBS)\n\n";
290 foreach my $mod (sort keys %importlibs)
292 my $dir = $directories{$mod};
293 my $lib = $importlibs{$mod};
294 my $spec = $mod;
295 $spec =~ s/\.dll$//;
296 printf NEWMAKE "%s/%s.\$(IMPLIBEXT): %s/%s.spec \$(WINEBUILD)\n", $dir, $lib, $dir, $spec;
297 printf NEWMAKE "\t\@cd %s && \$(MAKE) %s.\$(IMPLIBEXT)\n\n", $dir, $lib;
298 next unless $static_implibs{$mod};
299 printf NEWMAKE "%s/%s.\$(STATIC_IMPLIBEXT): dummy\n", $dir, $lib, $dir, $spec;
300 printf NEWMAKE "\t\@cd %s && \$(MAKE) %s.\$(STATIC_IMPLIBEXT)\n\n", $dir, $lib;
302 foreach my $mod (sort @lib_symlinks)
304 my $dir = $directories{$mod};
305 my $lib = $importlibs{$mod} . ".\$(IMPLIBEXT)";
306 printf NEWMAKE "%s: %s/%s\n", $lib, $dir, $lib;
307 printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s/%s \$@\n\n", $dir, $lib;
310 print NEWMAKE <<EOF;
311 \$(BUILDSUBDIRS): \$(IMPORT_LIBS)
312 \$(INSTALLSUBDIRS:%=%/__install__) \$(INSTALLSUBDIRS:%=%/__install-lib__): \$(IMPORT_LIBS)
316 ################################################################
317 # output the inter-dll dependencies and rules
319 print NEWMAKE "# Map library name to the corresponding directory\n\n";
321 foreach my $mod (sort keys %directories)
323 next unless needs_symlink($mod);
324 printf NEWMAKE "%s/%s.so: %s\n", $directories{$mod}, $mod, $directories{$mod};
326 foreach my $mod (sort keys %staticlib_dirs)
328 printf NEWMAKE "%s/%s: %s\n", $staticlib_dirs{$mod}, $mod, $staticlib_dirs{$mod};
331 ################################################################
332 # makefile trailer
334 print NEWMAKE <<EOF;
336 # Misc rules
338 install-lib:: \$(INSTALLSUBDIRS:%=%/__install-lib__)
340 install-dev:: \$(INSTALLSUBDIRS:%=%/__install-dev__)
342 uninstall::
343 -rmdir \$(DESTDIR)\$(dlldir)
345 clean::
346 \$(RM) \$(IMPORT_SYMLINKS) \$(WIN16_FILES)
348 ### Dependencies:
351 close NEWMAKE;
352 update_file("dlls/Makefile.in");
354 ################################################################
355 # .gitignore file
357 open GITIGNORE, ">dlls/.gitignore.new" or die "cannot create dlls/.gitignore.new";
358 print GITIGNORE "# Automatically generated by make_dlls; DO NOT EDIT!!\n";
360 my @ignores =
362 "/Makedll.rules",
363 "/Makeimplib.rules",
364 "/Maketest.rules",
365 "*/tests/testlist.c",
366 "*/tests/*.ok",
369 foreach my $mod (sort @lib_symlinks)
371 push @ignores, "/$importlibs{$mod}.def";
373 foreach my $mod (sort keys %directories)
375 next unless defined $altnames{$mod};
376 push @ignores, map { "/" . $_ . "16"; } @{$altnames{$mod}};
378 foreach my $mod (sort keys %importlibs)
380 my $dir = $directories{$mod};
381 my $def = $mod;
382 $def =~ s/\.(dll|drv)$//;
383 push @ignores, "$dir/lib$def.def";
386 print GITIGNORE join("\n", sort @ignores) . "\n";
388 close GITIGNORE;
389 update_file("dlls/.gitignore");