summaryrefslogtreecommitdiffstats
path: root/demos/digest/Makefile
blob: 05fb299cc3d62be7cce9a761c2b525a373c6d835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# To run the demos when linked with a shared library (default) ensure
# that libcrypto is on the library path. For example:
#
#    LD_LIBRARY_PATH=../.. ./EVP_MD_demo

TESTS = EVP_MD_demo \
        EVP_MD_stdin \
        EVP_MD_xof \
        BIO_f_md

CFLAGS  = -I../../include -g -Wall
LDFLAGS = -L../..
LDLIBS  = -lcrypto

all: $(TESTS)

EVP_MD_demo: EVP_MD_demo.o
EVP_MD_stdin: EVP_MD_stdin.o
EVP_MD_xof: EVP_MD_xof.o
BIO_f_md: BIO_f_md.o

$(TESTS):
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LDLIBS)

clean:
	$(RM) *.o $(TESTS)

.PHONY: test
# Since some of these tests use stdin, we use the source file as stdin
# when running the tests
test: all
	@echo "\nDigest tests:"
	@set -e; for tst in $(TESTS); do \
		echo "\n"$$tst; \
		cat $$tst.c | ./$$tst; \
	done