Changes between 0.9.2b and 0.9.3
+ *) Install various scripts to $(OPENSSLDIR)/misc, not to
+ $(INSTALLTOP)/bin -- they shouldn't clutter directories
+ such as /usr/local/bin.
+ [Bodo Moeller]
+
*) "make linux-shared" to build shared libraries.
- [Niels Poppe <niels@netbox.org>]
+ [Niels Poppe <niels@netbox.org>]
*) New Configure option no-<cipher> (rsa, idea, rc5, ...).
[Ulf Möller]
@-mkdir -p $(INSTALLTOP)/bin 2>/dev/null
@-mkdir -p $(INSTALLTOP)/lib 2>/dev/null
@-mkdir -p $(INSTALLTOP)/include/openssl 2>/dev/null
+ @-mkdir -p $(OPENSSLDIR)/misc 2>/dev/null
@-mkdir -p $(OPENSSLDIR)/certs 2>/dev/null
@-mkdir -p $(OPENSSLDIR)/private 2>/dev/null
@-mkdir -p $(OPENSSLDIR)/lib 2>/dev/null
$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
install:
- @for i in $(EXE) $(SCRIPTS); \
+ @for i in $(EXE); \
do \
(echo installing $$i; \
cp $$i $(INSTALLTOP)/bin/$$i; \
chmod 755 $(INSTALLTOP)/bin/$$i ); \
done; \
+ @for i in $(SCRIPTS); \
+ do \
+ (echo installing $$i; \
+ cp $$i $(OPENSSLDIR)/misc/$$i; \
+ chmod 755 $(INSTALLTOP)/misc/$$i ); \
+ done; \
cp openssl.cnf $(OPENSSLDIR)/lib; \
chmod 644 $(OPENSSLDIR)/lib/openssl.cnf
GENERAL=Makefile.ssl
TEST=
-APPS= c_hash c_info c_issuer c_name c_rehash
+APPS= c_rehash
+MISC_APPS= c_hash c_info c_issuer c_name
all:
do \
(cp $$i $(INSTALLTOP)/bin/$$i; \
chmod 755 $(INSTALLTOP)/bin/$$i ); \
+ @for i in $(MISC_APPS) ; \
+ do \
+ (cp $$i $(OPENSSLTOP)/misc/$$i; \
+ chmod 755 $(OPENSSLTOP)/misc/$$i ); \
done;
files: