Enable SCSI_getprocentry() on non-Linux platforms which now should be
[wine/wine64.git] / dlls / make_dlls
blob4e2f97aec3024fcb053e2cd7c9fbad1b60896f43
1 #!/usr/bin/perl -w
3 # Update the dll dependencies in the dlls main Makefile.in.
4 # Must be run in the dlls/ directory of the Wine tree.
6 # Copyright 2001 Alexandre Julliard
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.
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.
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
23 use strict;
25 my $makefiles = `find . -name Makefile.in -print`;
27 my %directories = ();
28 my %importlibs = ();
29 my %static_implibs = ();
30 my %staticlib_dirs = ();
31 my %altnames = ();
33 # list of special dlls that can be switched on or off by configure
34 my %special_dlls =
36 "ddraw" => "XFILES",
37 "glu32" => "GLU32FILES",
38 "glut32" => "GLUT32FILES",
39 "opengl32" => "OPENGLFILES",
40 "d3d8" => "OPENGLFILES",
41 "d3d9" => "OPENGLFILES",
42 "d3dx8" => "OPENGLFILES",
43 "wined3d" => "OPENGLFILES",
44 "x11drv" => "XFILES"
47 foreach my $i (split(/\s/,$makefiles))
49 my $module;
51 next if $i =~ /\/tests\/Makefile.in/;
53 open MAKE,$i;
55 $module = undef;
56 while (<MAKE>)
58 chop;
59 # EPP hack to disable this DLL... the MKDLL_SKIP comment must appear
60 # at the very top of the Makefile.in
61 last if (/^\#\s*MKDLL_SKIP/);
63 if (/^MODULE\s*=\s*([a-zA-Z0-9_.]+)/)
65 $module = $1;
66 if ($module =~ /^lib.*\.a$/)
68 ($staticlib_dirs{$module} = $i) =~ s/^\.\/(.*)\/[^\/]+$/$1/;
70 else
72 ($directories{$module} = $i) =~ s/^\.\/(.*)\/[^\/]+$/$1/;
74 next;
76 if (/^IMPORTLIB\s*=\s*([a-zA-Z0-9_.]+)\.\$\(IMPLIBEXT\)/)
78 $importlibs{$module} = $1;
79 next;
81 if (/^IMPLIB_SRCS\s*=/)
83 $static_implibs{$module} = 1;
84 next;
86 if (/^SPEC_SRCS16\s*=\s*(.*)/)
88 my $specs = $1;
89 while ($specs =~ /\s*(.*)\\$/) { $specs = $1 . <MAKE>; }
90 my @list = split(/\s+/,$specs);
91 @list = map { $_ =~ s/\.spec$//; $_ .= ".dll" unless $_ =~ /\./; $_; } @list;
92 $altnames{$module} = \@list;
93 next;
96 close MAKE;
99 open NEWMAKE,">Makefile.in.new" or die "cannot create Makefile.in.new";
101 ################################################################
102 # makefile header
104 print NEWMAKE <<EOF;
105 # Automatically generated by make_dlls; DO NOT EDIT!!
107 TOPSRCDIR = \@top_srcdir\@
108 TOPOBJDIR = ..
109 SRCDIR = \@srcdir\@
110 VPATH = \@srcdir\@
114 ################################################################
115 # output special dlls configure definitions
117 printf NEWMAKE "# special configure-dependent targets\n\n";
118 my %specials = ();
119 foreach my $mod (sort keys %special_dlls)
121 $specials{$special_dlls{$mod}} .= " " . $mod;
123 foreach my $i (sort keys %specials)
125 printf NEWMAKE "%s =%s\n", $i, $specials{$i};
127 printf NEWMAKE "EXTRADIRS =";
128 foreach my $i (sort keys %specials) { printf NEWMAKE " \@%s\@", $i; }
129 printf NEWMAKE "\n\n";
132 ################################################################
133 # output the subdirs list
135 print NEWMAKE "# Subdir list\n\nBASEDIRS =";
136 foreach my $dir (sort values %directories)
138 next if defined($special_dlls{$dir}); # skip special dlls
139 printf NEWMAKE " \\\n\t%s", $dir;
142 printf NEWMAKE "\n\nSUBDIRS = \\\n\t\$(BASEDIRS)";
143 foreach my $dir (sort (keys %special_dlls, values %staticlib_dirs))
145 printf NEWMAKE " \\\n\t%s", $dir;
147 printf NEWMAKE <<EOF;
150 BUILDSUBDIRS = \$(BASEDIRS) \$(EXTRADIRS)
152 INSTALLSUBDIRS = \$(BUILDSUBDIRS)
155 ################################################################
156 # output the all: target
158 my %targets = (); # use a hash to get rid of duplicate target names
159 my %targets16 = ();
160 foreach my $mod (sort keys %directories)
162 next if defined($special_dlls{$directories{$mod}}); # skip special dlls
163 $targets{$mod . ".so"} = 1;
164 next unless defined $altnames{$mod};
165 foreach my $i (sort @{$altnames{$mod}})
167 $targets16{sprintf("%s.so",$i)} = 1;
170 foreach my $mod (sort keys %staticlib_dirs) { $targets{$mod} = 1; }
172 print NEWMAKE <<EOF;
174 \@MAKE_RULES\@
176 # Symbolic links
178 WIN16_FILES = \\
180 printf NEWMAKE "\t%s\n", join( " \\\n\t", sort keys %targets16 );
182 print NEWMAKE <<EOF;
184 SYMLINKS_SO = \\
185 \$(EXTRADIRS:%=%.dll.so) \\
186 \@WIN16_FILES\@ \\
188 printf NEWMAKE "\t%s\n", join( " \\\n\t", sort keys %targets );
190 print NEWMAKE <<EOF;
192 # Main target
194 all: symlinks\$(DLLEXT)
196 .PHONY: symlinks symlinks.so implib
198 symlinks.so: \$(SYMLINKS_SO)
200 symlinks: \$(BUILDSUBDIRS)
202 x11drv.dll.so: winex11.drv.so
203 \$(RM) \$@ && \$(LN_S) winex11.drv.so \$@
207 ################################################################
208 # output the lib name -> directory rules
210 print NEWMAKE <<EOF;
212 # Map symlink name to the corresponding library
216 foreach my $mod (sort keys %directories)
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;
221 if (defined $altnames{$mod})
223 my $count = 0;
224 foreach my $i (sort @{$altnames{$mod}})
226 if ($count++ == 3) { printf NEWMAKE "\\\n "; $count = 1; }
227 printf NEWMAKE "%s.so ", $i;
229 printf NEWMAKE ": %s.so\n", $mod;
230 printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s.so \$@\n\n", $mod;
233 foreach my $mod (sort keys %staticlib_dirs)
235 printf NEWMAKE "%s: %s/%s\n", $mod, $staticlib_dirs{$mod}, $mod;
236 printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s/%s \$@\n\n", $staticlib_dirs{$mod}, $mod;
239 ################################################################
240 # output the import libraries rules
242 print NEWMAKE "\n# Import libraries\n\n";
243 print NEWMAKE "STATIC_IMPLIBEXT = \$(IMPLIBEXT:def=def.a)\n\n";
245 my @lib_symlinks = ("ntdll.dll");
246 foreach my $mod (sort keys %importlibs)
248 my $dir = $directories{$mod};
249 my $lib = $importlibs{$mod};
250 if ($lib ne "lib" . $dir) { push @lib_symlinks, $mod; }
252 print NEWMAKE "IMPORT_SYMLINKS =";
253 foreach my $mod (sort @lib_symlinks)
255 printf NEWMAKE " \\\n\t%s.\$(IMPLIBEXT)", $importlibs{$mod};
257 foreach my $mod (sort keys %staticlib_dirs)
259 printf NEWMAKE " \\\n\t%s", $mod;
262 print NEWMAKE "\n\nIMPORT_LIBS = \\\n\t\$(IMPORT_SYMLINKS)";
263 foreach my $mod (sort keys %importlibs)
265 my $dir = $directories{$mod};
266 my $def = $mod;
267 $def =~ s/\.(dll|drv)$//;
268 printf NEWMAKE " \\\n\t%s/lib%s.\$(IMPLIBEXT)", $dir, $def;
269 printf NEWMAKE " \\\n\t%s/lib%s.\$(STATIC_IMPLIBEXT)", $dir, $def if $static_implibs{$mod};
271 print NEWMAKE "\n\n";
272 print NEWMAKE "implib: \$(IMPORT_LIBS)\n\n";
274 foreach my $mod (sort keys %importlibs)
276 my $dir = $directories{$mod};
277 my $lib = $importlibs{$mod};
278 my $spec = $mod;
279 $spec =~ s/\.dll$//;
280 printf NEWMAKE "%s/%s.\$(IMPLIBEXT): %s/%s.spec \$(WINEBUILD)\n", $dir, $lib, $dir, $spec;
281 printf NEWMAKE "\t\@cd %s && \$(MAKE) %s.\$(IMPLIBEXT)\n\n", $dir, $lib;
282 next unless $static_implibs{$mod};
283 printf NEWMAKE "%s/%s.\$(STATIC_IMPLIBEXT): dummy\n", $dir, $lib, $dir, $spec;
284 printf NEWMAKE "\t\@cd %s && \$(MAKE) %s.\$(STATIC_IMPLIBEXT)\n\n", $dir, $lib;
286 foreach my $mod (sort @lib_symlinks)
288 my $dir = $directories{$mod};
289 my $lib = $importlibs{$mod} . ".\$(IMPLIBEXT)";
290 printf NEWMAKE "%s: %s/%s\n", $lib, $dir, $lib;
291 printf NEWMAKE "\t\$(RM) \$@ && \$(LN_S) %s/%s \$@\n\n", $dir, $lib;
294 print NEWMAKE <<EOF;
295 \$(BUILDSUBDIRS): \$(IMPORT_LIBS)
296 \$(INSTALLSUBDIRS:%=%/__install__) \$(INSTALLSUBDIRS:%=%/__install-lib__): \$(IMPORT_LIBS)
300 ################################################################
301 # output the inter-dll dependencies and rules
303 print NEWMAKE "# Map library name to the corresponding directory\n\n";
305 foreach my $mod (sort keys %directories)
307 printf NEWMAKE "%s/%s.so: %s\n", $directories{$mod}, $mod, $directories{$mod};
309 foreach my $mod (sort keys %staticlib_dirs)
311 printf NEWMAKE "%s/%s: %s\n", $staticlib_dirs{$mod}, $mod, $staticlib_dirs{$mod};
314 ################################################################
315 # makefile trailer
317 print NEWMAKE <<EOF;
319 # Rules for auto documentation
321 \$(SUBDIRS:%=%/__man__): dummy
322 cd `dirname \$@` && \$(MAKE) man
324 man: \$(SUBDIRS:%=%/__man__)
326 \$(SUBDIRS:%=%/__doc_html__): dummy
327 cd `dirname \$@` && \$(MAKE) doc-html
329 doc-html: \$(SUBDIRS:%=%/__doc_html__)
331 \$(SUBDIRS:%=%/__doc_sgml__): dummy
332 cd `dirname \$@` && \$(MAKE) doc-sgml
334 doc-sgml: \$(SUBDIRS:%=%/__doc_sgml__)
336 .PHONY: man doc-html doc-sgml \$(SUBDIRS:%=%/__man__) \$(SUBDIRS:%=%/__doc_html__) \$(SUBDIRS:%=%/__doc_sgml__)
338 # Misc rules
340 install-lib:: \$(INSTALLSUBDIRS:%=%/__install-lib__)
342 install-dev:: \$(INSTALLSUBDIRS:%=%/__install-dev__)
344 uninstall::
345 -rmdir \$(dlldir)
347 clean::
348 \$(RM) \$(IMPORT_SYMLINKS)
350 check test:: \$(BUILDSUBDIRS:%=%/__test__)
352 crosstest:: \$(BUILDSUBDIRS:%=%/__crosstest__)
354 checklink:: \$(BUILDSUBDIRS:%=%/__checklink__)
356 ### Dependencies:
359 close NEWMAKE;
360 rename "Makefile.in.new", "Makefile.in";
361 printf "Successfully updated Makefile.in\n";