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