From 13d30e27c275f44e4f454b086e62c20f43af19d1 Mon Sep 17 00:00:00 2001 From: Mike Bland Date: Sun, 29 Jun 2014 10:00:43 -0400 Subject: [PATCH] Add missing SRC variable This is the only Makefile without SRC defined. This change enables a standard Makefile include directive to cover crypto/jpake/*.d files. This was automatically applied by AddSrcVarIfNeeded() in: https://code.google.com/p/mike-bland/source/browse/openssl/update_makefiles.py Change-Id: I030204a1bc873b5de5b06c8ddc0b94bb224c6650 Signed-off-by: Mike Bland Signed-off-by: Geoff Thorpe Reviewed-by: Richard Levitte --- crypto/jpake/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/jpake/Makefile b/crypto/jpake/Makefile index 62791ed9ca..7eab6c1d27 100644 --- a/crypto/jpake/Makefile +++ b/crypto/jpake/Makefile @@ -6,6 +6,7 @@ CFLAGS= $(INCLUDES) $(CFLAG) LIB=$(TOP)/libcrypto.a LIBOBJ=jpake.o jpake_err.o LIBSRC=jpake.c jpake_err.c +SRC= $(LIBSRC) EXHEADER=jpake.h TEST=jpaketest.c -- 2.40.0