aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-01-27 20:34:03 +0000
committerRichard Levitte <levitte@openssl.org>2000-01-27 20:34:03 +0000
commit3ac60a612ebc7ed5c5c9b1c5a859ad8d294cd011 (patch)
treef9835ff9ff90e1f29382a24c023a7bdae997a34f /Makefile.org
parent294b3c1a9c7637d413fe58014cd404856a34621e (diff)
downloadopenssl-3ac60a612ebc7ed5c5c9b1c5a859ad8d294cd011.tar.gz
Use the pod2man that comes with OpenSSL. Make it so config(5) really
ends up in section 5.
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.org b/Makefile.org
index 748b01d833..0f370d2ea5 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -335,7 +335,8 @@ install: all
$(INSTALL_PREFIX)$(OPENSSLDIR)/private \
$(INSTALL_PREFIX)$(OPENSSLDIR)/lib \
$(INSTALL_PREFIX)$(OPENSSLDIR)/man/man1 \
- $(INSTALL_PREFIX)$(OPENSSLDIR)/man/man3
+ $(INSTALL_PREFIX)$(OPENSSLDIR)/man/man3 \
+ $(INSTALL_PREFIX)$(OPENSSLDIR)/man/man5
@for i in $(EXHEADER) ;\
do \
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
@@ -354,8 +355,8 @@ install: all
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
done
@echo installing man 1
- @for i in doc/apps/*.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
+ @for i in doc/apps/*.pod; do (cd `dirname $$i`; fn=`basename $$i .pod`; sec=`[ "$$fn" = "config" ] && echo 5 || echo 1`; ../../util/pod2man.pl --section=$$sec --date=`date +%Y-%m-%d` --center=OpenSSL --release=$(VERSION) `basename $$i` > $(INSTALL_PREFIX)$(INSTALLTOP)/man/man$$sec/`basename $$i .pod`.$$sec); done
@echo installing man 3
- @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
+ @for i in doc/crypto/*.pod doc/ssl/*.pod; do (cd `dirname $$i`; ../../util/pod2man.pl --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.