[openssl-commits] [openssl] master update
Paul I. Dale
pauli at openssl.org
Mon Sep 3 22:07:45 UTC 2018
The branch master has been updated
via bdd58bd249f1b6d4c7ccdd9c54fd33db874e0084 (commit)
from fc196a5eb97dc3a5465c37a6761428ddd81b023d (commit)
- Log -----------------------------------------------------------------
commit bdd58bd249f1b6d4c7ccdd9c54fd33db874e0084
Author: Paulo Flabiano Smorigo <pfsmorigo at linux.vnet.ibm.com>
Date: Wed Aug 29 11:00:44 2018 -0300
demos/evp: add make clean
Add make clean for evp demos and remove whitespace from a line.
CLA: trivial
Reviewed-by: Richard Levitte <levitte at openssl.org>
Reviewed-by: Paul Dale <paul.dale at oracle.com>
(Merged from https://github.com/openssl/openssl/pull/7072)
-----------------------------------------------------------------------
Summary of changes:
demos/evp/Makefile | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/demos/evp/Makefile b/demos/evp/Makefile
index 3a85b22..c2e10a1 100644
--- a/demos/evp/Makefile
+++ b/demos/evp/Makefile
@@ -11,10 +11,13 @@
CFLAGS = $(OPENSSL_INCS_LOCATION)
LDFLAGS = $(OPENSSL_LIBS_LOCATION) -lssl -lcrypto
-all: aesccm aesgcm
+all: aesccm aesgcm
aesccm: aesccm.o
aesgcm: aesgcm.o
aesccm aesgcm:
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
+
+clean:
+ $(RM) aesccm aesgcm *.o
More information about the openssl-commits
mailing list