Portability fix. Better debug messages (display IID of interface to
[wine] / dlls / make_dlls
1 #!/usr/bin/perl -w
2 #
3 # Update the dll dependencies in the dlls main Makefile.in.
4 # Must be run in the dlls/ directory of the Wine tree.
5 #
6 # Copyright 2001 Alexandre Julliard
7 #
8 # This library is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Lesser General Public
10 # License as published by the Free Software Foundation; either
11 # version 2.1 of the License, or (at your option) any later version.
12 #
13 # This library is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # Lesser General Public License for more details.
17 #
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with this library; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21 #
22
23 use strict;
24
25 my $makefiles = `find . -name Makefile.in -print`;
26
27 my %imports = ();
28 my %directories = ();
29 my %altnames = ();
30 my %linked_dlls = ();
31
32 # list of special dlls that can be switched on or off by configure
33 my %special_dlls =
34 (
35   "ddraw"    => "XFILES",
36   "glu32"    => "GLU32FILES",
37   "opengl32" => "OPENGLFILES",
38   "d3d8"     => "OPENGLFILES",
39   "d3dx8"    => "OPENGLFILES",
40   "x11drv"   => "XFILES"
41 );
42
43 foreach my $i (split(/\s/,$makefiles))
44 {
45     my $module;
46
47     next if $i =~ /\/tests\/Makefile.in/;
48
49     open MAKE,$i;
50
51     $module = undef;
52     while (<MAKE>)
53     {
54         chop;
55         # EPP hack to disable this DLL... the MKDLL_SKIP comment must appear
56         # at the very top of the Makefile.in
57         last if (/^\#\s*MKDLL_SKIP/);
58
59         if (/^MODULE\s*=\s*([a-zA-Z0-9_.]+)/)
60         {
61             $module = $1;
62             $imports{$module} = [ ];
63             ($directories{$module} = $i) =~ s/^\.\/(.*)\/[^\/]+$/$1/;
64             next;
65         }
66         if (/^ALTNAMES\s*=\s*(.*)/)
67         {
68             my @list = split(/\s/,$1);
69             $altnames{$module} = \@list;
70             next;
71         }
72         if (/^(DELAYIMPORTS|IMPORTS)\s*=\s*(.*)/)
73         {
74             my @list = map { /\./ ? $_ : $_ . ".dll"; } split(/\s/,$2);
75             push @{$imports{$module}}, @list;
76             next;
77         }
78         if (/^LDIMPORTS\s*=\s*(.*)/)
79         {
80             my @list = map { /\./ ? $_ : $_ . ".dll"; } split(/\s/,$1);
81             $linked_dlls{$module} = \@list;
82             next;
83         }
84     }
85     close MAKE;
86     push @{$imports{$module}}, "kernel32.dll" unless !defined($module) || @{$imports{$module}} || $module eq "ntdll.dll";
87 }
88
89 open NEWMAKE,">Makefile.in.new" or die "cannot create Makefile.in.new";
90
91 ################################################################
92 # makefile header
93
94 print NEWMAKE <<EOF;
95 # Automatically generated by make_dlls; DO NOT EDIT!!
96
97 TOPSRCDIR = \@top_srcdir\@
98 TOPOBJDIR = ..
99 SRCDIR    = \@srcdir\@
100 VPATH     = \@srcdir\@
101
102 EOF
103
104 ################################################################
105 # output special dlls configure definitions
106
107 printf NEWMAKE "# special configure-dependent targets\n\n";
108 my %specials = ();
109 foreach my $mod (sort keys %special_dlls)
110 {
111     $specials{$special_dlls{$mod}} .= " " . $mod;
112 }
113 foreach my $i (sort keys %specials)
114 {
115     printf NEWMAKE "%s =%s\n", $i, $specials{$i};
116 }
117 printf NEWMAKE "EXTRADIRS =";
118 foreach my $i (sort keys %specials) { printf NEWMAKE " \@%s\@", $i; }
119 printf NEWMAKE "\n\n";
120
121
122 ################################################################
123 # output the subdirs list
124
125 print NEWMAKE "# Subdir list\n\nBASEDIRS =";
126 foreach my $dir (sort values %directories)
127 {
128     next if defined($special_dlls{$dir});  # skip special dlls
129     printf NEWMAKE " \\\n\t%s", $dir;
130 }
131
132 printf NEWMAKE "\n\nSUBDIRS = \\\n\t\$(BASEDIRS)";
133 foreach my $dir (sort keys %special_dlls)
134 {
135     printf NEWMAKE " \\\n\t%s", $dir;
136 }
137 printf NEWMAKE <<EOF;
138
139
140 BUILDSUBDIRS = \$(BASEDIRS) \$(EXTRADIRS)
141
142 INSTALLSUBDIRS = \$(BUILDSUBDIRS)
143 EOF
144
145 ################################################################
146 # output the all: target
147
148 my %targets = ();  # use a hash to get rid of duplicate target names
149 my %targets16 = ();
150 foreach my $mod (sort keys %directories)
151 {
152     next if defined($special_dlls{$directories{$mod}});  # skip special dlls
153     $targets{sprintf("%s\$(DLLEXT)",$mod)} = 1;
154     next unless defined $altnames{$mod};
155     foreach my $i (sort @{$altnames{$mod}})
156     {
157         $targets16{sprintf("%s\$(DLLEXT)",$i)} = 1;
158     }
159 }
160 print NEWMAKE <<EOF;
161
162 \@MAKE_RULES\@
163
164 # Symbolic links
165
166 WIN16_FILES = \\
167 EOF
168 printf NEWMAKE "\t%s\n", join( " \\\n\t", sort keys %targets16 );
169
170 print NEWMAKE <<EOF;
171
172 SYMLINKS = \\
173         \$(EXTRADIRS:%=%.dll\$(DLLEXT)) \\
174         \@WIN16_FILES\@ \\
175 EOF
176 printf NEWMAKE "\t%s\n", join( " \\\n\t", sort keys %targets );
177
178 print NEWMAKE <<EOF;
179
180 # Main target
181
182 all: \$(SYMLINKS)
183 EOF
184
185 ################################################################
186 # output the lib name -> directory rules
187
188 print NEWMAKE <<EOF;
189
190 # Map symlink name to the corresponding library
191
192 EOF
193
194 foreach my $mod (sort keys %directories)
195 {
196     printf NEWMAKE "%s\$(DLLEXT)", $mod;
197     if (defined $altnames{$mod})
198     {
199         my $count = 1;
200         foreach my $i (sort @{$altnames{$mod}})
201         {
202             if (!($count++ % 3)) { printf NEWMAKE " \\\n "; }
203             printf NEWMAKE " %s\$(DLLEXT)", $i;
204         }
205     }
206     printf NEWMAKE ": %s/%s\$(DLLEXT)\n", $directories{$mod}, $mod;
207     printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s/%s\$(DLLEXT) \$@\n\n", $directories{$mod}, $mod;
208 }
209
210
211 ################################################################
212 # output the import libraries rules
213
214 my @implibs = grep /\.dll$/, keys %directories;
215 push @implibs, "winspool.drv";
216
217 print NEWMAKE "\n# Import libraries\n\nIMPORT_LIBS =";
218 foreach my $mod (sort @implibs)
219 {
220     my $def = $mod;
221     $def =~ s/\.(dll|drv)$//;
222     printf NEWMAKE " \\\n\tlib%s", $def;
223 }
224 print NEWMAKE "\n\n";
225
226 foreach my $mod (sort @implibs)
227 {
228     my $dir = $directories{$mod};
229     my $def = $mod;
230     my $spec = $mod;
231     $spec =~ s/\.dll$//;
232     $def =~ s/\.(dll|drv)$//;
233     printf NEWMAKE "lib%s.def: %s/%s.spec.def\n", $def, $dir, $spec;
234     printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s/%s.spec.def \$@\n", $dir, $spec;
235     printf NEWMAKE "lib%s.a: %s/%s.spec.def\n", $def, $dir, $spec;
236     printf NEWMAKE "\t\$(DLLTOOL) -k -l \$@ -d %s/%s.spec.def\n\n", $dir, $spec;
237 }
238 foreach my $mod (sort @implibs)
239 {
240     my $dir = $directories{$mod};
241     my $spec = $mod;
242     $spec =~ s/\.dll$//;
243     printf NEWMAKE "%s/%s.spec.def: \$(WINEBUILD)\n", $dir, $spec;
244 }
245
246
247 print NEWMAKE <<EOF;
248
249 \$(SUBDIRS): \$(IMPORT_LIBS:%=%.\$(IMPLIBEXT))
250 \$(SUBDIRS:%=%/__crosstest__): \$(IMPORT_LIBS:%=%.a)
251
252 EOF
253
254 ################################################################
255 # output the inter-dll dependencies and rules
256
257 print NEWMAKE "# Map library name to the corresponding directory\n\n";
258
259 foreach my $mod (sort keys %directories)
260 {
261     printf NEWMAKE "%s/%s\$(DLLEXT): %s\n", $directories{$mod}, $mod, $directories{$mod};
262 }
263
264 ################################################################
265 # output the linkable dlls special links
266
267 my %linkable_dlls = ();
268 foreach my $mod (keys %imports)
269 {
270     foreach my $i (@{$linked_dlls{$mod}}) { $linkable_dlls{$i} = 1; }
271 }
272
273 print NEWMAKE "\n# Special targets for dlls that we need to link to\n\n";
274 printf NEWMAKE "LINKABLE_DLLS = %s\n\n", join( " ", keys %linkable_dlls );
275
276 foreach my $mod (keys %linkable_dlls)
277 {
278     printf NEWMAKE "lib%s.\$(LIBEXT): %s/%s\$(DLLEXT)\n", $mod, $directories{$mod}, $mod;
279     printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s/%s\$(DLLEXT) \$@\n\n", $directories{$mod}, $mod;
280 }
281
282 foreach my $mod (keys %imports)
283 {
284     my $deps = "";
285     foreach my $i (@{$linked_dlls{$mod}}) { $deps .= " lib$i.\$(LIBEXT)"; }
286     if ($deps) { printf NEWMAKE "%s:%s\n", $directories{$mod}, $deps; }
287 }
288
289 print NEWMAKE <<EOF;
290
291 uninstall::
292         \$(RM) \$(LINKABLE_DLLS:%=\$(libdir)/lib%.\$(LIBEXT))
293
294 install install-lib:: \$(INSTALLSUBDIRS:%=%/__install__)
295         \$(RM) \$(LINKABLE_DLLS:%=\$(libdir)/lib%.\$(LIBEXT))
296         cd \$(libdir) && if [ "\$(dlldir)" = "\$(libdir)/wine" ]; \\
297         then \\
298 EOF
299 foreach my $mod (keys %linkable_dlls)
300 {
301     printf NEWMAKE "\t  \$(LN_S) wine/%s\$(DLLEXT) lib%s.\$(LIBEXT); \\\n", $mod, $mod;
302 }
303 print NEWMAKE "\telse \\\n";
304 foreach my $mod (keys %linkable_dlls)
305 {
306     printf NEWMAKE "\t  \$(LN_S) \$(dlldir)/%s\$(DLLEXT) lib%s.\$(LIBEXT); \\\n", $mod, $mod;
307 }
308 print NEWMAKE "\tfi\n\n";
309
310 ################################################################
311 # makefile trailer
312
313 print NEWMAKE <<EOF;
314 # Rules for auto documentation
315
316 \$(SUBDIRS:%=%/__man__): dummy
317         cd `dirname \$@` && \$(MAKE) man
318
319 man: \$(SUBDIRS:%=%/__man__)
320
321 \$(SUBDIRS:%=%/__doc_html__): dummy
322         cd `dirname \$@` && \$(MAKE) doc-html
323
324 doc-html: \$(SUBDIRS:%=%/__doc_html__)
325
326 \$(SUBDIRS:%=%/__doc_sgml__): dummy
327         cd `dirname \$@` && \$(MAKE) doc-sgml
328
329 doc-sgml: \$(SUBDIRS:%=%/__doc_sgml__)
330
331 .PHONY: man doc-html doc-sgml \$(SUBDIRS:%=%/__man__) \$(SUBDIRS:%=%/__doc_html__) \$(SUBDIRS:%=%/__doc_sgml__)
332
333 # Misc rules
334
335 install install-dev:: \$(IMPORT_LIBS:%=%.\$(IMPLIBEXT))
336         \$(MKINSTALLDIRS) \$(dlldir)
337         for f in \$(IMPORT_LIBS:%=%.\$(IMPLIBEXT)); do \$(INSTALL_DATA) \$\$f \$(dlldir)/\$\$f; done
338
339 uninstall::
340         \$(RM) \$(IMPORT_LIBS:%=\$(dlldir)/%.\$(IMPLIBEXT))
341         -rmdir \$(dlldir)
342
343 clean::
344         \$(RM) \$(IMPORT_LIBS:%=%.a) \$(IMPORT_LIBS:%=%.def) \$(SYMLINKS)
345
346 check test:: \$(BUILDSUBDIRS:%=%/__test__)
347
348 crosstest:: \$(BUILDSUBDIRS:%=%/__crosstest__)
349
350 checklink:: \$(BUILDSUBDIRS:%=%/__checklink__)
351
352 ### Dependencies:
353 EOF
354
355 close NEWMAKE;
356 rename "Makefile.in.new", "Makefile.in";
357 printf "Successfully updated Makefile.in\n";