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