descrip.mms.tmpl: Simplify fiddling of logical names record and statem
[openssl.git] / Configurations / windows-makefile.tmpl
1 ##
2 ## Makefile for OpenSSL
3 ##
4 ## {- join("\n## ", @autowarntext) -}
5 {-
6  our $objext = $target{obj_extension} || ".obj";
7  our $depext = $target{dep_extension} || ".d";
8  our $exeext = $target{exe_extension} || ".exe";
9  our $libext = $target{lib_extension} || ".lib";
10  our $shlibext = $target{shared_extension} || ".dll";
11  our $shlibextimport = $target{shared_import_extension} || ".lib";
12  our $dsoext = $target{dso_extension} || ".dll";
13
14  our $sover = $config{shlib_major}."_".$config{shlib_minor};
15
16  my $win_installenv =
17      $target{build_scheme}->[2] eq "VC-W32" ?
18      "ProgramFiles(x86)" : "ProgramW6432";
19  my $win_commonenv =
20      $target{build_scheme}->[2] eq "VC-W32"
21      ? "CommonProgramFiles(x86)" : "CommonProgramW6432";
22  our $win_installroot =
23      defined($ENV{$win_installenv})
24      ? $win_installenv : 'ProgramFiles';
25  our $win_commonroot =
26      defined($ENV{$win_commonenv})
27      ? $win_commonenv : 'CommonProgramFiles';
28
29  # expand variables early
30  $win_installroot = $ENV{$win_installroot};
31  $win_commonroot = $ENV{$win_commonroot};
32
33  sub shlib {
34      return () if $disabled{shared};
35      my $lib = shift;
36      return $unified_info{sharednames}->{$lib} . $shlibext;
37  }
38
39  sub shlib_import {
40      return () if $disabled{shared};
41      my $lib = shift;
42      return $lib . $shlibextimport;
43  }
44
45  sub dso {
46      my $dso = shift;
47
48      return $dso . $dsoext;
49  }
50  '';
51 -}
52
53 PLATFORM={- $config{target} -}
54 SRCDIR={- $config{sourcedir} -}
55 BLDDIR={- $config{builddir} -}
56
57 VERSION={- $config{version} -}
58 MAJOR={- $config{major} -}
59 MINOR={- $config{minor} -}
60
61 SHLIB_VERSION_NUMBER={- $config{shlib_version_number} -}
62
63 LIBS={- join(" ", map { $_.$libext } @{$unified_info{libraries}}) -}
64 SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{libraries}}) -}
65 SHLIBPDBS={- join(" ", map { local $shlibext = ".pdb"; shlib($_) } @{$unified_info{libraries}}) -}
66 ENGINES={- join(" ", map { dso($_) } @{$unified_info{engines}}) -}
67 ENGINEPDBS={- join(" ", map { local $dsoext = ".pdb"; dso($_) } @{$unified_info{engines}}) -}
68 PROGRAMS={- join(" ", map { $_.$exeext } @{$unified_info{programs}}) -}
69 PROGRAMPDBS={- join(" ", map { $_.".pdb" } @{$unified_info{programs}}) -}
70 SCRIPTS={- join(" ", @{$unified_info{scripts}}) -}
71 {- output_off() if $disabled{makedepend}; "" -}
72 DEPS={- join(" ", map { (my $x = $_) =~ s|\.o$|$depext|; $x; }
73                   grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
74                   keys %{$unified_info{sources}}); -}
75 {- output_on() if $disabled{makedepend}; "" -}
76 GENERATED_MANDATORY={- join(" ", @{$unified_info{depends}->{""}} ) -}
77 GENERATED={- join(" ",
78                   ( map { (my $x = $_) =~ s|\.[sS]$|\.asm|; $x }
79                     grep { defined $unified_info{generate}->{$_} }
80                     map { @{$unified_info{sources}->{$_}} }
81                     grep { /\.o$/ } keys %{$unified_info{sources}} ),
82                   ( grep { /\.h$/ } keys %{$unified_info{generate}} )) -}
83
84 INSTALL_LIBS={- join(" ", map { $_.$libext } @{$unified_info{install}->{libraries}}) -}
85 INSTALL_SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{install}->{libraries}}) -}
86 INSTALL_SHLIBPDBS={- join(" ", map { local $shlibext = ".pdb"; shlib($_) } @{$unified_info{install}->{libraries}}) -}
87 INSTALL_ENGINES={- join(" ", map { dso($_) } @{$unified_info{install}->{engines}}) -}
88 INSTALL_ENGINEPDBS={- join(" ", map { local $dsoext = ".pdb"; dso($_) } @{$unified_info{install}->{engines}}) -}
89 INSTALL_PROGRAMS={- join(" ", map { $_.$exeext } grep { !m|^test\\| } @{$unified_info{install}->{programs}}) -}
90 INSTALL_PROGRAMPDBS={- join(" ", map { $_.".pdb" } grep { !m|^test\\| } @{$unified_info{install}->{programs}}) -}
91 {- output_off() if $disabled{apps}; "" -}
92 BIN_SCRIPTS=$(BLDDIR)\tools\c_rehash.pl
93 MISC_SCRIPTS=$(BLDDIR)\apps\CA.pl $(BLDDIR)\apps\tsget.pl
94 {- output_on() if $disabled{apps}; "" -}
95
96 # Do not edit these manually. Use Configure with --prefix or --openssldir
97 # to change this!  Short explanation in the top comment in Configure
98 INSTALLTOP_dev={- # $prefix is used in the OPENSSLDIR perl snippet
99                   #
100                   use File::Spec::Functions qw(:DEFAULT splitpath);
101                   our $prefix = $config{prefix} || "$win_installroot\\OpenSSL";
102                   our ($prefix_dev, $prefix_dir, $prefix_file) =
103                       splitpath($prefix, 1);
104                   $prefix_dev -}
105 INSTALLTOP_dir={- $prefix_dir -}
106 OPENSSLDIR_dev={- #
107                   # The logic here is that if no --openssldir was given,
108                   # OPENSSLDIR will get the value from $prefix plus "/ssl".
109                   # If --openssldir was given and the value is an absolute
110                   # path, OPENSSLDIR will get its value without change.
111                   # If the value from --openssldir is a relative path,
112                   # OPENSSLDIR will get $prefix with the --openssldir
113                   # value appended as a subdirectory.
114                   #
115                   use File::Spec::Functions qw(:DEFAULT splitpath);
116                   our $openssldir =
117                       $config{openssldir} ?
118                           (file_name_is_absolute($config{openssldir}) ?
119                                $config{openssldir}
120                                : catdir($prefix, $config{openssldir}))
121                           : "$win_commonroot\\SSL";
122                   our ($openssldir_dev, $openssldir_dir, $openssldir_file) =
123                       splitpath($openssldir, 1);
124                   $openssldir_dev -}
125 OPENSSLDIR_dir={- $openssldir_dir -}
126 LIBDIR={- our $libdir = $config{libdir} || "lib";
127           $libdir -}
128 ENGINESDIR_dev={- use File::Spec::Functions qw(:DEFAULT splitpath);
129                   our $enginesdir = catdir($prefix,$libdir,"engines-$sover");
130                   our ($enginesdir_dev, $enginesdir_dir, $enginesdir_file) =
131                       splitpath($enginesdir, 1);
132                   $enginesdir_dev -}
133 ENGINESDIR_dir={- $enginesdir_dir -}
134 !IF "$(DESTDIR)" != ""
135 INSTALLTOP=$(DESTDIR)$(INSTALLTOP_dir)
136 OPENSSLDIR=$(DESTDIR)$(OPENSSLDIR_dir)
137 ENGINESDIR=$(DESTDIR)$(ENGINESDIR_dir)
138 !ELSE
139 INSTALLTOP=$(INSTALLTOP_dev)$(INSTALLTOP_dir)
140 OPENSSLDIR=$(OPENSSLDIR_dev)$(OPENSSLDIR_dir)
141 ENGINESDIR=$(ENGINESDIR_dev)$(ENGINESDIR_dir)
142 !ENDIF
143
144 CC={- $target{cc} -}
145 CFLAGS={- join(" ",(map { "-D".$_} @{$target{defines}}, @{$config{defines}})) -} {- join(" ", quotify_l("-DENGINESDIR=\"$enginesdir\"", "-DOPENSSLDIR=\"$openssldir\"")) -} {- $target{cflags} -} {- $config{cflags} -}
146 COUTFLAG={- $target{coutflag} || "/Fo" -}$(OSSL_EMPTY)
147 RC={- $target{rc} || "rc" -}
148 RCOUTFLAG={- $target{rcoutflag} || "/fo" -}$(OSSL_EMPTY)
149 LD={- $target{ld} || "link" -}
150 LDFLAGS={- $target{lflags} -}
151 LDOUTFLAG={- $target{loutflag} || "/out:" -}$(OSSL_EMPTY)
152 EX_LIBS={- $target{ex_libs} -}
153 LIB_CFLAGS={- join(" ", $target{lib_cflags}, $target{shared_cflag}) || "" -}
154 LIB_LDFLAGS={- $target{shared_ldflag} || "" -}
155 DSO_CFLAGS={- join(" ", $target{dso_cflags}, $target{shared_cflag}) || "" -}
156 DSO_LDFLAGS={- join(" ", $target{dso_lflags}, $target{shared_ldflag}) || "" -}
157 BIN_CFLAGS={- $target{bin_cflags} -}
158 BIN_LDFLAGS={- $target{bin_lflags} -}
159
160 PERL={- $config{perl} -}
161
162 AR={- $target{ar} -}
163 ARFLAGS= {- $target{arflags} -}
164 AROUTFLAG={- $target{aroutflag} || "/out:" -}$(OSSL_EMPTY)
165
166 MT={- $target{mt} -}
167 MTFLAGS= {- $target{mtflags} -}
168 MTINFLAG={- $target{mtinflag} || "-manifest " -}$(OSSL_EMPTY)
169 MTOUTFLAG={- $target{mtoutflag} || "-outputresource:" -}$(OSSL_EMPTY)
170
171 AS={- $target{as} -}
172 ASFLAGS={- $target{asflags} -}
173 ASOUTFLAG={- $target{asoutflag} -}$(OSSL_EMPTY)
174 PERLASM_SCHEME= {- $target{perlasm_scheme} -}
175
176 PROCESSOR= {- $config{processor} -}
177
178 # The main targets ###################################################
179
180 all: build_generated \
181      build_libs_nodep build_engines_nodep build_programs_nodep depend
182
183 build_libs: build_generated build_libs_nodep depend
184 build_libs_nodep: $(LIBS) {- join(" ",map { shlib_import($_) } @{$unified_info{libraries}}) -}
185 build_engines: build_generated build_engines_nodep depend
186 build_engines_nodep: $(ENGINES)
187 build_programs: build_generated build_programs_nodep depend
188 build_programs_nodep: $(PROGRAMS) $(SCRIPTS)
189
190 build_generated: $(GENERATED_MANDATORY)
191
192 # Kept around for backward compatibility
193 build_apps build_tests: build_programs
194
195 test: tests
196 tests: build_generated build_programs_nodep build_engines_nodep depend
197         @rem {- output_off() if $disabled{tests}; "" -}
198         set SRCTOP=$(SRCDIR)
199         set BLDTOP=$(BLDDIR)
200         set PERL=$(PERL)
201         set OPENSSL_DEBUG_MEMORY=on
202         "$(PERL)" "$(SRCDIR)\test\run_tests.pl" $(TESTS)
203         @rem {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
204         @echo "Tests are not supported with your chosen Configure options"
205         @rem {- output_on() if !$disabled{tests}; "" -}
206
207 list-tests:
208         @rem {- output_off() if $disabled{tests}; "" -}
209         @set SRCTOP=$(SRCDIR)
210         @"$(PERL)" "$(SRCDIR)\test\run_tests.pl" list
211         @rem {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
212         @echo "Tests are not supported with your chosen Configure options"
213         @rem {- output_on() if !$disabled{tests}; "" -}
214
215 install: install_sw install_ssldirs install_docs
216
217 uninstall: uninstall_docs uninstall_sw
218
219 libclean:
220         "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """$$1.*"""; } @ARGV" $(SHLIBS)
221         "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """apps/$$1.*"""; } @ARGV" $(SHLIBS)
222         "$(PERL)" -e "map { m/(.*)\.dll$$/; unlink glob """test/$$1.*"""; } @ARGV" $(SHLIBS)
223         -del /Q /F $(LIBS)
224         -del /Q ossl_static.pdb
225
226 clean: libclean
227         -del /Q /F $(PROGRAMS) $(ENGINES) $(SCRIPTS)
228         -del /Q /F $(GENERATED)
229         -del /Q /S /F *.d
230         -del /Q /S /F *.obj
231         -del /Q /S /F *.pdb
232         -del /Q /S /F *.exp
233         -del /Q /S /F engines\*.ilk
234         -del /Q /S /F engines\*.lib
235         -del /Q /S /F apps\*.lib
236         -del /Q /S /F engines\*.manifest
237         -del /Q /S /F apps\*.manifest
238         -del /Q /S /F test\*.manifest
239
240 distclean: clean
241         -del /Q /F configdata.pm
242         -del /Q /F makefile
243
244 depend:
245
246 # Install helper targets #############################################
247
248 install_sw: all install_dev install_engines install_runtime
249
250 uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev
251
252 install_docs: install_html_docs
253
254 uninstall_docs: uninstall_html_docs
255
256 install_ssldirs:
257         @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(OPENSSLDIR)\certs"
258         @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(OPENSSLDIR)\private"
259         @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(OPENSSLDIR)\misc"
260         @"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\apps\openssl.cnf" \
261                                         "$(OPENSSLDIR)\openssl.cnf.dist"
262         @IF NOT EXIST "$(OPENSSLDIR)\openssl.cnf" \
263          "$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\apps\openssl.cnf" \
264                                         "$(OPENSSLDIR)\openssl.cnf"
265         @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(MISC_SCRIPTS) \
266                                         "$(OPENSSLDIR)\misc"
267         @"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\apps\ct_log_list.cnf" \
268                                         "$(OPENSSLDIR)\ct_log_list.cnf.dist"
269         @IF NOT EXIST "$(OPENSSLDIR)\ct_log_list.cnf" \
270          "$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\apps\ct_log_list.cnf" \
271                                         "$(OPENSSLDIR)\ct_log_list.cnf"
272
273 install_dev:
274         @if "$(INSTALLTOP)"=="" ( echo INSTALLTOP should not be empty & exit 1 )
275         @echo *** Installing development files
276         @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(INSTALLTOP)\include\openssl"
277         @rem {- output_off() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
278         @"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\ms\applink.c" \
279                                        "$(INSTALLTOP)\include\openssl"
280         @rem {- output_on() unless grep { $_ eq "OPENSSL_USE_APPLINK" } @{$target{defines}}; "" -}
281         @"$(PERL)" "$(SRCDIR)\util\copy.pl" "$(SRCDIR)\include\openssl\*.h" \
282                                        "$(INSTALLTOP)\include\openssl"
283         @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(BLDDIR)\include\openssl\*.h \
284                                        "$(INSTALLTOP)\include\openssl"
285         @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(INSTALLTOP)\$(LIBDIR)"
286         @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_LIBS) \
287                                        "$(INSTALLTOP)\$(LIBDIR)"
288         @if "$(SHLIBS)"=="" \
289          "$(PERL)" "$(SRCDIR)\util\copy.pl" ossl_static.pdb \
290                                        "$(INSTALLTOP)\$(LIBDIR)"
291
292 uninstall_dev:
293
294 install_engines:
295         @if "$(INSTALLTOP)"=="" ( echo INSTALLTOP should not be empty & exit 1 )
296         @echo *** Installing engines
297         @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(ENGINESDIR)"
298         @if not "$(ENGINES)"=="" \
299          "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_ENGINES) "$(ENGINESDIR)"
300         @if not "$(ENGINES)"=="" \
301          "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_ENGINEPDBS) "$(ENGINESDIR)"
302
303 uninstall_engines:
304
305 install_runtime:
306         @if "$(INSTALLTOP)"=="" ( echo INSTALLTOP should not be empty & exit 1 )
307         @echo *** Installing runtime files
308         @"$(PERL)" "$(SRCDIR)\util\mkdir-p.pl" "$(INSTALLTOP)\bin"
309         @if not "$(SHLIBS)"=="" \
310          "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_SHLIBS) "$(INSTALLTOP)\bin"
311         @if not "$(SHLIBS)"=="" \
312          "$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_SHLIBPDBS) \
313                                         "$(INSTALLTOP)\bin"
314         @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_PROGRAMS) \
315                                         "$(INSTALLTOP)\bin"
316         @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(INSTALL_PROGRAMPDBS) \
317                                         "$(INSTALLTOP)\bin"
318         @"$(PERL)" "$(SRCDIR)\util\copy.pl" $(BIN_SCRIPTS) \
319                                         "$(INSTALLTOP)\bin"
320
321 uninstall_runtime:
322
323 install_html_docs:
324         "$(PERL)" "$(SRCDIR)\util\process_docs.pl" \
325                 "--destdir=$(INSTALLTOP)\html" --type=html
326
327 uninstall_html_docs:
328
329 # Building targets ###################################################
330
331 configdata.pm: "$(SRCDIR)\Configure" {- join(" ", map { '"'.$_.'"' } @{$config{build_file_templates}}, @{$config{build_infos}}, @{$config{conf_files}}) -}
332         @echo "Detected changed: $?"
333         @echo "Reconfiguring..."
334         "$(PERL)" "$(SRCDIR)\Configure" reconf
335         @echo "**************************************************"
336         @echo "***                                            ***"
337         @echo "***   Please run the same make command again   ***"
338         @echo "***                                            ***"
339         @echo "**************************************************"
340         @exit 1
341
342 {-
343  use File::Basename;
344  use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
345
346  # Helper function to figure out dependencies on libraries
347  # It takes a list of library names and outputs a list of dependencies
348  sub compute_lib_depends {
349      if ($disabled{shared}) {
350          return map { $_.$libext } @_;
351      }
352      return map { shlib_import($_) } @_;
353  }
354
355   sub generatesrc {
356       my %args = @_;
357       (my $target = $args{src}) =~ s/\.[sS]$/.asm/;
358       my $generator = '"'.join('" "', @{$args{generator}}).'"';
359       my $generator_incs = join("", map { " -I \"$_\"" } @{$args{generator_incs}});
360       my $incs = join("", map { " /I \"$_\"" } @{$args{incs}});
361       my $deps = @{$args{deps}} ?
362           '"'.join('" "', @{$args{generator_deps}}, @{$args{deps}}).'"' : '';
363
364       if ($target !~ /\.asm$/) {
365           if ($args{generator}->[0] =~ m|^.*\.in$|) {
366               my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
367                                                    "util", "dofile.pl")),
368                                    rel2abs($config{builddir}));
369               return <<"EOF";
370 $target: "$args{generator}->[0]" $deps
371         "\$(PERL)" "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
372             "-o$target{build_file}" $generator > \$@
373 EOF
374           } else {
375               return <<"EOF";
376 $target: "$args{generator}->[0]" $deps
377         "\$(PERL)"$generator_incs $generator > \$@
378 EOF
379           }
380       } else {
381           if ($args{generator}->[0] =~ /\.pl$/) {
382               $generator = '"$(PERL)"'.$generator_incs.' '.$generator;
383           } elsif ($args{generator}->[0] =~ /\.S$/) {
384               $generator = undef;
385           } else {
386               die "Generator type for $src unknown: $generator\n";
387           }
388
389           if (defined($generator)) {
390               # If the target is named foo.S in build.info, we want to
391               # end up generating foo.s in two steps.
392               if ($args{src} =~ /\.S$/) {
393                    return <<"EOF";
394 $target: "$args{generator}->[0]" $deps
395         set ASM=\$(AS)
396         $generator \$@.S
397         \$(CC) $incs \$(CFLAGS) /EP /C \$@.S > \$@.i && move /Y \$@.i \$@
398         del /Q \$@.S
399 EOF
400               }
401               # Otherwise....
402               return <<"EOF";
403 $target: "$args{generator}->[0]" $deps
404         set ASM=\$(AS)
405         $generator \$@
406 EOF
407           }
408           return <<"EOF";
409 $target: "$args{generator}->[0]" $deps
410         \$(CC) $incs \$(CFLAGS) /EP /C "$args{generator}->[0]" > \$@.i && move /Y \$@.i \$@
411 EOF
412       }
413   }
414
415  sub src2obj {
416      my %args = @_;
417      my $obj = $args{obj};
418      my @srcs = map { (my $x = $_) =~ s/\.s$/.asm/; $x
419                     } ( @{$args{srcs}} );
420      my $srcs = '"'.join('" "',  @srcs).'"';
421      my $deps = '"'.join('" "', @srcs, @{$args{deps}}).'"';
422      my $incs = join("", map { ' /I "'.$_.'"' } @{$args{incs}});
423      unless ($disabled{zlib}) {
424          if ($withargs{zlib_include}) {
425              $incs .= ' /I "'.$withargs{zlib_include}.'"';
426          }
427      }
428      my $ecflags = { lib => '$(LIB_CFLAGS)',
429                      dso => '$(DSO_CFLAGS)',
430                      bin => '$(BIN_CFLAGS)' } -> {$args{intent}};
431      my $makedepprog = $config{makedepprog};
432      if ($srcs[0] =~ /\.asm$/) {
433          return <<"EOF";
434 $obj$objext: $deps
435         \$(AS) \$(ASFLAGS) \$(ASOUTFLAG)\$\@ $srcs
436 EOF
437      }
438      return <<"EOF"     if (!$disabled{makedepend});
439 $obj$depext: $deps
440         \$(CC) \$(CFLAGS) $ecflags$inc /Zs /showIncludes $srcs 2>&1 | \\
441             "\$(PERL)" -n << > $obj$depext
442 chomp;
443 s/^Note: including file: *//;
444 \$\$collect{\$\$_} = 1;
445 END { print '$obj$objext: ',join(" ", sort keys \%collect),"\\n" }
446 <<
447 $obj$objext: $obj$depext
448         \$(CC) $incs \$(CFLAGS) $ecflags -c \$(COUTFLAG)\$\@ @<<
449 $srcs
450 <<
451 EOF
452     return <<"EOF"      if ($disabled{makedepend});
453 $obj$objext: $deps
454         \$(CC) $incs \$(CFLAGS) $ecflags -c \$(COUTFLAG)\$\@ $srcs
455 EOF
456  }
457
458  # On Unix, we build shlibs from static libs, so we're ignoring the
459  # object file array.  We *know* this routine is only called when we've
460  # configure 'shared'.
461  sub libobj2shlib {
462      my %args = @_;
463      my $lib = $args{lib};
464      my $shlib = $args{shlib};
465      (my $mkdef_key = $lib) =~ s/^lib//i;
466      my $objs = join("\n", map { $_.$objext } @{$args{objs}});
467      my $linklibs = join("",
468                          map { "\n$_" } compute_lib_depends(@{$args{deps}}));
469      my $deps = join(" ",
470                      (map { $_.$objext } @{$args{objs}}),
471                      compute_lib_depends(@{$args{deps}}));
472      my $ordinalsfile = defined($args{ordinals}) ? $args{ordinals}->[1] : "";
473      my $mkdef_pl = abs2rel(rel2abs(catfile($config{sourcedir},
474                                             "util", "mkdef.pl")),
475                             rel2abs($config{builddir}));
476      my $mkrc_pl = abs2rel(rel2abs(catfile($config{sourcedir},
477                                            "util", "mkrc.pl")),
478                            rel2abs($config{builddir}));
479      my $target = shlib_import($lib);
480      return <<"EOF"
481 $target: $deps "$ordinalsfile" "$mkdef_pl"
482         "\$(PERL)" "$mkdef_pl" "$mkdef_key" 32 > $shlib.def
483         "\$(PERL)" -i.tmp -pe "s|^LIBRARY\\s+${mkdef_key}32|LIBRARY $shlib|;" $shlib.def
484         DEL $shlib.def.tmp
485         "\$(PERL)" "$mkrc_pl" $shlib$shlibext > $shlib.rc
486         \$(RC) \$(RCOUTFLAG)$shlib.res $shlib.rc
487         IF EXIST $shlib$shlibext.manifest DEL /F /Q $shlib$shlibext.manifest
488         \$(LD) \$(LDFLAGS) \$(LIB_LDFLAGS) \\
489                 /implib:\$@ \$(LDOUTFLAG)$shlib$shlibext /def:$shlib.def @<< || (DEL /Q \$(\@B).* $shlib.* && EXIT 1)
490 $objs $shlib.res$linklibs \$(EX_LIBS)
491 <<
492         IF EXIST $shlib$shlibext.manifest \\
493            \$(MT) \$(MTFLAGS) \$(MTINFLAG)$shlib$shlibext.manifest \$(MTOUTFLAG)$shlib$shlibext
494         IF EXIST apps\\$shlib$shlibext DEL /Q /F apps\\$shlib$shlibext
495         IF EXIST test\\$shlib$shlibext DEL /Q /F test\\$shlib$shlibext
496         COPY $shlib$shlibext apps
497         COPY $shlib$shlibext test
498 EOF
499  }
500  sub obj2dso {
501      my %args = @_;
502      my $dso = $args{lib};
503      my $dso_n = basename($dso);
504      my $objs = join("\n", map { $_.$objext } @{$args{objs}});
505      my $linklibs = join("",
506                          map { "\n$_" } compute_lib_depends(@{$args{deps}}));
507      my $deps = join(" ",
508                      (map { $_.$objext } @{$args{objs}}),
509                      compute_lib_depends(@{$args{deps}}));
510      return <<"EOF";
511 $dso$dsoext: $deps
512         IF EXIST $dso$dsoext.manifest DEL /F /Q $dso$dsoext.manifest
513         \$(LD) \$(LDFLAGS) \$(DSO_LDFLAGS) \$(LDOUTFLAG)$dso$dsoext /def:<< @<<
514 LIBRARY         $dso_n
515 EXPORTS
516     bind_engine         @1
517     v_check             @2
518 <<
519 $objs$linklibs \$(EX_LIBS)
520 <<
521         IF EXIST $dso$dsoext.manifest \\
522            \$(MT) \$(MTFLAGS) \$(MTINFLAG)$dso$dsoext.manifest \$(MTOUTFLAG)$dso$dsoext
523 EOF
524  }
525  sub obj2lib {
526      # Because static libs and import libs are both named the same in native
527      # Windows, we can't have both.  We skip the static lib in that case,
528      # as the shared libs are what we use anyway.
529      return "" unless $disabled{"shared"};
530
531      my %args = @_;
532      my $lib = $args{lib};
533      my $objs = join("\n", map { $_.$objext } @{$args{objs}});
534      my $deps = join(" ", map { $_.$objext } @{$args{objs}});
535      return <<"EOF";
536 $lib$libext: $deps
537         \$(AR) \$(ARFLAGS) \$(AROUTFLAG)$lib$libext @<<
538 \$**
539 <<
540 EOF
541  }
542  sub obj2bin {
543      my %args = @_;
544      my $bin = $args{bin};
545      my $objs = join("\n", map { $_.$objext } @{$args{objs}});
546      my $linklibs = join("",
547                          map { "\n$_" } compute_lib_depends(@{$args{deps}}));
548      my $deps = join(" ",
549                      (map { $_.$objext } @{$args{objs}}),
550                      compute_lib_depends(@{$args{deps}}));
551      return <<"EOF";
552 $bin$exeext: $deps
553         IF EXIST $bin$exeext.manifest DEL /F /Q $bin$exeext.manifest
554         \$(LD) \$(LDFLAGS) \$(BIN_LDFLAGS) \$(LDOUTFLAG)$bin$exeext @<<
555 $objs setargv.obj$linklibs \$(EX_LIBS)
556 <<
557         IF EXIST $bin$exeext.manifest \\
558            \$(MT) \$(MTFLAGS) \$(MTINFLAG)$bin$exeext.manifest \$(MTOUTFLAG)$bin$exeext
559 EOF
560   }
561   sub in2script {
562       my %args = @_;
563       my $script = $args{script};
564       my $sources = '"'.join('" "', @{$args{sources}}).'"';
565       my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
566                                            "util", "dofile.pl")),
567                            rel2abs($config{builddir}));
568       return <<"EOF";
569 $script: $sources
570         "\$(PERL)" "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
571             "-o$target{build_file}" $sources > "$script"
572 EOF
573   }
574   sub generatedir {
575       my %args = @_;
576       my $dir = $args{dir};
577       my @deps = map { s|\.o$|$objext|; $_ } @{$args{deps}};
578       my @actions = ();
579       my %extinfo = ( dso => $dsoext,
580                       lib => $libext,
581                       bin => $exeext );
582
583       foreach my $type (("dso", "lib", "bin", "script")) {
584           next unless defined($unified_info{dirinfo}->{$dir}->{products}->{$type});
585           # For lib object files, we could update the library.  However,
586           # LIB on Windows doesn't work that way, so we won't create any
587           # actions for it, and the dependencies are already taken care of.
588           if ($type ne "lib") {
589               foreach my $prod (@{$unified_info{dirinfo}->{$dir}->{products}->{$type}}) {
590                   if (dirname($prod) eq $dir) {
591                       push @deps, $prod.$extinfo{$type};
592                   } else {
593                       push @actions, "\t@rem No support to produce $type ".join(", ", @{$unified_info{dirinfo}->{$dir}->{products}->{$type}});
594                   }
595               }
596           }
597       }
598
599       my $deps = join(" ", @deps);
600       my $actions = join("\n", "", @actions);
601       return <<"EOF";
602 $args{dir} $args{dir}\\ : $deps$actions
603 EOF
604   }
605   ""    # Important!  This becomes part of the template result.
606 -}