Last change
on this file since 101665 was 101211, checked in by vboxsync, 14 months ago |
openssl-3.1.3: Applied and adjusted our OpenSSL changes to 3.1.2. bugref:10527
|
File size:
440 bytes
|
Line | |
---|
1 | #
|
---|
2 | # To run the demos when linked with a shared library (default):
|
---|
3 | #
|
---|
4 | # LD_LIBRARY_PATH=../.. ./EVP_MD_demo
|
---|
5 |
|
---|
6 | CFLAGS = -I../../include -g -Wall
|
---|
7 | LDFLAGS = -L../..
|
---|
8 | LDLIBS = -lcrypto
|
---|
9 |
|
---|
10 | all: EVP_MD_demo EVP_MD_stdin EVP_MD_xof BIO_f_md
|
---|
11 |
|
---|
12 | %.o: %.c
|
---|
13 | $(CC) $(CFLAGS) -c $<
|
---|
14 |
|
---|
15 | EVP_MD_demo: EVP_MD_demo.o
|
---|
16 | EVP_MD_stdin: EVP_MD_stdin.o
|
---|
17 | EVP_MD_xof: EVP_MD_xof.o
|
---|
18 | BIO_f_md: BIO_f_md.o
|
---|
19 |
|
---|
20 | test: ;
|
---|
21 |
|
---|
22 | clean:
|
---|
23 | $(RM) *.o EVP_MD_demo EVP_MD_stdin EVP_MD_xof BIO_f_md
|
---|
Note:
See
TracBrowser
for help on using the repository browser.