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 7PROGRAMS{noinst} = hkdf \ 8 pbkdf2 \ 9 scrypt \ 10 argon2 11 12INCLUDE[hkdf]=../../include 13SOURCE[hkdf]=hkdf.c 14DEPEND[hkdf]=../../libcrypto 15 16INCLUDE[pbkdf2]=../../include 17SOURCE[pbkdf2]=pbkdf2.c 18DEPEND[pbkdf2]=../../libcrypto 19 20INCLUDE[scrypt]=../../include 21SOURCE[scrypt]=scrypt.c 22DEPEND[scrypt]=../../libcrypto 23 24INCLUDE[argon2]=../../include 25SOURCE[argon2]=argon2.c 26DEPEND[argon2]=../../libcrypto 27