From bdd58bd249f1b6d4c7ccdd9c54fd33db874e0084 Mon Sep 17 00:00:00 2001 From: Paulo Flabiano Smorigo Date: Wed, 29 Aug 2018 11:00:44 -0300 Subject: [PATCH] demos/evp: add make clean Add make clean for evp demos and remove whitespace from a line. CLA: trivial Reviewed-by: Richard Levitte Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/7072) --- demos/evp/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/demos/evp/Makefile b/demos/evp/Makefile index 3a85b223a8..c2e10a1ded 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 -- 2.25.1