mirror of
https://github.com/openssl/openssl.git
synced 2025-02-05 14:10:53 +08:00
Now that INCLUDE considers both the source and build trees, no need for the rel2abs perl fragment hacks any more. Reviewed-by: Rich Salz <rsalz@openssl.org>
52 lines
1.5 KiB
Plaintext
52 lines
1.5 KiB
Plaintext
{- use File::Spec::Functions;
|
|
our $ex_inc = $withargs{fuzzer_include} &&
|
|
(file_name_is_absolute($withargs{fuzzer_include}) ?
|
|
$withargs{fuzzer_include} : catdir(updir(), $withargs{fuzzer_include}));
|
|
our $ex_lib = $withargs{fuzzer_lib} &&
|
|
(file_name_is_absolute($withargs{fuzzer_lib}) ?
|
|
$withargs{fuzzer_lib} : catfile(updir(), $withargs{fuzzer_lib}));
|
|
""
|
|
-}
|
|
|
|
PROGRAMS=asn1 asn1parse bignum bndiv cms conf crl ct server x509
|
|
|
|
SOURCE[asn1]=asn1.c driver.c
|
|
INCLUDE[asn1]=../include {- $ex_inc -}
|
|
DEPEND[asn1]=../libcrypto {- $ex_lib -}
|
|
|
|
SOURCE[asn1parse]=asn1parse.c driver.c
|
|
INCLUDE[asn1parse]=../include {- $ex_inc -}
|
|
DEPEND[asn1parse]=../libcrypto {- $ex_lib -}
|
|
|
|
SOURCE[bignum]=bignum.c driver.c
|
|
INCLUDE[bignum]=../include {- $ex_inc -}
|
|
DEPEND[bignum]=../libcrypto {- $ex_lib -}
|
|
|
|
SOURCE[bndiv]=bndiv.c driver.c
|
|
INCLUDE[bndiv]=../include {- $ex_inc -}
|
|
DEPEND[bndiv]=../libcrypto {- $ex_lib -}
|
|
|
|
SOURCE[cms]=cms.c driver.c
|
|
INCLUDE[cms]=../include {- $ex_inc -}
|
|
DEPEND[cms]=../libcrypto {- $ex_lib -}
|
|
|
|
SOURCE[conf]=conf.c driver.c
|
|
INCLUDE[conf]=../include {- $ex_inc -}
|
|
DEPEND[conf]=../libcrypto {- $ex_lib -}
|
|
|
|
SOURCE[crl]=crl.c driver.c
|
|
INCLUDE[crl]=../include {- $ex_inc -}
|
|
DEPEND[crl]=../libcrypto {- $ex_lib -}
|
|
|
|
SOURCE[ct]=ct.c driver.c
|
|
INCLUDE[ct]=../include {- $ex_inc -}
|
|
DEPEND[ct]=../libcrypto {- $ex_lib -}
|
|
|
|
SOURCE[server]=server.c driver.c
|
|
INCLUDE[server]=../include {- $ex_inc -}
|
|
DEPEND[server]=../libcrypto ../libssl {- $ex_lib -}
|
|
|
|
SOURCE[x509]=x509.c driver.c
|
|
INCLUDE[x509]=../include {- $ex_inc -}
|
|
DEPEND[x509]=../libcrypto {- $ex_lib -}
|