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