DOC: Make EVP_SignInit.pod conform with man-pages(7)
[openssl.git] / apps / build.info
index 0d4aad3a1e760e71bd6a5a7cf0df022aef5fe4c1..f49edb4d441a3a62065c1daa1e35860bf60ff6ee 100644 (file)
@@ -1,29 +1,40 @@
-{- use File::Spec::Functions qw/catdir rel2abs/;
-   our @cmd_srcs = (
-        "asn1pars.c", "ca.c", "ciphers.c", "cms.c", "crl.c", "crl2p7.c",
-        "dgst.c", "dhparam.c", "dsa.c", "dsaparam.c", "ec.c", "ecparam.c",
-        "enc.c", "engine.c", "errstr.c", "gendsa.c", "genpkey.c", "genrsa.c",
-        "nseq.c", "ocsp.c", "passwd.c", "pkcs12.c", "pkcs7.c", "pkcs8.c",
-        "pkey.c", "pkeyparam.c", "pkeyutl.c", "prime.c", "rand.c", "req.c",
-        "rsa.c", "rsautl.c", "s_client.c", "s_server.c", "s_time.c",
-        "sess_id.c", "smime.c", "speed.c", "spkac.c", "srp.c", "ts.c",
-        "verify.c", "version.c", "x509.c", "rehash.c",
-   );
-   "";
- -}
-PROGRAMS=openssl
-SOURCE[openssl]=\
-        openssl.c \
-        {- join(" ", @cmd_srcs); -} \
-        apps.c opt.c s_cb.c s_socket.c \
-        app_rand.c \
-        {- $target{apps_aux_src} -}
-DEPEND[openssl.o]=progs.h
-DEPEND[progs.h]={- join(" ", @cmd_srcs); -} ../configdata.pm
-GENERATE[progs.h]=progs.pl {- join(" ", map { catdir($sourcedir, $_) } @cmd_srcs); -}
+SUBDIRS=lib
 
-INCLUDE[openssl]={- rel2abs(catdir($builddir,"../include")) -} .. ../include
-DEPEND[openssl]=../libssl
+# Program init source, that don't have direct linkage with the rest of the
+# source, and can therefore not be part of a library.
+IF[{- !$disabled{uplink} -}]
+  $INITSRC=../ms/applink.c
+ENDIF
+IF[{- $config{target} =~ /^vms-/ -}]
+  $INITSRC=vms_decc_init.c
+ENDIF
 
-SCRIPTS=CA.pl
-SOURCE[CA.pl]=CA.pl.in
+# Source for the 'openssl' program
+$OPENSSLSRC=\
+        openssl.c progs.c \
+        asn1pars.c ca.c ciphers.c cms.c crl.c crl2p7.c dgst.c dhparam.c \
+        dsa.c dsaparam.c ec.c ecparam.c enc.c engine.c errstr.c gendsa.c \
+        genpkey.c genrsa.c kdf.c mac.c nseq.c ocsp.c passwd.c pkcs12.c pkcs7.c \
+        pkcs8.c pkey.c pkeyparam.c pkeyutl.c prime.c rand.c req.c rsa.c \
+        rsautl.c s_client.c s_server.c s_time.c sess_id.c smime.c speed.c \
+        spkac.c srp.c ts.c verify.c version.c x509.c rehash.c storeutl.c \
+        list.c info.c provider.c fipsinstall.c
+
+IF[{- !$disabled{apps} -}]
+  PROGRAMS=openssl
+  SOURCE[openssl]=$INITSRC $OPENSSLSRC
+  INCLUDE[openssl]=.. ../include include
+  DEPEND[openssl]=libapps.a ../libssl
+
+  IF[{- $config{target} =~ /^(?:Cygwin|mingw|VC-)/ -}]
+    GENERATE[openssl.rc]=../util/mkrc.pl openssl
+    SOURCE[openssl]=openssl.rc
+  ENDIF
+
+  SCRIPTS{misc}=CA.pl
+  SOURCE[CA.pl]=CA.pl.in
+  # linkname tells build files that a symbolic link or copy of this script
+  # without extension must be installed as well.  Unix or Unix lookalike only.
+  SCRIPTS{misc,linkname=tsget}=tsget.pl
+  SOURCE[tsget.pl]=tsget.in
+ENDIF