xref: /openssl/demos/mac/build.info (revision 2000281d)
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
7PROGRAMS{noinst} = gmac \
8                   hmac-sha512 \
9                   cmac-aes256 \
10                   poly1305
11
12INCLUDE[gmac]=../../include
13SOURCE[gmac]=gmac.c
14DEPEND[gmac]=../../libcrypto
15
16INCLUDE[hmac-sha512]=../../include
17SOURCE[hmac-sha512]=hmac-sha512.c
18DEPEND[hmac-sha512]=../../libcrypto
19
20INCLUDE[cmac-aes256]=../../include
21SOURCE[cmac-aes256]=cmac-aes256.c
22DEPEND[cmac-aes256]=../../libcrypto
23
24INCLUDE[poly1305]=../../include
25SOURCE[poly1305]=poly1305.c
26DEPEND[poly1305]=../../libcrypto
27