Complete the list of files to clean up on Windows
[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  my $win_installenv =
15      $target{build_scheme}->[2] eq "VC-W32" ?
16      "ProgramFiles(x86)" : "ProgramW6432";
17  my $win_commonenv =
18      $target{build_scheme}->[2] eq "VC-W32"
19      ? "CommonProgramFiles(x86)" : "CommonProgramW6432";
20  our $win_installroot =
21      defined($ENV{$win_installenv})
22      ? $win_installenv : 'ProgramFiles';
23  our $win_commonroot =
24      defined($ENV{$win_commonenv})
25      ? $win_commonenv : 'CommonProgramFiles';
26
27  # expand variables early
28  $win_installroot = $ENV{$win_installroot};
29  $win_commonroot = $ENV{$win_commonroot};
30
31  sub shlib {
32      return () if $disabled{shared};
33      my $lib = shift;
34      return $unified_info{sharednames}->{$lib} . $shlibext;
35  }
36
37  sub shlib_import {
38      return () if $disabled{shared};
39      my $lib = shift;
40      return $lib . $shlibextimport;
41  }
42
43  sub dso {
44      my $dso = shift;
45
46      return $dso . $dsoext;
47  }
48  '';
49 -}
50
51 PLATFORM={- $config{target} -}
52 SRCDIR={- $config{sourcedir} -}
53 BLDDIR={- $config{builddir} -}
54
55 VERSION={- $config{version} -}
56 MAJOR={- $config{major} -}
57 MINOR={- $config{minor} -}
58
59 SHLIB_VERSION_NUMBER={- $config{shlib_version_number} -}
60
61 LIBS={- join(" ", map { $_.$libext } @{$unified_info{libraries}}) -}
62 SHLIBS={- join(" ", map { shlib($_) } @{$unified_info{libraries}}) -}
63 SHLIBPDBS={- join(" ", map { local $shlibext = ".pdb"; shlib($_) } @{$unified_info{libraries}}) -}
64 ENGINES={- join(" ", map { dso($_) } @{$unified_info{engines}}) -}
65 ENGINEPDBS={- join(" ", map { local $dsoext = ".pdb"; dso($_) } @{$unified_info{engines}}) -}
66 PROGRAMS={- join(" ", map { $_.$exeext } grep { !m|^test\\| } @{$unified_info{programs}}) -}
67 PROGRAMPDBS={- join(" ", map { $_.".pdb" } grep { !m|^test\\| } @{$unified_info{programs}}) -}
68 TESTPROGS={- join(" ", map { $_.$exeext } grep { m|^test\\| } @{$unified_info{programs}}) -}
69 SCRIPTS={- join(" ", @{$unified_info{scripts}}) -}
70 {- output_off() if $disabled{apps}; "" -}
71 BIN_SCRIPTS=$(BLDDIR)\tools\c_rehash.pl
72 MISC_SCRIPTS=$(BLDDIR)\apps\CA.pl $(BLDDIR)\apps\tsget.pl
73 {- output_on() if $disabled{apps}; "" -}
74
75 {- output_off() if $disabled{makedepend}; "" -}
76 DEPS={- join(" ", map { (my $x = $_) =~ s|\.o$|$depext|; $x; }
77                   grep { $unified_info{sources}->{$_}->[0] =~ /\.c$/ }
78                   keys %{$unified_info{sources}}); -}
79 {- output_on() if $disabled{makedepend}; "" -}
80 GENERATED={- join(" ",
81                   ( map { (my $x = $_) =~ s|\.[sS]$|\.asm|; $x }
82                     grep { defined $unified_info{generate}->{$_} }
83                     map { @{$unified_info{sources}->{$_}} }
84                     grep { /\.o$/ } keys %{$unified_info{sources}} ),
85                   ( grep { /\.h$/ } keys %{$unified_info{generate}} )) -}
86
87 # Do not edit these manually. Use Configure with --prefix or --openssldir
88 # to change this!  Short explanation in the top comment in Configure
89 INSTALLTOP={- # $prefix is used in the OPENSSLDIR perl snippet
90               #
91               our $prefix = $config{prefix} || "$win_installroot\\OpenSSL";
92               $prefix -}
93 OPENSSLDIR={- #
94               # The logic here is that if no --openssldir was given,
95               # OPENSSLDIR will get the value from $prefix plus "/ssl".
96               # If --openssldir was given and the value is an absolute
97               # path, OPENSSLDIR will get its value without change.
98               # If the value from --openssldir is a relative path,
99               # OPENSSLDIR will get $prefix with the --openssldir
100               # value appended as a subdirectory.
101               #
102               use File::Spec::Functions;
103               our $openssldir =
104                   $config{openssldir} ?
105                       (file_name_is_absolute($config{openssldir}) ?
106                            $config{openssldir}
107                            : catdir($prefix, $config{openssldir}))
108                       : "$win_commonroot\\SSL";
109               $openssldir -}
110 LIBDIR={- our $libdir = $config{libdir} || "lib";
111           $libdir -}
112 ENGINESDIR={- use File::Spec::Functions;
113               our $enginesdir = catdir($prefix,$libdir,"engines");
114               $enginesdir -}
115
116 CC={- $target{cc} -}
117 CFLAGS={- join(" ",(map { "-D".$_} @{$target{defines}}, @{$config{defines}})) -} {- join(" ", quotify_l("-DENGINESDIR=\"$enginesdir\"", "-DOPENSSLDIR=\"$openssldir\"")) -} {- $target{cflags} -} {- $config{cflags} -}
118 COUTFLAG={- $target{coutflag} || "/Fo" -}
119 RC={- $target{rc} || "rc" -}
120 RCOUTFLAG={- $target{rcoutflag} || "/fo" -}
121 LD={- $target{ld} || "link" -}
122 LDFLAGS={- $target{lflags} -}
123 LDOUTFLAG={- $target{loutflag} || "/out:" -}
124 EX_LIBS={- $target{ex_libs} -}
125 LIB_CFLAGS={- join(" ", $target{lib_cflags}, $target{shared_cflag}) || "" -}
126 LIB_LDFLAGS={- $target{shared_ldflag} || "" -}
127 DSO_CFLAGS={- join(" ", $target{dso_cflags}, $target{shared_cflag}) || "" -}
128 DSO_LDFLAGS={- join(" ", $target{dso_lflags}, $target{shared_ldflag}) || "" -}
129 BIN_CFLAGS={- $target{bin_cflags} -}
130 BIN_LDFLAGS={- $target{bin_lflags} -}
131
132 PERL={- $config{perl} -}
133
134 AR={- $target{ar} -}
135 ARFLAGS= {- $target{arflags} -}
136 AROUTFLAG={- $target{aroutflag} || "/out:" -}
137
138 AS={- $target{as} -}
139 ASFLAGS={- $target{asflags} -}
140 ASOUTFLAG={- $target{asoutflag} -}
141 PERLASM_SCHEME= {- $target{perlasm_scheme} -}
142
143 PROCESSOR= {- $config{processor} -}
144
145 # The main targets ###################################################
146
147 all: configdata.pm build_libs_nodep build_engines_nodep build_apps_nodep depend
148
149 build_libs: configdata.pm build_libs_nodep depend
150 build_libs_nodep: $(LIBS)
151 build_engines: configdata.pm build_engines_nodep depend
152 build_engines_nodep: $(ENGINES)
153 build_apps: configdata.pm build_apps_nodep depend
154 build_apps_nodep: $(PROGRAMS) $(SCRIPTS)
155 build_tests: configdata.pm build_tests_nodep depend
156 build_tests_nodep: $(TESTPROGS)
157
158 test: tests
159 tests: build_tests_nodep build_apps_nodep build_engines_nodep depend
160         @rem {- output_off() if $disabled{tests}; "" -}
161         set SRCTOP=$(SRCDIR)
162         set BLDTOP=$(BLDDIR)
163         set PERL=$(PERL)
164         $(PERL) $(SRCDIR)\test\run_tests.pl $(TESTS)
165         @rem {- if ($disabled{tests}) { output_on(); } else { output_off(); } "" -}
166         @echo "Tests are not supported with your chosen Configure options"
167         @rem {- output_on() if !$disabled{tests}; "" -}
168
169 list-tests:
170         @set TOP=$(SRCDIR)
171         @set PERL=$(PERL)
172         @$(PERL) $(SRCDIR)\test\run_tests.pl list
173
174 install: install_sw install_ssldirs install_docs
175
176 uninstall: uninstall_docs uninstall_sw
177
178 libclean:
179         $(PERL) -e "map { m/(.*)\.dll$$/; unlink glob """$$1.*"""; } @ARGV" $(SHLIBS)
180         $(PERL) -e "map { m/(.*)\.dll$$/; unlink glob """apps/$$1.*"""; } @ARGV" $(SHLIBS)
181         $(PERL) -e "map { m/(.*)\.dll$$/; unlink glob """test/$$1.*"""; } @ARGV" $(SHLIBS)
182         -del /Q /F $(LIBS)
183         -del /Q ossl_static.pdb
184
185 clean: libclean
186         -del /Q /F $(PROGRAMS) $(TESTPROGS) $(ENGINES) $(SCRIPTS)
187         -del /Q /S /F $(GENERATED)
188         -del /Q /S /F *.d
189         -del /Q /S /F *.obj
190         -del /Q /S /F *.pdb
191         -del /Q /S /F *.exp
192         -del /Q /S /F engines\*.ilk
193         -del /Q /S /F engines\*.lib
194         -del /Q /S /F apps\*.lib
195         -del /Q /S /F engines\*.manifest
196         -del /Q /S /F apps\*.manifest
197
198 depend:
199
200 # Install helper targets #############################################
201
202 install_sw: all install_dev install_engines install_runtime
203
204 uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev
205
206 install_docs:
207         $(PERL) $(SRCDIR)\util\process_docs.pl \
208                 "--destdir=$(DESTDIR)$(INSTALLTOP)\html" --type=html
209
210 uninstall_docs:
211
212 install_ssldirs:
213         @$(PERL) $(SRCDIR)\util\mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)\certs"
214         @$(PERL) $(SRCDIR)\util\mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)\private"
215         @$(PERL) $(SRCDIR)\util\mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)\misc"
216         @$(PERL) $(SRCDIR)\util\copy.pl $(SRCDIR)\apps\openssl.cnf \
217                                        "$(DESTDIR)$(OPENSSLDIR)"
218         @$(PERL) $(SRCDIR)\util\copy.pl $(MISC_SCRIPTS) \
219                                         "$(DESTDIR)$(OPENSSLDIR)\misc"
220
221 install_dev:
222         @if "$(INSTALLTOP)"=="" ( echo INSTALLTOP should not be empty & exit 1 )
223         @echo *** Installing development files
224         @$(PERL) $(SRCDIR)\util\mkdir-p.pl "$(DESTDIR)$(INSTALLTOP)\include\openssl"
225         @$(PERL) $(SRCDIR)\util\copy.pl $(SRCDIR)\include\openssl\*.h \
226                                        "$(DESTDIR)$(INSTALLTOP)\include\openssl"
227         @$(PERL) $(SRCDIR)\util\copy.pl $(BLDDIR)\include\openssl\*.h \
228                                        "$(DESTDIR)$(INSTALLTOP)\include\openssl"
229         @$(PERL) $(SRCDIR)\util\mkdir-p.pl "$(DESTDIR)$(INSTALLTOP)\$(LIBDIR)"
230         @$(PERL) $(SRCDIR)\util\copy.pl $(LIBS) \
231                                        "$(DESTDIR)$(INSTALLTOP)\$(LIBDIR)"
232         @if "$(SHLIBS)"=="" \
233          $(PERL) $(SRCDIR)\util\copy.pl ossl_static.pdb \
234                                        "$(DESTDIR)$(INSTALLTOP)\$(LIBDIR)"
235
236 uninstall_dev:
237
238 install_engines:
239         @if "$(INSTALLTOP)"=="" ( echo INSTALLTOP should not be empty & exit 1 )
240         @echo *** Installing engines
241         @$(PERL) $(SRCDIR)\util\mkdir-p.pl "$(DESTDIR)$(ENGINESDIR)"
242         @if not "$(ENGINES)"=="" \
243          $(PERL) $(SRCDIR)\util\copy.pl $(ENGINES) "$(DESTDIR)$(ENGINESDIR)"
244         @if not "$(ENGINES)"=="" \
245          $(PERL) $(SRCDIR)\util\copy.pl $(ENGINEPDBS) "$(DESTDIR)$(ENGINESDIR)"
246
247 uninstall_engines:
248
249 install_runtime:
250         @if "$(INSTALLTOP)"=="" ( echo INSTALLTOP should not be empty & exit 1 )
251         @echo *** Installing runtime files
252         @$(PERL) $(SRCDIR)\util\mkdir-p.pl "$(DESTDIR)$(INSTALLTOP)\bin"
253         @if not "$(SHLIBS)"=="" \
254          $(PERL) $(SRCDIR)\util\copy.pl $(SHLIBS) "$(DESTDIR)$(INSTALLTOP)\bin"
255         @if not "$(SHLIBS)"=="" \
256          $(PERL) $(SRCDIR)\util\copy.pl $(SHLIBPDBS) \
257                                         "$(DESTDIR)$(INSTALLTOP)\bin"
258         @$(PERL) $(SRCDIR)\util\copy.pl $(PROGRAMS) \
259                                         "$(DESTDIR)$(INSTALLTOP)\bin"
260         @$(PERL) $(SRCDIR)\util\copy.pl $(PROGRAMPDBS) \
261                                         "$(DESTDIR)$(INSTALLTOP)\bin"
262         @$(PERL) $(SRCDIR)\util\copy.pl $(BIN_SCRIPTS) \
263                                         "$(DESTDIR)$(INSTALLTOP)\bin"
264
265 uninstall_runtime:
266
267 # Building targets ###################################################
268
269 configdata.pm: {- $config{build_file_template} -} $(SRCDIR)\Configure
270         @echo "Detected changed: $?"
271         @echo "Reconfiguring..."
272         $(PERL) $(SRCDIR)\Configure reconf
273         @echo "**************************************************"
274         @echo "***                                            ***"
275         @echo "***   Please run the same make command again   ***"
276         @echo "***                                            ***"
277         @echo "**************************************************"
278         @exit 1
279
280 {-
281  use File::Basename;
282  use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
283
284  # Helper function to figure out dependencies on libraries
285  # It takes a list of library names and outputs a list of dependencies
286  sub compute_lib_depends {
287      if ($disabled{shared}) {
288          return map { $_.$libext } @_;
289      }
290      return map { shlib_import($_) } @_;
291  }
292
293   sub generatesrc {
294       my %args = @_;
295       (my $target = $args{src}) =~ s/\.[sS]$/.asm/;
296       my $generator = join(" ", @{$args{generator}});
297       my $generator_incs = join("", map { " -I".$_ } @{$args{generator_incs}});
298       my $incs = join("", map { " /I ".$_ } @{$args{incs}});
299       my $deps = join(" ", @{$args{generator_deps}}, @{$args{deps}});
300
301       if ($target !~ /\.asm$/) {
302           return <<"EOF";
303 $target: $args{generator}->[0] $deps
304         \$(PERL)$generator_incs $generator > \$@
305 EOF
306       } else {
307           if ($args{generator}->[0] =~ /\.pl$/) {
308               $generator = '$(PERL)'.$generator_incs.' '.$generator;
309           } elsif ($args{generator}->[0] =~ /\.S$/) {
310               $generator = undef;
311           } else {
312               die "Generator type for $src unknown: $generator\n";
313           }
314
315           if (defined($generator)) {
316               # If the target is named foo.S in build.info, we want to
317               # end up generating foo.s in two steps.
318               if ($args{src} =~ /\.S$/) {
319                    return <<"EOF";
320 $target: $args{generator}->[0] $deps
321         set ASM=\$(AS)
322         $generator \$@.S
323         \$(CC) \$(CFLAGS) $incs /EP /C \$@.S > \$@.i && move /Y \$@.i \$@
324         del /Q \$@.S
325 EOF
326               }
327               # Otherwise....
328               return <<"EOF";
329 $target: $args{generator}->[0] $deps
330         set ASM=\$(AS)
331         $generator \$@
332 EOF
333           }
334           return <<"EOF";
335 $target: $args{generator}->[0] $deps
336         \$(CC) \$(CFLAGS) $incs /EP /C $args{generator}->[0] > \$@.i && move /Y \$@.i \$@
337 EOF
338       }
339   }
340
341  sub src2obj {
342      my %args = @_;
343      my $obj = $args{obj};
344      my @srcs = map { (my $x = $_) =~ s/\.s$/.asm/; $x
345                     } ( @{$args{srcs}} );
346      my $srcs = join(" ",  @srcs);
347      my $deps = join(" ", @srcs, @{$args{deps}});
348      my $incs = join("", map { " /I ".$_ } @{$args{incs}});
349      unless ($disabled{zlib}) {
350          if ($withargs{zlib_include}) {
351              $incs .= " /I ".$withargs{zlib_include};
352          }
353      }
354      my $ecflags = { lib => '$(LIB_CFLAGS)',
355                      dso => '$(DSO_CFLAGS)',
356                      bin => '$(BIN_CFLAGS)' } -> {$args{intent}};
357      my $makedepprog = $config{makedepprog};
358      if ($srcs[0] =~ /\.asm$/) {
359          return <<"EOF";
360 $obj$objext: $deps
361         \$(AS) \$(ASFLAGS) \$(ASOUTFLAG)\$\@ $srcs
362 EOF
363      }
364      return <<"EOF"     if (!$disabled{makedepend});
365 $obj$depext: $deps
366         \$(CC) \$(CFLAGS) $ecflags$inc /Zs /showIncludes $srcs 2>&1 | \\
367             \$(PERL) -n << > $obj$depext
368 chomp;
369 s/^Note: including file: *//;
370 \$\$collect{\$\$_} = 1;
371 END { print '$obj$objext: ',join(" ", sort keys \%collect),"\\n" }
372 <<
373 $obj$objext: $obj$depext
374         \$(CC) \$(CFLAGS) $ecflags$incs -c \$(COUTFLAG)\$\@ @<<
375 $srcs
376 <<
377 EOF
378     return <<"EOF"      if ($disabled{makedepend});
379 $obj$objext: $deps
380         \$(CC) \$(CFLAGS) $ecflags$incs -c \$(COUTFLAG)\$\@ $srcs
381 EOF
382  }
383
384  # On Unix, we build shlibs from static libs, so we're ignoring the
385  # object file array.  We *know* this routine is only called when we've
386  # configure 'shared'.
387  sub libobj2shlib {
388      my %args = @_;
389      my $lib = $args{lib};
390      my $shlib = $args{shlib};
391      (my $mkdef_key = $lib) =~ s/^lib//i;
392      my $objs = join("\n", map { $_.$objext } @{$args{objs}});
393      my $linklibs = join("",
394                          map { "\n$_" } compute_lib_depends(@{$args{deps}}));
395      my $deps = join(" ",
396                      (map { $_.$objext } @{$args{objs}}),
397                      compute_lib_depends(@{$args{deps}}));
398      my $ordinalsfile = defined($args{ordinals}) ? $args{ordinals}->[1] : "";
399      my $mkdef_pl = abs2rel(rel2abs(catfile($config{sourcedir},
400                                             "util", "mkdef.pl")),
401                             rel2abs($config{builddir}));
402      my $mkrc_pl = abs2rel(rel2abs(catfile($config{sourcedir},
403                                            "util", "mkrc.pl")),
404                            rel2abs($config{builddir}));
405      my $target = shlib_import($lib);
406      return <<"EOF"
407 $target: $deps $ordinalsfile $mkdef_pl
408         \$(PERL) $mkdef_pl "$mkdef_key" 32 > $shlib.def
409         \$(PERL) -i.tmp -pe "s|^LIBRARY\\s+${mkdef_key}32|LIBRARY $shlib|;" $shlib.def
410         DEL $shlib.def.tmp
411         \$(PERL) $mkrc_pl $shlib$shlibext > $shlib.rc
412         \$(RC) \$(RCOUTFLAG)$shlib.res $shlib.rc
413         \$(LD) \$(LDFLAGS) \$(LIB_LDFLAGS) \\
414                 /implib:\$@ \$(LDOUTFLAG)$shlib$shlibext /def:$shlib.def @<< || (DEL /Q \$(\@B).* $shlib.* && EXIT 1)
415 $objs $shlib.res$linklibs \$(EX_LIBS)
416 <<
417         IF EXIST apps\\$shlib$shlibext DEL /Q /F apps\\$shlib$shlibext
418         IF EXIST test\\$shlib$shlibext DEL /Q /F test\\$shlib$shlibext
419         COPY $shlib$shlibext apps
420         COPY $shlib$shlibext test
421 EOF
422  }
423  sub obj2dso {
424      my %args = @_;
425      my $dso = $args{lib};
426      my $dso_n = basename($dso);
427      my $objs = join("\n", map { $_.$objext } @{$args{objs}});
428      my $linklibs = join("",
429                          map { "\n$_" } compute_lib_depends(@{$args{deps}}));
430      my $deps = join(" ",
431                      (map { $_.$objext } @{$args{objs}}),
432                      compute_lib_depends(@{$args{deps}}));
433      return <<"EOF";
434 $dso$dsoext: $deps
435         \$(LD) \$(LDFLAGS) \$(DSO_LDFLAGS) \$(LDOUTFLAG)$dso$dsoext /def:<< @<<
436 LIBRARY         $dso_n
437 EXPORTS
438     bind_engine         @1
439     v_check             @2
440 <<
441 $objs$linklibs \$(EX_LIBS)
442 <<
443 EOF
444  }
445  sub obj2lib {
446      # Because static libs and import libs are both named the same in native
447      # Windows, we can't have both.  We skip the static lib in that case,
448      # as the shared libs are what we use anyway.
449      return "" unless $disabled{"shared"};
450
451      my %args = @_;
452      my $lib = $args{lib};
453      my $objs = join("\n", map { $_.$objext } @{$args{objs}});
454      my $deps = join(" ", map { $_.$objext } @{$args{objs}});
455      return <<"EOF";
456 $lib$libext: $deps
457         \$(AR) \$(ARFLAGS) \$(AROUTFLAG)$lib$libext @<<
458 \$\?
459 <<
460 EOF
461  }
462  sub obj2bin {
463      my %args = @_;
464      my $bin = $args{bin};
465      my $objs = join("\n", map { $_.$objext } @{$args{objs}});
466      my $linklibs = join("",
467                          map { "\n$_" } compute_lib_depends(@{$args{deps}}));
468      my $deps = join(" ",
469                      (map { $_.$objext } @{$args{objs}}),
470                      compute_lib_depends(@{$args{deps}}));
471      return <<"EOF";
472 $bin$exeext: $deps
473         \$(LD) \$(LDFLAGS) \$(BIN_LDFLAGS) \$(LDOUTFLAG)$bin$exeext @<<
474 $objs setargv.obj$linklibs \$(EX_LIBS)
475 <<
476 EOF
477   }
478   sub in2script {
479       my %args = @_;
480       my $script = $args{script};
481       my $sources = join(" ", @{$args{sources}});
482       my $dofile = abs2rel(rel2abs(catfile($config{sourcedir},
483                                            "util", "dofile.pl")),
484                            rel2abs($config{builddir}));
485       return <<"EOF";
486 $script: $sources
487         \$(PERL) "-I\$(BLDDIR)" -Mconfigdata "$dofile" \\
488             "-o$target{build_file}" $sources > "$script"
489 EOF
490   }
491   ""    # Important!  This becomes part of the template result.
492 -}