]> git.ipfire.org Git - thirdparty/openssl.git/blame - build.info
Build: make it possibly to specify subdirs in build.info
[thirdparty/openssl.git] / build.info
CommitLineData
d4453024 1{-
8effd8fa
RL
2 use File::Spec::Functions;
3
d4453024
RL
4 our $sover = $config{shlib_version_number};
5 our $sover_filename = $sover;
6 $sover_filename =~ s|\.|_|g
7 if $config{target} =~ /^mingw/ || $config{target} =~ /^VC-/;
8 $sover_filename =
9 sprintf "%02d%02d", split m|\.|, $config{shlib_version_number}
10 if $config{target} =~ /^vms/;
11 "";
12-}
777a2882 13LIBS=libcrypto libssl
0483f586
RL
14INCLUDE[libcrypto]=. crypto/include include
15INCLUDE[libssl]=. include
777a2882 16DEPEND[libssl]=libcrypto
fcf80c46 17
27ffb86c
RL
18# Empty DEPEND "indices" means the dependencies are expected to be built
19# unconditionally before anything else.
20DEPEND[]=include/openssl/opensslconf.h crypto/include/internal/bn_conf.h \
21 crypto/include/internal/dso_conf.h
22DEPEND[include/openssl/opensslconf.h]=configdata.pm
23GENERATE[include/openssl/opensslconf.h]=include/openssl/opensslconf.h.in
24DEPEND[crypto/include/internal/bn_conf.h]=configdata.pm
25GENERATE[crypto/include/internal/bn_conf.h]=crypto/include/internal/bn_conf.h.in
26DEPEND[crypto/include/internal/dso_conf.h]=configdata.pm
27GENERATE[crypto/include/internal/dso_conf.h]=crypto/include/internal/dso_conf.h.in
28
7a061312 29IF[{- defined $target{shared_defflag} -}]
ef2dfc99
RL
30 SHARED_SOURCE[libcrypto]=libcrypto.ld
31 SHARED_SOURCE[libssl]=libssl.ld
7a061312 32
8effd8fa
RL
33 GENERATE[libcrypto.ld]=util/libcrypto.num libcrypto
34 GENERATE[libssl.ld]=util/libssl.num libssl
7a061312
RL
35ENDIF
36
37IF[{- $config{target} =~ /^(?:Cygwin|mingw|VC-)/ -}]
38 GENERATE[libcrypto.rc]=util/mkrc.pl libcrypto
39 GENERATE[libssl.rc]=util/mkrc.pl libssl
40
41 SHARED_SOURCE[libcrypto]=libcrypto.rc
42 SHARED_SOURCE[libssl]=libssl.rc
43ENDIF
27ffb86c 44
fcf80c46 45IF[{- $config{target} =~ /^Cygwin/ -}]
d4453024
RL
46 SHARED_NAME[libcrypto]=cygcrypto-{- $sover_filename -}
47 SHARED_NAME[libssl]=cygssl-{- $sover_filename -}
fcf80c46 48ELSIF[{- $config{target} =~ /^mingw/ -}]
d4453024
RL
49 SHARED_NAME[libcrypto]=libcrypto-{- $sover_filename -}{- $config{target} eq "mingw64" ? "-x64" : "" -}
50 SHARED_NAME[libssl]=libssl-{- $sover_filename -}{- $config{target} eq "mingw64" ? "-x64" : "" -}
08479bbb 51ELSIF[{- $config{target} =~ /^VC-/ -}]
d4453024
RL
52 SHARED_NAME[libcrypto]=libcrypto-{- $sover_filename -}{- $target{multilib} -}
53 SHARED_NAME[libssl]=libssl-{- $sover_filename -}{- $target{multilib} -}
fcf80c46 54ENDIF
e84193e4
RL
55
56# VMS has a cultural standard where all libraries are prefixed.
57# For OpenSSL, the choice is 'ossl$' (this prefix was claimed in a
58# conversation with VSI, Tuesday January 26 2016)
8842005e
RL
59# Also, it seems it's usual to have the pointer size the libraries
60# were built for as part of the name.
e84193e4 61IF[{- $config{target} =~ /^vms/ -}]
8842005e
RL
62 RENAME[libcrypto]=ossl$libcrypto{- $target{pointer_size} -}
63 RENAME[libssl]=ossl$libssl{- $target{pointer_size} -}
d4453024
RL
64 SHARED_NAME[libcrypto]=ossl$libcrypto{- $sover_filename -}_shr{- $target{pointer_size} -}
65 SHARED_NAME[libssl]=ossl$libssl{- $sover_filename -}_shr{- $target{pointer_size} -}
e84193e4 66ENDIF