1 1.1 christos # 2 1.1 christos # To run the demos when linked with a shared library (default): 3 1.1 christos # 4 1.1 christos # LD_LIBRARY_PATH=../.. ./EVP_MD_demo 5 1.1 christos 6 1.1 christos CFLAGS = -I../../include -g -Wall 7 1.1 christos LDFLAGS = -L../.. 8 1.1 christos LDLIBS = -lcrypto 9 1.1 christos 10 1.1 christos all: EVP_MD_demo EVP_MD_stdin EVP_MD_xof BIO_f_md 11 1.1 christos 12 1.1 christos %.o: %.c 13 1.1 christos $(CC) $(CFLAGS) -c $< 14 1.1 christos 15 1.1 christos EVP_MD_demo: EVP_MD_demo.o 16 1.1 christos EVP_MD_stdin: EVP_MD_stdin.o 17 1.1 christos EVP_MD_xof: EVP_MD_xof.o 18 1.1 christos BIO_f_md: BIO_f_md.o 19 1.1 christos 20 1.1 christos test: ; 21 1.1 christos 22 1.1 christos clean: 23 1.1 christos $(RM) *.o EVP_MD_demo EVP_MD_stdin EVP_MD_xof BIO_f_md 24