10SN/A#
2157SN/A# To run the demos when linked with a shared library (default):
30SN/A#
40SN/A#    LD_LIBRARY_PATH=../.. ./EVP_MD_demo
50SN/A
60SN/ACFLAGS = -I../../include -g -Wall
7157SN/ALDFLAGS = -L../..
80SN/ALDLIBS = -lcrypto
9157SN/A
100SN/Aall: EVP_MD_demo EVP_MD_stdin EVP_MD_xof BIO_f_md
110SN/A
120SN/A%.o: %.c
130SN/A	$(CC) $(CFLAGS) -c $<
140SN/A
150SN/AEVP_MD_demo: EVP_MD_demo.o
160SN/AEVP_MD_stdin: EVP_MD_stdin.o
170SN/AEVP_MD_xof: EVP_MD_xof.o
180SN/ABIO_f_md: BIO_f_md.o
190SN/A
200SN/Atest: ;
21157SN/A
22157SN/Aclean:
23157SN/A	$(RM) *.o EVP_MD_demo EVP_MD_stdin EVP_MD_xof BIO_f_md
240SN/A