Last change
on this file since 94320 was 94320, checked in by vboxsync, 3 years ago |
libs/openssl-3.0.1: Export to OSE and fix copyright headers in Makefiles, bugref:10128
|
File size:
387 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
|
---|
7 | LDFLAGS = -L../..
|
---|
8 | LDLIBS = -lcrypto
|
---|
9 |
|
---|
10 | all: EVP_MD_demo EVP_MD_stdin 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 | BIO_f_md: BIO_f_md.o
|
---|
18 |
|
---|
19 | test: ;
|
---|
20 |
|
---|
21 | clean:
|
---|
22 | $(RM) *.o EVP_MD_demo EVP_MD_stdin BIO_f_md
|
---|
Note:
See
TracBrowser
for help on using the repository browser.