Added rules for building import libraries in the individual dll
[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 %directories = ();
28 my %implib_dirs = ();
29 my %altnames = ();
30
31 # list of special dlls that can be switched on or off by configure
32 my %special_dlls =
33 (
34   "ddraw"    => "XFILES",
35   "glu32"    => "GLU32FILES",
36   "glut32"   => "GLUT32FILES",
37   "opengl32" => "OPENGLFILES",
38   "d3d8"     => "OPENGLFILES",
39   "d3d9"     => "OPENGLFILES",
40   "d3dx8"    => "OPENGLFILES",
41   "wined3d"  => "OPENGLFILES",
42   "x11drv"   => "XFILES"
43 );
44
45 foreach my $i (split(/\s/,$makefiles))
46 {
47     my $module;
48
49     next if $i =~ /\/tests\/Makefile.in/;
50
51     open MAKE,$i;
52
53     $module = undef;
54     while (<MAKE>)
55     {
56         chop;
57         # EPP hack to disable this DLL... the MKDLL_SKIP comment must appear
58         # at the very top of the Makefile.in
59         last if (/^\#\s*MKDLL_SKIP/);
60
61         if (/^MODULE\s*=\s*([a-zA-Z0-9_.]+)/)
62         {
63             $module = $1;
64             if ($module =~ /^lib.*\.a$/)
65             {
66                 ($implib_dirs{$module} = $i) =~ s/^\.\/(.*)\/[^\/]+$/$1/;
67             }
68             else
69             {
70                 ($directories{$module} = $i) =~ s/^\.\/(.*)\/[^\/]+$/$1/;
71             }
72             next;
73         }
74         if (/^SPEC_SRCS16\s*=\s*(.*)/)
75         {
76             my $specs = $1;
77             while ($specs =~ /\s*(.*)\\$/) { $specs = $1 . <MAKE>; }
78             my @list = split(/\s+/,$specs);
79             @list = map { $_ =~ s/\.spec$//; $_ .= ".dll" unless $_ =~ /\./; $_; } @list;
80             $altnames{$module} = \@list;
81             next;
82         }
83     }
84     close MAKE;
85 }
86
87 open NEWMAKE,">Makefile.in.new" or die "cannot create Makefile.in.new";
88
89 ################################################################
90 # makefile header
91
92 print NEWMAKE <<EOF;
93 # Automatically generated by make_dlls; DO NOT EDIT!!
94
95 TOPSRCDIR = \@top_srcdir\@
96 TOPOBJDIR = ..
97 SRCDIR    = \@srcdir\@
98 VPATH     = \@srcdir\@
99
100 EOF
101
102 ################################################################
103 # output special dlls configure definitions
104
105 printf NEWMAKE "# special configure-dependent targets\n\n";
106 my %specials = ();
107 foreach my $mod (sort keys %special_dlls)
108 {
109     $specials{$special_dlls{$mod}} .= " " . $mod;
110 }
111 foreach my $i (sort keys %specials)
112 {
113     printf NEWMAKE "%s =%s\n", $i, $specials{$i};
114 }
115 printf NEWMAKE "EXTRADIRS =";
116 foreach my $i (sort keys %specials) { printf NEWMAKE " \@%s\@", $i; }
117 printf NEWMAKE "\n\n";
118
119
120 ################################################################
121 # output the subdirs list
122
123 print NEWMAKE "# Subdir list\n\nBASEDIRS =";
124 foreach my $dir (sort values %directories)
125 {
126     next if defined($special_dlls{$dir});  # skip special dlls
127     printf NEWMAKE " \\\n\t%s", $dir;
128 }
129
130 printf NEWMAKE "\n\nSUBDIRS = \\\n\t\$(BASEDIRS)";
131 foreach my $dir (sort (keys %special_dlls, values %implib_dirs))
132 {
133     printf NEWMAKE " \\\n\t%s", $dir;
134 }
135 printf NEWMAKE <<EOF;
136
137
138 BUILDSUBDIRS = \$(BASEDIRS) \$(EXTRADIRS)
139
140 INSTALLSUBDIRS = \$(BUILDSUBDIRS)
141 EOF
142
143 ################################################################
144 # output the all: target
145
146 my %targets = ();  # use a hash to get rid of duplicate target names
147 my %targets16 = ();
148 foreach my $mod (sort keys %directories)
149 {
150     next if defined($special_dlls{$directories{$mod}});  # skip special dlls
151     $targets{$mod . ".so"} = 1;
152     next unless defined $altnames{$mod};
153     foreach my $i (sort @{$altnames{$mod}})
154     {
155         $targets16{sprintf("%s.so",$i)} = 1;
156     }
157 }
158 foreach my $mod (sort keys %implib_dirs) { $targets{$mod} = 1; }
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_SO = \\
173         \$(EXTRADIRS:%=%.dll.so) \\
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\$(DLLEXT)
183
184 .PHONY: symlinks symlinks.so implib
185
186 symlinks.so: \$(SYMLINKS_SO)
187
188 symlinks: \$(BUILDSUBDIRS)
189
190 x11drv.dll.so: winex11.drv.so
191         \$(RM) \$@ && \$(LN_S) winex11.drv.so \$@
192
193 EOF
194
195 ################################################################
196 # output the lib name -> directory rules
197
198 print NEWMAKE <<EOF;
199
200 # Map symlink name to the corresponding library
201
202 EOF
203
204 foreach my $mod (sort keys %directories)
205 {
206     printf NEWMAKE "%s.so: %s/%s.so\n", $mod, $directories{$mod}, $mod;
207     printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s/%s.so \$@\n\n", $directories{$mod}, $mod;
208
209     if (defined $altnames{$mod})
210     {
211         my $count = 0;
212         foreach my $i (sort @{$altnames{$mod}})
213         {
214             if ($count++ == 3) { printf NEWMAKE "\\\n  "; $count = 1; }
215             printf NEWMAKE "%s.so ", $i;
216         }
217         printf NEWMAKE ": %s.so\n", $mod;
218         printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s.so \$@\n\n", $mod;
219     }
220 }
221 foreach my $mod (sort keys %implib_dirs)
222 {
223     printf NEWMAKE "%s: %s/%s\n", $mod, $implib_dirs{$mod}, $mod;
224     printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s/%s \$@\n\n", $implib_dirs{$mod}, $mod;
225 }
226
227 ################################################################
228 # output the import libraries rules
229
230 my @implibs = grep /\.dll$/, keys %directories;
231 push @implibs, "winspool.drv";
232
233 print NEWMAKE "\n# Import libraries\n\nIMPORT_LIBS =";
234 foreach my $mod (sort @implibs)
235 {
236     my $def = $mod;
237     $def =~ s/\.(dll|drv)$//;
238     printf NEWMAKE " \\\n\tlib%s.\$(IMPLIBEXT)", $def;
239 }
240 foreach my $mod (sort keys %implib_dirs)
241 {
242     printf NEWMAKE " \\\n\t%s", $mod;
243 }
244 print NEWMAKE "\n\n";
245 print NEWMAKE "implib: \$(IMPORT_LIBS)\n\n";
246
247 foreach my $mod (sort @implibs)
248 {
249     my $dir = $directories{$mod};
250     my $def = $mod;
251     my $spec = $mod;
252     $spec =~ s/\.dll$//;
253     $def =~ s/\.(dll|drv)$//;
254     printf NEWMAKE "lib%s.def: %s/lib%s.def\n", $def, $dir, $spec;
255     printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s/lib%s.def \$@\n", $dir, $spec;
256     printf NEWMAKE "lib%s.a: %s/lib%s.a\n", $def, $dir, $spec;
257     printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s/lib%s.a \$@\n", $dir, $spec;
258     printf NEWMAKE "%s/lib%s.def: %s/%s.spec \$(WINEBUILD)\n", $dir, $spec, $dir, $spec;
259     printf NEWMAKE "\t\$(WINEBUILD) -w --def -o \$@ --export \$(SRCDIR)/%s/%s.spec\n", $dir, $spec;
260     printf NEWMAKE "%s/lib%s.a: %s/lib%s.def\n", $dir, $spec, $dir, $spec;
261     printf NEWMAKE "\t\$(DLLTOOL) -k -l \$@ -d %s/lib%s.def\n\n", $dir, $spec;
262 }
263
264 print NEWMAKE <<EOF;
265
266 \$(BUILDSUBDIRS): \$(IMPORT_LIBS)
267 \$(INSTALLSUBDIRS:%=%/__install__): \$(IMPORT_LIBS)
268
269 EOF
270
271 ################################################################
272 # output the inter-dll dependencies and rules
273
274 print NEWMAKE "# Map library name to the corresponding directory\n\n";
275
276 foreach my $mod (sort keys %directories)
277 {
278     printf NEWMAKE "%s/%s.so: %s\n", $directories{$mod}, $mod, $directories{$mod};
279 }
280 foreach my $mod (sort keys %implib_dirs)
281 {
282     printf NEWMAKE "%s/%s: %s\n", $implib_dirs{$mod}, $mod, $implib_dirs{$mod};
283 }
284
285 ################################################################
286 # makefile trailer
287
288 print NEWMAKE <<EOF;
289
290 # Rules for auto documentation
291
292 \$(SUBDIRS:%=%/__man__): dummy
293         cd `dirname \$@` && \$(MAKE) man
294
295 man: \$(SUBDIRS:%=%/__man__)
296
297 \$(SUBDIRS:%=%/__doc_html__): dummy
298         cd `dirname \$@` && \$(MAKE) doc-html
299
300 doc-html: \$(SUBDIRS:%=%/__doc_html__)
301
302 \$(SUBDIRS:%=%/__doc_sgml__): dummy
303         cd `dirname \$@` && \$(MAKE) doc-sgml
304
305 doc-sgml: \$(SUBDIRS:%=%/__doc_sgml__)
306
307 .PHONY: man doc-html doc-sgml \$(SUBDIRS:%=%/__man__) \$(SUBDIRS:%=%/__doc_html__) \$(SUBDIRS:%=%/__doc_sgml__)
308
309 # Misc rules
310
311 install-lib:: \$(INSTALLSUBDIRS:%=%/__install-lib__)
312
313 install-dev:: \$(INSTALLSUBDIRS:%=%/__install-dev__)
314
315 uninstall::
316         -rmdir \$(dlldir)
317
318 clean::
319         \$(RM) \$(IMPORT_LIBS)
320
321 check test:: \$(BUILDSUBDIRS:%=%/__test__)
322
323 crosstest:: \$(BUILDSUBDIRS:%=%/__crosstest__)
324
325 checklink:: \$(BUILDSUBDIRS:%=%/__checklink__)
326
327 ### Dependencies:
328 EOF
329
330 close NEWMAKE;
331 rename "Makefile.in.new", "Makefile.in";
332 printf "Successfully updated Makefile.in\n";