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