Home | History | Annotate | Line # | Download | only in kdf
build.info revision 1.1
      1  1.1  christos #
      2  1.1  christos # To run the demos when linked with a shared library (default) ensure that
      3  1.1  christos # libcrypto is on the library path. For example:
      4  1.1  christos #
      5  1.1  christos #    LD_LIBRARY_PATH=../.. ./hkdf
      6  1.1  christos 
      7  1.1  christos PROGRAMS{noinst} = hkdf \
      8  1.1  christos                    pbkdf2 \
      9  1.1  christos                    scrypt \
     10  1.1  christos                    argon2
     11  1.1  christos 
     12  1.1  christos INCLUDE[hkdf]=../../include
     13  1.1  christos SOURCE[hkdf]=hkdf.c
     14  1.1  christos DEPEND[hkdf]=../../libcrypto
     15  1.1  christos 
     16  1.1  christos INCLUDE[pbkdf2]=../../include
     17  1.1  christos SOURCE[pbkdf2]=pbkdf2.c
     18  1.1  christos DEPEND[pbkdf2]=../../libcrypto
     19  1.1  christos 
     20  1.1  christos INCLUDE[scrypt]=../../include
     21  1.1  christos SOURCE[scrypt]=scrypt.c
     22  1.1  christos DEPEND[scrypt]=../../libcrypto
     23  1.1  christos 
     24  1.1  christos INCLUDE[argon2]=../../include
     25  1.1  christos SOURCE[argon2]=argon2.c
     26  1.1  christos DEPEND[argon2]=../../libcrypto
     27