VirtualBox

source: vbox/trunk/src/libs/openssl-3.0.3/demos/cipher/Makefile@ 96441

Last change on this file since 96441 was 94404, checked in by vboxsync, 3 years ago

libs/openssl: Update to 3.0.2 and switch to it, bugref:10128

File size: 575 bytes
Line 
1# Quick instruction:
2# To build against an OpenSSL built in the source tree, do this:
3#
4# make OPENSSL_INCS_LOCATION=-I../../include OPENSSL_LIBS_LOCATION=-L../..
5#
6# To run the demos when linked with a shared library (default):
7#
8# LD_LIBRARY_PATH=../.. ./aesccm
9# LD_LIBRARY_PATH=../.. ./aesgcm
10
11CFLAGS = $(OPENSSL_INCS_LOCATION)
12LDFLAGS = $(OPENSSL_LIBS_LOCATION) -lssl -lcrypto
13
14all: aesccm aesgcm ariacbc
15
16aesccm: aesccm.o
17aesgcm: aesgcm.o
18ariacbc: ariacbc.o
19
20aesccm aesgcm ariacbc:
21 $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
22
23clean:
24 $(RM) aesccm aesgcm ariacbc *.o
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette