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