diff options
author | Mike Bland <mbland@acm.org> | 2014-06-29 16:00:43 +0200 |
---|---|---|
committer | Geoff Thorpe <geoff@openssl.org> | 2014-11-16 22:45:01 +0100 |
commit | 13d30e27c275f44e4f454b086e62c20f43af19d1 (patch) | |
tree | f8fd1a84f725b19ec836c76bbd61603b759c54b6 /crypto/jpake | |
parent | Remove redundant test targets outside of test/ (diff) | |
download | openssl-13d30e27c275f44e4f454b086e62c20f43af19d1.tar.xz openssl-13d30e27c275f44e4f454b086e62c20f43af19d1.zip |
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 <mbland@acm.org>
Signed-off-by: Geoff Thorpe <geoff@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/jpake')
-rw-r--r-- | crypto/jpake/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
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 |