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