1 SUBDIRS=lib 2 3 # Program init source, that don't have direct linkage with the rest of the 4 # source, and can therefore not be part of a library. 5 IF[{- !$disabled{uplink} -}] 6 $INITSRC=../ms/applink.c 7 ENDIF 8 IF[{- $config{target} =~ /^vms-/ -}] 9 $INITSRC=vms_decc_init.c 10 ENDIF 11 12 # Source for the 'openssl' program 13 $OPENSSLSRC=\ 14 openssl.c \ 15 asn1parse.c ca.c ciphers.c crl.c crl2pkcs7.c dgst.c \ 16 enc.c errstr.c \ 17 genpkey.c kdf.c mac.c nseq.c passwd.c pkcs7.c \ 18 pkcs8.c pkey.c pkeyparam.c pkeyutl.c prime.c rand.c req.c \ 19 s_client.c s_server.c s_time.c sess_id.c skeyutl.c smime.c speed.c \ 20 spkac.c verify.c version.c x509.c rehash.c storeutl.c \ 21 list.c info.c fipsinstall.c pkcs12.c 22 IF[{- !$disabled{'ec'} -}] 23 $OPENSSLSRC=$OPENSSLSRC ec.c ecparam.c 24 ENDIF 25 IF[{- !$disabled{'ocsp'} -}] 26 $OPENSSLSRC=$OPENSSLSRC ocsp.c 27 ENDIF 28 IF[{- !$disabled{'srp'} -}] 29 $OPENSSLSRC=$OPENSSLSRC srp.c 30 ENDIF 31 IF[{- !$disabled{'ts'} -}] 32 $OPENSSLSRC=$OPENSSLSRC ts.c 33 ENDIF 34 IF[{- !$disabled{'dh'} -}] 35 $OPENSSLSRC=$OPENSSLSRC dhparam.c 36 ENDIF 37 IF[{- !$disabled{'dsa'} -}] 38 $OPENSSLSRC=$OPENSSLSRC dsa.c dsaparam.c gendsa.c 39 ENDIF 40 IF[{- !$disabled{'engine'} -}] 41 $OPENSSLSRC=$OPENSSLSRC engine.c 42 ENDIF 43 IF[{- !$disabled{'rsa'} -}] 44 $OPENSSLSRC=$OPENSSLSRC rsa.c genrsa.c 45 ENDIF 46 IF[{- !$disabled{'deprecated-3.0'} -}] 47 IF[{- !$disabled{'rsa'} -}] 48 $OPENSSLSRC=$OPENSSLSRC rsautl.c 49 ENDIF 50 ENDIF 51 IF[{- !$disabled{'cms'} -}] 52 $OPENSSLSRC=$OPENSSLSRC cms.c 53 ENDIF 54 IF[{- !$disabled{'cmp'} -}] 55 $OPENSSLSRC=$OPENSSLSRC cmp.c lib/cmp_mock_srv.c 56 ENDIF 57 58 IF[{- !$disabled{apps} -}] 59 PROGRAMS=openssl 60 SOURCE[openssl]=$INITSRC $OPENSSLSRC 61 INCLUDE[openssl]=.. ../include include 62 DEPEND[openssl]=libapps.a ../libssl 63 64 # The nocheck attribute is picked up by progs.pl as a signal not to look 65 # at that file; some systems may have locked it as the output file, and 66 # therefore don't allow it to be read at the same time, making progs.pl 67 # fail. 68 SOURCE[openssl]{nocheck}=progs.c 69 DEPEND[${OPENSSLSRC/.c/.o} progs.o]=progs.h 70 GENERATE[progs.c]=progs.pl "-C" $(APPS_OPENSSL) 71 GENERATE[progs.h]=progs.pl "-H" $(APPS_OPENSSL) 72 # progs.pl tries to read all 'openssl' sources, including progs.c, so we make 73 # sure things are generated in the correct order. 74 DEPEND[progs.h]=progs.c 75 # Because the files to look through may change (depends on $OPENSSLSRC), 76 # always depend on a changed configuration. 77 DEPEND[progs.c]=../configdata.pm 78 79 IF[{- $config{target} =~ /^(?:Cygwin|mingw|VC-|BC-)/ -}] 80 GENERATE[openssl.rc]=../util/mkrc.pl openssl 81 SOURCE[openssl]=openssl.rc 82 ENDIF 83 84 SCRIPTS{misc}=CA.pl 85 SOURCE[CA.pl]=CA.pl.in 86 # linkname tells build files that a symbolic link or copy of this script 87 # without extension must be installed as well. Unix or Unix lookalike only. 88 SCRIPTS{misc,linkname=tsget}=tsget.pl 89 SOURCE[tsget.pl]=tsget.in 90 ENDIF 91