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