mirror of
https://github.com/openssl/openssl.git
synced 2024-12-09 05:51:54 +08:00
bebc6c8999
Fixes openssl#14119 Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19141)
28 lines
710 B
Makefile
28 lines
710 B
Makefile
# Quick instruction:
|
|
# To build against an OpenSSL built in the source tree, do this:
|
|
#
|
|
# make OPENSSL_INCS_LOCATION=-I../../include OPENSSL_LIBS_LOCATION=-L../..
|
|
#
|
|
# To run the demos when linked with a shared library (default):
|
|
#
|
|
# LD_LIBRARY_PATH=../.. ./aesccm
|
|
# LD_LIBRARY_PATH=../.. ./aesgcm
|
|
# LD_LIBRARY_PATH=../.. ./aeskeywrap
|
|
# LD_LIBRARY_PATH=../.. ./ariacbc
|
|
|
|
CFLAGS = $(OPENSSL_INCS_LOCATION)
|
|
LDFLAGS = $(OPENSSL_LIBS_LOCATION) -lssl -lcrypto
|
|
|
|
all: aesccm aesgcm aeskeywrap ariacbc
|
|
|
|
aesccm: aesccm.o
|
|
aesgcm: aesgcm.o
|
|
aeskeywrap: aeskeywrap.o
|
|
ariacbc: ariacbc.o
|
|
|
|
aesccm aesgcm aeskeywrap ariacbc:
|
|
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
|
|
|
|
clean:
|
|
$(RM) aesccm aesgcm aeskeywrap ariacbc *.o
|