aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-01-11 22:35:21 +0000
committerUlf Möller <ulf@openssl.org>2000-01-11 22:35:21 +0000
commit2186cd8ef1c4db86109af7a38182c2bd9ddbbb32 (patch)
tree407efa98f1a4fe9b118651f06c57e85d6d0139e5 /Makefile.org
parentde73e397f86c578ee514816ca1a312689a89686f (diff)
downloadopenssl-2186cd8ef1c4db86109af7a38182c2bd9ddbbb32.tar.gz
Document the RSA library.
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org10
1 files changed, 2 insertions, 8 deletions
diff --git a/Makefile.org b/Makefile.org
index 47fadd2f23..e4729ca164 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -354,14 +354,8 @@ install: all
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
done
@echo installing man 1
- @for i in doc/man/*.pod ; \
- do pod2man --section=1 --date=`date +%Y-%m-%d` --center=OpenSSL \
- --release=$(VERSION) $$i > $(INSTALL_PREFIX)$(INSTALLTOP)/man/man1/`basename $$i .pod`.1; \
- done
+ @for i in doc/man/*.pod; do (cd `dirname $$i`; pod2man --section=1 --date=`date +%Y-%m-%d` --center=OpenSSL --release=$(VERSION) `basename $$i` > $(INSTALL_PREFIX)$(INSTALLTOP)/man/man1/`basename $$i .pod`.1); done
@echo installing man 3
- @for i in doc/crypto.pod doc/ssl.pod ; \
- do pod2man --section=3 --date=`date +%Y-%m-%d` --center=OpenSSL \
- --release=$(VERSION) $$i > $(INSTALL_PREFIX)$(INSTALLTOP)/man/man3/`basename $$i .pod`.3; \
- done
+ @for i in doc/crypto/*.pod doc/ssl.pod; do (cd `dirname $$i`; pod2man --section=3 --date=`date +%Y-%m-%d` --center=OpenSSL --release=$(VERSION) `basename $$i` > $(INSTALL_PREFIX)$(INSTALLTOP)/man/man3/`basename $$i .pod`.3); done
# DO NOT DELETE THIS LINE -- make depend depends on it.