build.info 667 B

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