From: Mike Bland Date: Sun, 29 Jun 2014 14:00:43 +0000 (-0400) Subject: Add missing SRC variable X-Git-Tag: master-post-reformat~298 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=13d30e27c275f44e4f454b086e62c20f43af19d1 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 --- 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