build.info 607 B

1234567891011121314151617181920212223242526
  1. #
  2. # To run the demos when linked with a shared library (default) ensure that
  3. # libcrypto is on the library path. For example:
  4. #
  5. # LD_LIBRARY_PATH=../.. ./hkdf
  6. PROGRAMS{noinst} = hkdf \
  7. pbkdf2 \
  8. scrypt \
  9. argon2
  10. INCLUDE[hkdf]=../../include
  11. SOURCE[hkdf]=hkdf.c
  12. DEPEND[hkdf]=../../libcrypto
  13. INCLUDE[pbkdf2]=../../include
  14. SOURCE[pbkdf2]=pbkdf2.c
  15. DEPEND[pbkdf2]=../../libcrypto
  16. INCLUDE[scrypt]=../../include
  17. SOURCE[scrypt]=scrypt.c
  18. DEPEND[scrypt]=../../libcrypto
  19. INCLUDE[argon2]=../../include
  20. SOURCE[argon2]=argon2.c
  21. DEPEND[argon2]=../../libcrypto