diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2008-10-31 13:06:25 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2008-10-31 13:06:25 +0100 |
commit | 91173829db3f10a5237ea28ed9e1c0c1f69cb05b (patch) | |
tree | bd99e4aa6bc079e45881fb0cb5e1e12cec0d13a9 /crypto/jpake | |
parent | Fix warning. (diff) | |
download | openssl-91173829db3f10a5237ea28ed9e1c0c1f69cb05b.tar.xz openssl-91173829db3f10a5237ea28ed9e1c0c1f69cb05b.zip |
Add install target to crypto/jpake/Makefile
Diffstat (limited to 'crypto/jpake')
-rw-r--r-- | crypto/jpake/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crypto/jpake/Makefile b/crypto/jpake/Makefile index ffc519895d..110c49ce0b 100644 --- a/crypto/jpake/Makefile +++ b/crypto/jpake/Makefile @@ -24,6 +24,14 @@ links: @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) +install: + @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... + @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ + do \ + (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ + chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ + done; + depend: @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |